UNPKG

yzhanjsinterpreter

Version:

A JavaScript Interpreter Using JS itself. JavaScript 解释器,包含词法分析、语法解析和执行

10 lines 178 B
module.exports = class { constructor(env, func, args) { this.env = env this.func = func this.args = args } run() { this.func.call(this.env, this.args) } }