UNPKG

yzhanjsinterpreter

Version:

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

12 lines 232 B
module.exports = class { constructor (object, property) { this.object = object this.property = property } set(val) { this.object.set(this.property, val) } get() { return this.object.get(this.property) } }