(string, lineOffset, columnOffset, url)
| 162 | } |
| 163 | |
| 164 | addScript(string, lineOffset, columnOffset, url) { |
| 165 | utils.compileAndRunWithOrigin(this.id, string, url || '', lineOffset || 0, columnOffset || 0, false); |
| 166 | } |
| 167 | |
| 168 | addInlineScript(string, url) { |
| 169 | const match = (new Error().stack).split('\n')[2].match(/([0-9]+):([0-9]+)/); |
no outgoing calls
no test coverage detected