* Create an instance of this node's class. * * @param props - Properties to pass to the constructor.
(props: NodeProps = {})
| 1268 | * @param props - Properties to pass to the constructor. |
| 1269 | */ |
| 1270 | public instantiate(props: NodeProps = {}): this { |
| 1271 | return new (<NodeConstructor<NodeProps, this>>this.constructor)(props); |
| 1272 | } |
| 1273 | |
| 1274 | /** |
| 1275 | * Set the children without parsing them. |
no outgoing calls
no test coverage detected