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

14 lines
303 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement2.ts (2 errors) ====
class Foo {
f1() {
if (a
~
!!! Cannot find name 'a'.
}
~
!!! ')' expected.
f2() {
}
f3() {
}
}