(context: InclusionContext, includeChildrenRecursively: IncludeChildren)
| 83 | } |
| 84 | |
| 85 | include(context: InclusionContext, includeChildrenRecursively: IncludeChildren) { |
| 86 | if (!this.included) this.includeNode(context); |
| 87 | this.getObjectEntity().include(context, includeChildrenRecursively); |
| 88 | this.protoProp?.include(context, includeChildrenRecursively); |
| 89 | } |
| 90 | |
| 91 | includeNode(context: InclusionContext) { |
| 92 | this.included = true; |
nothing calls this directly
no test coverage detected