(flag: boolean)
| 20 | } |
| 21 | |
| 22 | setYResizing(flag: boolean) { |
| 23 | if (flag) { |
| 24 | this.addState('y-resizing'); |
| 25 | } else { |
| 26 | this.removeState('y-resizing'); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | setCopy(flag: boolean) { |
| 31 | if (flag) { |
nothing calls this directly
no test coverage detected