TypeScript/tests/baselines/reference/scannerClass2.errors.txt
2014-09-12 13:35:07 -07:00

22 lines
1.2 KiB
Plaintext

tests/cases/conformance/scanner/ecmascript5/scannerClass2.ts(3,18): error TS1148: Cannot compile external modules unless the '--module' flag is provided.
tests/cases/conformance/scanner/ecmascript5/scannerClass2.ts(3,43): error TS2304: Cannot find name 'ILogger'.
tests/cases/conformance/scanner/ecmascript5/scannerClass2.ts(4,37): error TS2304: Cannot find name 'ILogger'.
tests/cases/conformance/scanner/ecmascript5/scannerClass2.ts(5,18): error TS2339: Property '_information' does not exist on type 'LoggerAdapter'.
==== tests/cases/conformance/scanner/ecmascript5/scannerClass2.ts (4 errors) ====
export class LoggerAdapter implements ILogger {
~~~~~~~~~~~~~
!!! error TS1148: Cannot compile external modules unless the '--module' flag is provided.
~~~~~~~
!!! error TS2304: Cannot find name 'ILogger'.
constructor (public logger: ILogger) {
~~~~~~~
!!! error TS2304: Cannot find name 'ILogger'.
this._information = this.logger.information();
~~~~~~~~~~~~
!!! error TS2339: Property '_information' does not exist on type 'LoggerAdapter'.
}
}