TypeScript/tests/baselines/reference/parserErrorRecovery_ArgumentList4.errors.txt
2014-09-11 16:11:08 -07:00

13 lines
404 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList4.ts (4 errors) ====
function foo() {
bar(a,b
~~~
!!! error TS2304: Cannot find name 'bar'.
~
!!! error TS2304: Cannot find name 'a'.
~
!!! error TS2304: Cannot find name 'b'.
return;
~~~~~~
!!! error TS1005: ',' expected.
}