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

15 lines
332 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement6.ts (2 errors) ====
class Foo {
f1() {
if (a.b) {
~
!!! Cannot find name 'a'.
}
public f2() {
~~~~~~
!!! Statement expected.
}
f3() {
}
}