TypeScript/tests/baselines/reference/parserErrorRecovery_ArgumentList4.js

12 lines
184 B
TypeScript
Raw Normal View History

//// [parserErrorRecovery_ArgumentList4.ts]
function foo() {
bar(a,b
return;
}
//// [parserErrorRecovery_ArgumentList4.js]
function foo() {
bar(a, b);
return;
}