(code, sign)
| 197 | return (sign < 0) ? code.selectionOffset : code.selectionOffset + code.selectionLength; |
| 198 | } |
| 199 | onCursorCancel(code, sign) { |
| 200 | this.cursorAnchor = null; |
| 201 | this.cursorLocation = null; |
| 202 | this.cursorOffset = null; |
| 203 | } |
| 204 | onCursorX(code, sign) { |
| 205 | var offset = this.onCursorBefore(code, sign); |
| 206 | this.cursorLocation = null; |
no outgoing calls
no test coverage detected