(left: GoJSONMatchTerm, right: GoJSONMatchTerm)
| 1388 | } |
| 1389 | |
| 1390 | function compareGoJSONMatchTerms(left: GoJSONMatchTerm, right: GoJSONMatchTerm): number { |
| 1391 | const pathComparison = compareGoJSONPaths(left.path, right.path); |
| 1392 | if (pathComparison !== 0) return pathComparison; |
| 1393 | return left.kind.localeCompare(right.kind); |
| 1394 | } |
| 1395 | |
| 1396 | function goCollectRequiredJSONMatchTerms( |
| 1397 | schema: JSONSchema7, |
nothing calls this directly
no test coverage detected
searching dependent graphs…