(start, end)
| 918 | return results; |
| 919 | } |
| 920 | lookupFunktionByRange(start, end) { |
| 921 | let results = this.lookupFunktionsByRange(start, end); |
| 922 | if (results.length != 1) throw "Could not find unique function by range"; |
| 923 | return results[0]; |
| 924 | } |
| 925 | |
| 926 | processScriptEvent(eventName, scriptId, timestamp) { |
| 927 | let script = this.idToScript.get(scriptId); |
no test coverage detected