| 14 | type OutputMode = "json" | "ndjson" | "text"; |
| 15 | |
| 16 | interface CompatCase { |
| 17 | category?: string; |
| 18 | description: string; |
| 19 | expect: ExpectedBehavior; |
| 20 | features?: string[]; |
| 21 | package?: string; |
| 22 | path: string; |
| 23 | } |
| 24 | |
| 25 | interface CompatCorpus { |
| 26 | cases: CompatCase[]; |
nothing calls this directly
no outgoing calls
no test coverage detected