(nodes: SelectorAstNode[])
| 64 | } |
| 65 | |
| 66 | function compound(nodes: SelectorAstNode[]): SelectorCompoundNode { |
| 67 | return { |
| 68 | kind: 'compound', |
| 69 | nodes, |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | function fun(value: string, nodes: SelectorAstNode[]): SelectorFunctionNode { |
| 74 | return { |