(context: InclusionContext, includeChildrenRecursively: IncludeChildren)
| 56 | } |
| 57 | |
| 58 | include(context: InclusionContext, includeChildrenRecursively: IncludeChildren): void { |
| 59 | this.included = true; |
| 60 | for (const node of this.body) { |
| 61 | if (includeChildrenRecursively || node.shouldBeIncluded(context)) { |
| 62 | node.include(context, includeChildrenRecursively); |
| 63 | } |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | initialise() { |
| 68 | super.initialise(); |
nothing calls this directly
no test coverage detected