Skip to content
New issue

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

fix: do not transform ClassPrivateMethods in estree #11973

Merged
merged 2 commits into from Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 17 additions & 17 deletions eslint/babel-eslint-parser/src/convert/convertAST.js
@@ -1,5 +1,5 @@
import { types as t, traverse } from "@babel/core";
import VISITOR_KEYS from "../visitor-keys";
import { newTypes, conflictTypes } from "../visitor-keys";

function convertNodes(ast, code) {
const astTransformVisitor = {
Expand Down Expand Up @@ -81,30 +81,30 @@ function convertNodes(ast, code) {
},
};
const state = { source: code };

const oldExportAllDeclarationKeys = t.VISITOR_KEYS.ExportAllDeclaration;
const oldVisitorKeys = new Map();

try {
// Monkey patch visitor keys in order to be able to traverse the estree nodes
t.VISITOR_KEYS.ChainExpression = VISITOR_KEYS.ChainExpression;
t.VISITOR_KEYS.ImportExpression = VISITOR_KEYS.ImportExpression;
t.VISITOR_KEYS.Property = VISITOR_KEYS.Property;
t.VISITOR_KEYS.MethodDefinition = VISITOR_KEYS.MethodDefinition;
for (const [type, visitorKey] of Object.entries(conflictTypes)) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also refactored a bit to remove boilerplates.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice refactor!

// backup conflicted visitor keys
oldVisitorKeys.set(type, t.VISITOR_KEYS[type]);

// Make sure we visit `exported` key to remove `identifierName` from loc node
t.VISITOR_KEYS.ExportAllDeclaration = t.VISITOR_KEYS.ExportAllDeclaration.concat(
"exported",
);
t.VISITOR_KEYS[type] = visitorKey;
}
for (const [type, visitorKey] of Object.entries(newTypes)) {
t.VISITOR_KEYS[type] = visitorKey;
}

traverse(ast, astTransformVisitor, null, state);
} finally {
// These can be safely deleted because they are not defined in the original visitor keys.
delete t.VISITOR_KEYS.ChainExpression;
delete t.VISITOR_KEYS.ImportExpression;
delete t.VISITOR_KEYS.MethodDefinition;
delete t.VISITOR_KEYS.Property;
for (const type of Object.keys(newTypes)) {
delete t.VISITOR_KEYS[type];
}

t.VISITOR_KEYS.ExportAllDeclaration = oldExportAllDeclarationKeys;
// These should be restored
for (const type of Object.keys(conflictTypes)) {
t.VISITOR_KEYS[type] = oldVisitorKeys.get(type);
}
}
}

Expand Down
33 changes: 18 additions & 15 deletions eslint/babel-eslint-parser/src/visitor-keys.js
@@ -1,19 +1,22 @@
import { types as t } from "@babel/core";
import { KEYS as ESLINT_VISITOR_KEYS } from "eslint-visitor-keys";

/*eslint no-unused-vars: ["error", { "ignoreRestSiblings": true }]*/
const { ExportAllDeclaration, ...BABEL_VISITOR_KEYS } = t.VISITOR_KEYS;
// AST Types that are not presented in Babel AST
export const newTypes = {
ChainExpression: ESLINT_VISITOR_KEYS.ChainExpression,
ImportExpression: ESLINT_VISITOR_KEYS.ImportExpression,
Literal: ESLINT_VISITOR_KEYS.Literal,
MethodDefinition: ["decorators"].concat(ESLINT_VISITOR_KEYS.MethodDefinition),
Property: ["decorators"].concat(ESLINT_VISITOR_KEYS.Property),
};

export default Object.assign(
{
ChainExpression: ESLINT_VISITOR_KEYS.ChainExpression,
ExportAllDeclaration: ESLINT_VISITOR_KEYS.ExportAllDeclaration,
ImportExpression: ESLINT_VISITOR_KEYS.ImportExpression,
Literal: ESLINT_VISITOR_KEYS.Literal,
MethodDefinition: ["decorators"].concat(
ESLINT_VISITOR_KEYS.MethodDefinition,
),
Property: ["decorators"].concat(ESLINT_VISITOR_KEYS.Property),
},
BABEL_VISITOR_KEYS,
);
// AST Types that shares `"type"` property with Babel but have different shape
export const conflictTypes = {
// todo: remove this when class features are supported
ClassPrivateMethod: ["decorators"].concat(
ESLINT_VISITOR_KEYS.MethodDefinition,
),
ExportAllDeclaration: ESLINT_VISITOR_KEYS.ExportAllDeclaration,
};

