(
ch: string,
cursor: CodeMirror.Position,
characterBeforeCursor: string
)
| 95 | } |
| 96 | |
| 97 | anyTextMarkerUpdated( |
| 98 | ch: string, |
| 99 | cursor: CodeMirror.Position, |
| 100 | characterBeforeCursor: string |
| 101 | ): boolean { |
| 102 | return ( |
| 103 | this.currentCompletion?.textMarkers.find((textMarker) => |
| 104 | maybeUpdateTextMarker(textMarker, ch, cursor, characterBeforeCursor) |
| 105 | ) !== undefined |
| 106 | ); |
| 107 | } |
| 108 | |
| 109 | async triggerCompletion( |
| 110 | textModels: CodeMirror.Doc[], |
no test coverage detected