TypeScript/tests/baselines/reference/libMembers.errors.txt

22 lines
614 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/libMembers.ts (3 errors) ====
var s="hello";
s.substring(0);
s.substring(3,4);
s.subby(12); // error unresolved
~~~~~
!!! Property 'subby' does not exist on type 'string'.
String.fromCharCode(12);
module M {
export class C {
}
var a=new C[];
~~
!!! 'new T[]' cannot be used to create an array. Use 'new Array<T>()' instead.
a.length;
a.push(new C());
(new C()).prototype;
~~~~~~~~~
!!! Property 'prototype' does not exist on type 'C'.
}