(id, url, source)
| 632 | } |
| 633 | |
| 634 | addScriptSource(id, url, source) { |
| 635 | const script = this.getOrCreateScript(id); |
| 636 | script.update(url, source); |
| 637 | this.urlToScript_.set(url, script); |
| 638 | } |
| 639 | |
| 640 | getOrCreateScript(id) { |
| 641 | let script = this.scripts_[id]; |
no test coverage detected