Throw a syntax error for a constructor with type parameters#12065
Throw a syntax error for a constructor with type parameters#12065JLHwung merged 3 commits intobabel:mainfrom
Conversation
| withStatementErrors.ts | ||
| withStatementInternalComments.ts | ||
| withStatementNestedScope.ts | ||
| parserConstructorDeclaration12.ts |
There was a problem hiding this comment.
class C {
constructor<>() { }
constructor<> () { }
constructor <>() { }
constructor <> () { }
constructor< >() { }
constructor< > () { }
constructor < >() { }
constructor < > () { }
}There was a problem hiding this comment.
Can you update this line:
Line 3 in bbe0cf0
to update the TS tests?
And then run
make test-typescript-update-allowlist
There was a problem hiding this comment.
I've fixed at 7a02112! But I'm not familiar with how babel-parser tests work, so I'm not sure if it's correct.
There was a problem hiding this comment.
It's correct! Btw, allowlist contain tests that we don't pass and not tests that we are correctly handling.
|
Build successful! You can test your changes in the REPL here: https://babeljs.io/repl/build/28463/ |
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 7a02112:
|
Update allowlist.txt
c7fa9bd to
7a02112
Compare
|
The CI error is not related. I will address it in a separate PR. |
* Install babel/parser 7.12 * Add tests for babel/babel#12161 * Add test for babel/babel#12076 * Add test for babel/babel#12085 * Add test for babel/babel#12108 * Add test for babel/babel#12120 * Add test for babel/babel#12054 * Add test for babel/babel#12061 * Add test babel/babel#12093 * Add test for babel/babel#12065 * Add test for babel/babel#12111 * Add test for babel/babel#12072 * Switch syntax-module-attributes to syntax-import-assertion * Support "String import/export specifier" * Remove tests for module-attributes * Add changelog * Update to 7.12.3 * Fix by linter * Fix by spellchecker * Add tests for module attributes to errors * Add error test for module string name with import * Remove TSTypeCastExpression * Add tests for funny import-assertions * Update snapshots| * Add more tests
Uh oh!
There was an error while loading. Please reload this page.