| 1234567891011121314151617181920212223 |
- class Range {
- /**
- * @param {number} pos
- * @param {number} length
- */
- constructor(pos, length) {
- this.pos = pos
- this.length = length
- }
- toRaw() {
- return {
- pos: this.pos,
- length: this.length
- }
- }
- static fromRaw(raw) {
- return new Range(raw.pos, raw.length)
- }
- }
- module.exports = Range
|