(url, source)
| 84 | } |
| 85 | |
| 86 | update(url, source) { |
| 87 | this.url = url; |
| 88 | this.name = Script.getShortestUniqueName(url, this); |
| 89 | this.source = source; |
| 90 | } |
| 91 | |
| 92 | get length() { |
| 93 | return this.source.length; |
nothing calls this directly
no test coverage detected