(accumulator)
| 680 | } |
| 681 | |
| 682 | accumulateNestingLevel(accumulator) { |
| 683 | let value = accumulator[this.nestingLevel] || 0; |
| 684 | accumulator[this.nestingLevel] = value + this.getOwnBytes(); |
| 685 | } |
| 686 | |
| 687 | addNestedFunktion(child) { |
| 688 | if (this.script != child.script) throw "Incompatible script"; |
no test coverage detected