mollu-lang-web
Version:
26 lines (25 loc) • 636 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.repl = void 0;
var repl = /** @class */ (function () {
function repl() {
}
repl.isRepl = function () {
return this._repl;
};
repl.startRepl = function () {
this.repl_comment = 0;
this.repl_idx = 0;
this.repl_tokenlist = [];
this._repl = true;
};
repl.endRepl = function () {
this._repl = false;
};
repl._repl = false;
repl.repl_tokenlist = [];
repl.repl_idx = 0;
repl.repl_comment = 0;
return repl;
}());
exports.repl = repl;