TypeScript/tests/baselines/reference/libMembers.errors.txt
Cyrus Najmabadi f1a2e41a8a Sort diagnostics in our baseline output.
This was we don't get noisy baselines just because a different phase of the compiler reported
the diagnostic.

This helps with Yui's refactoring work to move grammar checks into the type checker.
2014-12-16 15:56:56 -08:00

27 lines
1,005 B
Plaintext

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