(path: string[])
| 1360 | } |
| 1361 | |
| 1362 | function goJSONMatchPathKey(path: string[]): string { |
| 1363 | return path.join("\0"); |
| 1364 | } |
| 1365 | |
| 1366 | function goJSONMatchTermKey(term: GoJSONMatchTerm): string { |
| 1367 | const base = `${term.kind}:${goJSONMatchPathKey(term.path)}`; |
no test coverage detected
searching dependent graphs…