1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*jshint esversion: 6 */ "use strict"; const BytecodeParser = require("./lundump.js"); class LuaVM { constructor(cl) { this.cl = cl } execute() { newframe: for (;;) { } } } module.exports = { LuaVM: LuaVM, OpCodes: OpCodes };