(node: Node)
| 220 | } |
| 221 | |
| 222 | processAndNode(node: Node) { |
| 223 | for (let i = 0; i < node.childList.length; i++) { |
| 224 | if (node.childList[i].type === "UNDEFINED") { |
| 225 | continue; |
| 226 | } |
| 227 | else if (node.childList[i].type === "AND") { |
| 228 | this.processChildList(node.childList[i].childList); |
| 229 | } else { |
| 230 | this.childList.push(node.childList[i]); |
| 231 | } |
| 232 | } |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | class OR extends Node { |
no test coverage detected