We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript Version: 3.4.0 (vs)
Search Terms: Typescript Crash
Code
class Tester { constructor(one, two, three) { console.log(one, two, three); } } interface More implements Tester { } class More implements More { thing = string; } var args = [1,2, 3]; function () { return More.call(this, ...args); console.log("kahdfgag"); }
Expected behavior: One of two outcomes: a syntax error or the code compiles. Actual behavior: tsc.exe returns -1 with no error message. Playground Link: http://www.typescriptlang.org/play/#code/MYGwhgzhAEAqCmEAu8BO0DeAoavrAHsA7ZVAV2CQNQApj4AaaJAdwKaQAtV54BKTDjzDCJAiHgA6EAQDmdIo2ZsO3XnwDcQ3AF8serAEsiKVADMwweNACy1a4YC2ABwmP4JmAmRpB+rFigkDB2PNBOrvDunrb2gsJcxrLQALzQpElaBgBuYOh5sjBpANoAjAwATEwAzAC6WmZkRJSGxNA0AtjCPEhkqESxPJLAYCAgNIkQTJIzBRCa2vjEEOJSMvIARADWYJwAJmayYLIbCzpAA
Related Issues: May possibly be a symptom of this: #33295
The text was updated successfully, but these errors were encountered:
In 3.5 this errors:
a.ts:16:10 - error TS1003: Identifier expected. 16 function () { ~ Found 1 error.
Sorry, something went wrong.
No branches or pull requests
TypeScript Version: 3.4.0 (vs)
Search Terms: Typescript Crash
Code
Expected behavior:
One of two outcomes: a syntax error or the code compiles.
Actual behavior:
tsc.exe returns -1 with no error message.
Playground Link: http://www.typescriptlang.org/play/#code/MYGwhgzhAEAqCmEAu8BO0DeAoavrAHsA7ZVAV2CQNQApj4AaaJAdwKaQAtV54BKTDjzDCJAiHgA6EAQDmdIo2ZsO3XnwDcQ3AF8serAEsiKVADMwweNACy1a4YC2ABwmP4JmAmRpB+rFigkDB2PNBOrvDunrb2gsJcxrLQALzQpElaBgBuYOh5sjBpANoAjAwATEwAzAC6WmZkRJSGxNA0AtjCPEhkqESxPJLAYCAgNIkQTJIzBRCa2vjEEOJSMvIARADWYJwAJmayYLIbCzpAA
Related Issues:
May possibly be a symptom of this: #33295
The text was updated successfully, but these errors were encountered: