( node: Node, ancestors: Array<QueryNodePath<any>>, parentPropKey: string )
| 11 | const $cancelToken = Symbol("cancel") |
| 12 | |
| 13 | export function createQueryNodePath<Node extends QueryNode<any>>( |
| 14 | node: Node, |
| 15 | ancestors: Array<QueryNodePath<any>>, |
| 16 | parentPropKey: string |
| 17 | ): QueryNodePath<Node> { |
| 18 | return { |
| 19 | ancestors, |
| 20 | node, |
| 21 | parentPropKey, |
| 22 | type: getNodeType(node) |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | export function createQueryNodeSubpath<Node extends QueryNode<any>>( |
| 27 | path: QueryNodePath<QueryNode<any>>, |
no test coverage detected