A JavaScript Interpreter Using JS itself, implement eval
JavaScript 解释器,包含词法分析、语法解析和执行。实现 eval
You could change JavaScript Code and view the result in realtime.
Online Demo
npm i yzhanjsinterpreter
import yzhanJSInterpreter from 'yzhanjsinterpreter'
<script src="https://cdn.jsdelivr.net/npm/yzhanjsinterpreter@latest/docs/yzhanjsinterpreter.min.js"></script>
const code = `let a = 1;
let b = 1;
a <<= b++;
for (let i = 0; i < 10; i++) {
if (i % 2 === 0) continue;
if ((i | 2) == '11') break;
a++;
}
undefined && 1 ?? (0 || a + b);`
eval
is a reserved keyword, so use evaluate
instead
const evalResult = yzhanJSInterpreter.evaluate(code)
evaluate
runs followed 3 steps:
const lexResult = yzhanJSInterpreter.lex(code)
const parseResults = yzhanJSInterpreter.parse(lexResult)
const executeResult = yzhanJSInterpreter.execute(parseResults[0])
const evalResult = executeResult
npm test
npm run build
npm run dev
- Travese AST, using child to replace the parent when there is only one parent Node.
- Treeshaking: earse unseded declarations.