(id)
| 638 | } |
| 639 | |
| 640 | getOrCreateScript(id) { |
| 641 | let script = this.scripts_[id]; |
| 642 | if (script === undefined) { |
| 643 | script = new Script(id); |
| 644 | this.scripts_[id] = script; |
| 645 | } |
| 646 | return script; |
| 647 | } |
| 648 | |
| 649 | getScript(url) { |
| 650 | return this.urlToScript_.get(url); |
no outgoing calls
no test coverage detected