nisp
Version:
A language that for easily build cross-language language
18 lines (17 loc) • 429 B
JavaScript
;
exports.__esModule = true;
var state_1 = require("./state");
var Context = (function () {
function Context() {
this.state = [state_1["default"].start];
this.string = '';
this.backed = true;
this.commitIndent = 0;
this.pushIndent = 0;
this.indent = 0;
this.pos = 0;
this.named = false;
}
return Context;
}());
exports["default"] = Context;