| 3 | import { RendererOptions } from "../dist"; |
| 4 | |
| 5 | export interface Language { |
| 6 | name: string; |
| 7 | base: string; |
| 8 | setupCommand?: string; |
| 9 | compileCommand?: string; |
| 10 | runCommand(sample: string): string; |
| 11 | diffViaSchema: boolean; |
| 12 | allowMissingNull: boolean; |
| 13 | output: string; |
| 14 | topLevel: string; |
| 15 | skipJSON: string[]; |
| 16 | skipSchema: string[]; |
| 17 | rendererOptions: RendererOptions; |
| 18 | quickTestRendererOptions: RendererOptions[]; |
| 19 | } |
| 20 | |
| 21 | export const CSharpLanguage: Language = { |
| 22 | name: "csharp", |