(list)
| 201 | } |
| 202 | |
| 203 | addMissingFunktions(list) { |
| 204 | if (this.finalized) throw 'script is finalized!'; |
| 205 | list.forEach(fn => { |
| 206 | if (this.funktions[fn.start] === undefined) { |
| 207 | this.addFunktion(fn); |
| 208 | } |
| 209 | }); |
| 210 | } |
| 211 | |
| 212 | addFunktion(fn) { |
| 213 | if (this.finalized) throw 'script is finalized!'; |
nothing calls this directly
no test coverage detected