Skip to content

Commit f1167de

Browse files
authoredJul 5, 2022
Merge pull request #427 from XmiliaH/skip-transformer
Skip transformer in trivial cases
2 parents e3e573f + 4392f5a commit f1167de

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed
 

‎lib/transformer.js

+4
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ function transformer(args, body, isAsync, isGenerator, filename) {
5151
let argsOffset;
5252
if (args === null) {
5353
code = body;
54+
// Note: Keywords are not allows to contain u escapes
55+
if (!/\b(?:catch|import|async)\b/.test(code)) {
56+
return {__proto__: null, code, hasAsync: false};
57+
}
5458
} else {
5559
code = isAsync ? '(async function' : '(function';
5660
if (isGenerator) code += '*';

‎test/vm.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -663,12 +663,12 @@ describe('VM', () => {
663663

664664
it('internal state attack', () => {
665665
const vm2 = new VM();
666-
assert.throws(() => vm2.run(`${INTERNAL_STATE_NAME}=1;`), /Use of internal vm2 state variable/);
667-
assert.throws(() => vm2.run(`const ${INTERNAL_STATE_NAME} = {};`), /Use of internal vm2 state variable/);
668-
assert.throws(() => vm2.run(`var ${INTERNAL_STATE_NAME} = {};`), /Use of internal vm2 state variable/);
669-
assert.throws(() => vm2.run(`let ${INTERNAL_STATE_NAME} = {};`), /Use of internal vm2 state variable/);
670-
assert.throws(() => vm2.run(`class ${INTERNAL_STATE_NAME} {};`), /Use of internal vm2 state variable/);
671-
assert.throws(() => vm2.run(`function ${INTERNAL_STATE_NAME} () {};`), /Use of internal vm2 state variable/);
666+
assert.throws(() => vm2.run(`${INTERNAL_STATE_NAME}="async";`), /Use of internal vm2 state variable/);
667+
assert.throws(() => vm2.run(`const ${INTERNAL_STATE_NAME} = "async";`), /Use of internal vm2 state variable/);
668+
assert.throws(() => vm2.run(`var ${INTERNAL_STATE_NAME} = "async";`), /Use of internal vm2 state variable/);
669+
assert.throws(() => vm2.run(`let ${INTERNAL_STATE_NAME} = "async";`), /Use of internal vm2 state variable/);
670+
assert.throws(() => vm2.run(`class ${INTERNAL_STATE_NAME} {}; // async`), /Use of internal vm2 state variable/);
671+
assert.throws(() => vm2.run(`function ${INTERNAL_STATE_NAME} () {}; // async`), /Use of internal vm2 state variable/);
672672
});
673673

674674
it('buffer attack', () => {

0 commit comments

Comments
 (0)
Please sign in to comment.