Support for auto-accessor fields from the Stage 3 Decorators proposal (#49705)

* Support for auto-accessor fields

* Add tests, ensure accessors are initialized in ctor

* classFields cleanup and PR feedback
This commit is contained in:
Ron Buckton
2022-09-12 15:12:11 -04:00
committed by GitHub
parent 77374732df
commit a4cabe725b
196 changed files with 7464 additions and 1234 deletions

View File

@@ -46,7 +46,7 @@ module.exports = createRule({
context.report({ messageId: "secondArgumentDebugAssertError", node: message1Node });
}
if (argsLen < 3) {
if (argsLen !== 3) {
return;
}