()
| 109 | } |
| 110 | |
| 111 | function update() { |
| 112 | if (finished) return; |
| 113 | CodeMirror.signal(data, "update"); |
| 114 | retrieveHints(completion.options.hint, completion.cm, completion.options, finishUpdate); |
| 115 | } |
| 116 | function finishUpdate(data_) { |
| 117 | data = data_; |
| 118 | if (finished) return; |
nothing calls this directly
no test coverage detected