aboutsummaryrefslogtreecommitdiff
path: root/src/lvm.js
blob: 0ea33423599d6ae5ce0de65c92baf9439de09c4e (plain)
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
};