-
-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mark eval scopes helper and deopt DCE fn unused params (#371)
* Add mark eval scopes * Fix readme bug as a result of copy-pasting * Add more tests * Use Symbol for EVAL_SCOPE_MARKER * Fix lint
- Loading branch information
Showing
9 changed files
with
279 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# babel-helper-mark-eval-scopes | ||
|
||
Traverse through input path and mark all scopes that contain Direct eval (`eval("")`) calls. | ||
|
||
## Installation | ||
|
||
```sh | ||
npm install babel-helper-mark-eval-scopes | ||
``` |
48 changes: 48 additions & 0 deletions
48
packages/babel-helper-mark-eval-scopes/__tests__/helper-mark-eval-scopes-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
jest.autoMockOff(); | ||
|
||
const babel = require("babel-core"); | ||
const helper = require("../src"); | ||
|
||
function getPath(source) { | ||
let path; | ||
|
||
babel.transform(source, { | ||
babelrc: false, | ||
plugins: [ | ||
function ({traverse}) { | ||
traverse.clearCache(); | ||
return { | ||
visitor: { | ||
Program(programPath) { | ||
path = programPath; | ||
} | ||
} | ||
}; | ||
} | ||
] | ||
}); | ||
|
||
return path; | ||
} | ||
|
||
describe("babel-helper-mark-eval-scopes", () => { | ||
it("getEvalScopes - should give a set of scopes which contains eval", () => { | ||
const source = ` | ||
function foo() { | ||
function bar() { | ||
eval(";"); | ||
} | ||
function baz() { | ||
noeval(); | ||
} | ||
} | ||
`; | ||
|
||
const program = getPath(source); | ||
const evalScopes = [...helper.getEvalScopes(program)]; | ||
|
||
expect(evalScopes).toContain(program.scope); | ||
expect(evalScopes).toContain(program.get("body.0.body.body.0").scope); | ||
expect(evalScopes).not.toContain(program.get("body.0.body.body.1").scope); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "babel-helper-mark-eval-scopes", | ||
"version": "0.0.1", | ||
"description": "Mark scopes for deopt which contain a direct eval call", | ||
"homepage": "https://github.com/babel/babili#readme", | ||
"repository": "https://github.com/babel/babili/tree/master/packages/babel-helper-mark-eval-scopes", | ||
"bugs": "https://github.com/babel/babili/issues", | ||
"author": "boopathi", | ||
"license": "MIT", | ||
"main": "lib/index.js", | ||
"keywords": [ | ||
"babel-plugin", | ||
"babili" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
"use strict"; | ||
|
||
const EVAL_SCOPE_MARKER = Symbol("evalInScope"); | ||
|
||
module.exports = { | ||
EVAL_SCOPE_MARKER, | ||
getEvalScopes, | ||
markEvalScopes, | ||
isMarked, | ||
hasEval, | ||
}; | ||
|
||
function getEvalScopes(path) { | ||
const evalScopes = new Set; | ||
|
||
function add(scope) { | ||
let evalScope = scope; | ||
do { | ||
evalScopes.add(evalScope); | ||
} while (evalScope = evalScope.parent); | ||
} | ||
|
||
path.traverse({ | ||
CallExpression(evalPath) { | ||
const callee = evalPath.get("callee"); | ||
|
||
if (callee.isIdentifier() && callee.node.name === "eval" && !callee.scope.getBinding("eval")) { | ||
add(callee.scope); | ||
} | ||
} | ||
}); | ||
|
||
return evalScopes; | ||
} | ||
|
||
function markEvalScopes(path, key = EVAL_SCOPE_MARKER) { | ||
const evalScopes = getEvalScopes(path); | ||
[...evalScopes].forEach((scope) => { | ||
scope[key] = true; | ||
}); | ||
} | ||
|
||
function isMarked(scope, key = EVAL_SCOPE_MARKER) { | ||
return Object.prototype.hasOwnProperty.call(scope, key); | ||
} | ||
|
||
function hasEval(scope, key = EVAL_SCOPE_MARKER) { | ||
if (!isMarked(scope, key)) { | ||
markEvalScopes(scope, key); | ||
} | ||
return scope[key]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters