(v)
| 23 | import { projectSchema, checkSchema, checkCompleteness } from './project_bidi_schema.mjs' |
| 24 | |
| 25 | const lit = (v) => ({ Type: 'literal', Value: v, Unwrapped: false }) |
| 26 | const ref = (v) => ({ Type: 'group', Value: v, Unwrapped: false }) |
| 27 | const field = (name, type, occ = { n: 1, m: 1 }) => ({ Name: name, Occurrence: occ, Type: type, Comments: [] }) |
| 28 | const group = (name, props) => ({ Type: 'group', Name: name, Properties: props, IsChoiceAddition: false, Comments: [] }) |
no outgoing calls
no test coverage detected