ts-fusion-parser
Version:
Parser for Neos Fusion Files
14 lines (13 loc) • 334 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NodePosition = void 0;
class NodePosition {
constructor(begin, end = Infinity) {
this.begin = begin;
this.end = end;
}
toString() {
return `${this.begin}-${this.end}`;
}
}
exports.NodePosition = NodePosition;