The logic builder used to accumulate logic on this path node.
()
| 60 | |
| 61 | /** The logic builder used to accumulate logic on this path node. */ |
| 62 | get builder(): LogicNodeBuilder { |
| 63 | if (this.logicBuilder) { |
| 64 | return this.logicBuilder; |
| 65 | } |
| 66 | return this.parent!.builder.getChild(this.keyInParent!); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Gets the path node for the given child property key. |