Answer the second stability pass: the emitter's own refusal, and the comparator's third arm
CI / gate (push) Successful in 5s

This commit is contained in:
2026-09-01 14:34:02 +02:00
parent dcb4d67b6c
commit fba826ed89
7 changed files with 24 additions and 13 deletions
+2 -1
View File
@@ -107,7 +107,8 @@ export function unknownDirectiveFault(name: string): ConvertFault {
}
function keyOrder(left: string, right: string): number {
return left < right ? -1 : 1
if (left < right) return -1
return left > right ? 1 : 0
}
function quote(text: string): string {