(fn)
| 79 | } |
| 80 | |
| 81 | walk(fn) { |
| 82 | for (const NODES_KEY in NODES_KEYS) { |
| 83 | const nodes = this[NODES_KEY]; |
| 84 | if (nodes) { |
| 85 | for (let i = 0; i < nodes.length; i++) { |
| 86 | nodes[i].walk(fn); |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | fn(this); |
| 91 | } |
| 92 | |
| 93 | createChild(nodeOrProperties) { |
| 94 | const node = |
no test coverage detected