| 282 | } |
| 283 | |
| 284 | class EXPRESSION extends Node { |
| 285 | constructor(expressionId:number, nodeParam?:NodeParamStruct | undefined) { |
| 286 | super(); |
| 287 | this.expressionId = expressionId; |
| 288 | if (nodeParam) { |
| 289 | this.nodeParam = nodeParam; |
| 290 | } |
| 291 | this.type = "EXPRESSION"; |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | class TRUE extends Node { |
| 296 | constructor() { |
nothing calls this directly
no outgoing calls
no test coverage detected