(value: string, nodes: SelectorAstNode[])
| 71 | } |
| 72 | |
| 73 | function fun(value: string, nodes: SelectorAstNode[]): SelectorFunctionNode { |
| 74 | return { |
| 75 | kind: 'function', |
| 76 | value, |
| 77 | nodes, |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | function list(nodes: SelectorAstNode[]): SelectorListNode { |
| 82 | return { |