(left: SchemaAST.Context | undefined, right: SchemaAST.Context | undefined)
| 704 | } |
| 705 | |
| 706 | function sameContext(left: SchemaAST.Context | undefined, right: SchemaAST.Context | undefined) { |
| 707 | return left?.isOptional === right?.isOptional && left?.isMutable === right?.isMutable |
| 708 | } |
| 709 | |
| 710 | export function write( |
| 711 | output: Output, |