(pathSupplier: () => jsonc.JSONPath)
| 159 | } |
| 160 | |
| 161 | genPath(pathSupplier: () => jsonc.JSONPath) { |
| 162 | return this.parentMeta.path.length ? [...this.parentMeta.path, ...pathSupplier()] : pathSupplier(); |
| 163 | } |
| 164 | |
| 165 | newNode(path: jsonc.JSONPath, type: NodeType, offset: number, length: number = 0) { |
| 166 | const node: ParseNode = { |
no outgoing calls
no test coverage detected