cbon
Version:
Common Bracket Object Notation
18 lines (17 loc) • 383 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class TkPos {
constructor(count, char, line) {
this.count = count;
this.char = char;
this.line = line;
}
}
exports.TkPos = TkPos;
class TkRange {
constructor(from, to) {
this.from = from;
this.to = to;
}
}
exports.TkRange = TkRange;