(left: string[], right: string[])
| 1384 | } |
| 1385 | |
| 1386 | function compareGoJSONPaths(left: string[], right: string[]): number { |
| 1387 | return goJSONMatchPathKey(left).localeCompare(goJSONMatchPathKey(right)); |
| 1388 | } |
| 1389 | |
| 1390 | function compareGoJSONMatchTerms(left: GoJSONMatchTerm, right: GoJSONMatchTerm): number { |
| 1391 | const pathComparison = compareGoJSONPaths(left.path, right.path); |
no test coverage detected
searching dependent graphs…