(childList: Node[])
| 207 | } |
| 208 | |
| 209 | processChildList(childList: Node[]) { |
| 210 | for (let i = 0; i < childList.length; i++) { |
| 211 | if (childList[i].type === "UNDEFINED") { |
| 212 | continue; |
| 213 | } |
| 214 | else if (childList[i].type === "AND") { |
| 215 | this.processAndNode(childList[i]); |
| 216 | } else { |
| 217 | this.childList.push(childList[i]); |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | processAndNode(node: Node) { |
| 223 | for (let i = 0; i < node.childList.length; i++) { |
no test coverage detected