(nodes = target)
| 177 | let peekChar |
| 178 | |
| 179 | function current(nodes = target): SelectorAstNode { |
| 180 | return nodes.length === 1 ? nodes[0] : containsCombinator ? complex(nodes) : compound(nodes) |
| 181 | } |
| 182 | |
| 183 | function append(node: SelectorAstNode) { |
| 184 | let existing = target[target.length - 1] |