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

18 lines
623 B
Plaintext
Raw Normal View History

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