(childList: Node[])
| 244 | } |
| 245 | |
| 246 | processChildList(childList: Node[]) { |
| 247 | for (let i = 0; i < childList.length; i++) { |
| 248 | if (childList[i].type === "UNDEFINED") { |
| 249 | continue; |
| 250 | } |
| 251 | else if (childList[i].type === "OR") { |
| 252 | this.processOrNode(childList[i]); |
| 253 | } else { |
| 254 | this.childList.push(childList[i]); |
| 255 | } |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | processOrNode(node: Node) { |
| 260 | for (let i = 0; i < node.childList.length; i++) { |
no test coverage detected