TypeScript/tests/baselines/reference/classMemberInitializerWithLamdaScoping4.errors.txt
2014-07-12 17:30:19 -07:00

18 lines
674 B
Plaintext

==== tests/cases/compiler/classMemberInitializerWithLamdaScoping3_0.ts (1 errors) ====
export var field1: string;
~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Cannot compile external modules unless the '--module' flag is provided.
==== tests/cases/compiler/classMemberInitializerWithLamdaScoping3_1.ts (1 errors) ====
declare var console: {
log(msg?: any): void;
};
export class Test1 {
constructor(private field1: string) {
}
messageHandler = () => {
console.log(field1); // Should be error that couldnt find symbol field1
~~~~~~
!!! Cannot find name 'field1'.
};
}