()
| 25 | } |
| 26 | |
| 27 | deepCopy() { |
| 28 | let out = [] |
| 29 | for (let i = 0; i < this.ranges.length; i++) |
| 30 | out[i] = new Range(copyPos(this.ranges[i].anchor), copyPos(this.ranges[i].head)) |
| 31 | return new Selection(out, this.primIndex) |
| 32 | } |
| 33 | |
| 34 | somethingSelected() { |
| 35 | for (let i = 0; i < this.ranges.length; i++) |
no test coverage detected