(url)
| 610 | } |
| 611 | |
| 612 | getScript(url) { |
| 613 | const script = this._profile.getScript(url); |
| 614 | // TODO create placeholder script for empty urls. |
| 615 | if (script === undefined) { |
| 616 | console.error(`Could not find script for url: '${url}'`) |
| 617 | } |
| 618 | return script; |
| 619 | } |
| 620 | |
| 621 | processApiEvent(type, varArgs) { |
| 622 | // legacy events that are no longer supported |
no test coverage detected