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

30 lines
1.4 KiB
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts(3,9): error TS2304: Cannot find name 'a'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts(5,3): error TS2304: Cannot find name 'f2'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts(5,8): error TS1005: ';' expected.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts(7,3): error TS2304: Cannot find name 'f3'.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts(7,8): error TS1005: ';' expected.
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts(9,2): error TS1005: '}' expected.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts (6 errors) ====
class Foo {
f1() {
if (a.b) {
~
!!! error TS2304: Cannot find name 'a'.
2014-07-13 01:04:16 +02:00
}
f2() {
~~
!!! error TS2304: Cannot find name 'f2'.
2014-07-13 01:04:16 +02:00
~
!!! error TS1005: ';' expected.
}
f3() {
2014-07-13 01:04:16 +02:00
~~
!!! error TS2304: Cannot find name 'f3'.
~
!!! error TS1005: ';' expected.
2014-07-13 01:04:16 +02:00
}
}
!!! error TS1005: '}' expected.