@drewsonne/maya-calculator-parser
Version:
Typescript package to parse plaintext calculations and create operators
16 lines • 416 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Line = (function () {
function Line(tokens) {
this.tokens = tokens;
}
Line.prototype.equal = function (other) {
if (other instanceof Line) {
throw new Error('Not Implemented');
}
return false;
};
return Line;
}());
exports.default = Line;
//# sourceMappingURL=line.js.map