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

22 lines
448 B
Plaintext

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