export default Object.assign(newTypes, t.VISITOR_KEYS, conflictTypes);
36 changes: 36 additions & 0 deletions eslint/babel-eslint-tests/test/integration/eslint/eslint.js
Expand Up @@ -1758,6 +1758,42 @@ describe("verify", () => {
{ "no-unused-vars": 1 },
);
});

it("should visit params", () => {
verifyAndAssertMessages(
`export class C {
constructor() { this.#d(); }
#d(unused) {};
}
`,
{ "no-unused-vars": 1 },
["3:6 'unused' is defined but never used. no-unused-vars"],
);
});

it("should visit body", () => {
verifyAndAssertMessages(
`export class C {
constructor() { this.#d(); }
#d() { var unused; };
}
`,
{ "no-unused-vars": 1 },
["3:14 'unused' is defined but never used. no-unused-vars"],
);
});

it("should work with no-unreachable", () => {
verifyAndAssertMessages(
`class C {
#a() {
return;
}
#b() {} // no-unreachable should not bail here
}`,
{ "no-unreachable": 1 },
);
});
});
});

Expand Down
@@ -0,0 +1,3 @@
class A {
#foo(arg, ...others) {}
}
@@ -0,0 +1,3 @@
{
"plugins": ["flow", "jsx", "estree", "classPrivateMethods"]
}
@@ -0,0 +1,72 @@
{
"type": "File",
"start":0,"end":37,"loc":{"start":{"line":1,"column":0},"end":{"line":3,"column":1}},
"program": {
"type": "Program",
"start":0,"end":37,"loc":{"start":{"line":1,"column":0},"end":{"line":3,"column":1}},
"sourceType": "script",
"interpreter": null,
"body": [
{
"type": "ClassDeclaration",
"start":0,"end":37,"loc":{"start":{"line":1,"column":0},"end":{"line":3,"column":1}},
"id": {
"type": "Identifier",
"start":6,"end":7,"loc":{"start":{"line":1,"column":6},"end":{"line":1,"column":7},"identifierName":"A"},
"name": "A"
},
"superClass": null,
"body": {
"type": "ClassBody",
"start":8,"end":37,"loc":{"start":{"line":1,"column":8},"end":{"line":3,"column":1}},
"body": [
{
"type": "ClassPrivateMethod",
"start":12,"end":35,"loc":{"start":{"line":2,"column":2},"end":{"line":2,"column":25}},
"static": false,
"key": {
"type": "PrivateName",
"start":12,"end":16,"loc":{"start":{"line":2,"column":2},"end":{"line":2,"column":6}},
"id": {
"type": "Identifier",
"start":13,"end":16,"loc":{"start":{"line":2,"column":3},"end":{"line":2,"column":6},"identifierName":"foo"},
"name": "foo"
}
},
"kind": "method",
"value": {
"type": "FunctionExpression",
"start":16,"end":35,"loc":{"start":{"line":2,"column":6},"end":{"line":2,"column":25}},
"id": null,
"generator": false,
"async": false,
"expression": false,
"params": [
{
"type": "Identifier",
"start":17,"end":20,"loc":{"start":{"line":2,"column":7},"end":{"line":2,"column":10},"identifierName":"arg"},
"name": "arg"
},
{
"type": "RestElement",
"start":22,"end":31,"loc":{"start":{"line":2,"column":12},"end":{"line":2,"column":21}},
"argument": {
"type": "Identifier",
"start":25,"end":31,"loc":{"start":{"line":2,"column":15},"end":{"line":2,"column":21},"identifierName":"others"},
"name": "others"
}
}
],
"body": {
"type": "BlockStatement",
"start":33,"end":35,"loc":{"start":{"line":2,"column":23},"end":{"line":2,"column":25}},
"body": []
}
}
}
]
}
}
]
}
}