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

56 lines
3.5 KiB
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(2,5): error TS2304: Cannot find name 'interfaceICompiledExpression'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(2,34): error TS1005: ';' expected.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(3,42): error TS1005: '=>' expected.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,9): error TS2304: Cannot find name 'assign'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,16): error TS2304: Cannot find name 'context'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,23): error TS1005: ',' expected.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,25): error TS2304: Cannot find name 'any'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,30): error TS2304: Cannot find name 'value'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,35): error TS1005: ',' expected.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,37): error TS2304: Cannot find name 'any'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,41): error TS1005: ';' expected.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(4,43): error TS2304: Cannot find name 'any'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(8,23): error TS2304: Cannot find name 'IPromise'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(8,45): error TS2304: Cannot find name 'IPromise'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts(8,54): error TS1005: '>' expected.
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts (15 errors) ====
2014-07-13 01:04:16 +02:00
declare module ng {
interfaceICompiledExpression {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! error TS2304: Cannot find name 'interfaceICompiledExpression'.
~
!!! error TS1005: ';' expected.
2014-07-13 01:04:16 +02:00
(context: any, locals?: any): any;
~
!!! error TS1005: '=>' expected.
2014-07-13 01:04:16 +02:00
assign(context: any, value: any): any;
~~~~~~
!!! error TS2304: Cannot find name 'assign'.
2014-07-13 01:04:16 +02:00
~~~~~~~
!!! error TS2304: Cannot find name 'context'.
~
!!! error TS1005: ',' expected.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2304: Cannot find name 'any'.
2014-07-13 01:04:16 +02:00
~~~~~
!!! error TS2304: Cannot find name 'value'.
~
!!! error TS1005: ',' expected.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2304: Cannot find name 'any'.
~
!!! error TS1005: ';' expected.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2304: Cannot find name 'any'.
2014-07-13 01:04:16 +02:00
}
interface IQService {
all(promises: IPromise < any > []): IPromise<
2015-03-02 21:21:53 +01:00
~~~~~~~~
!!! error TS2304: Cannot find name 'IPromise'.
2015-03-02 21:21:53 +01:00
~~~~~~~~
!!! error TS2304: Cannot find name 'IPromise'.
!!! error TS1005: '>' expected.