(node: SyntaxNode)
| 89 | * @returns A list of the value node children of the given node |
| 90 | */ |
| 91 | const getValueNodes = (node: SyntaxNode) => |
| 92 | getChildNodesForFieldName(node, "value"); |
| 93 | |
| 94 | // A function call is a list literal which is not quoted |
| 95 | const functionCallPattern = "~quoting_lit.list_lit!"; |
no test coverage detected