(code, item)
| 198 | data.doEnableDisableBreakpoint(data.path, at); |
| 199 | } |
| 200 | doToggleBreakpoint(code, item) { |
| 201 | let data = this.data; |
| 202 | let location = code.locate(code.selectionOffset); |
| 203 | let at = Math.floor(location.y / code.lineHeight) + 1; |
| 204 | data.doToggleBreakpoint(data.path, at); |
| 205 | } |
| 206 | find(code, findString, findMode) { |
| 207 | code.find(findModeToPattern(findMode, findString), findModeToCaseless(findMode)); |
| 208 | this.onSelected(code); |
no test coverage detected