(v)
| 31 | |
| 32 | const lit = (v) => ({ Type: 'literal', Value: v, Unwrapped: false }) |
| 33 | const ref = (v) => ({ Type: 'group', Value: v, Unwrapped: false }) |
| 34 | const field = (name, type, occ = { n: 1, m: 1 }) => ({ Name: name, Occurrence: occ, Type: type, Comments: [] }) |
| 35 | const group = (name, props) => ({ Type: 'group', Name: name, Properties: props, IsChoiceAddition: false, Comments: [] }) |
| 36 | const leaf = (cddlName, method, paramsRef) => |
no outgoing calls
no test coverage detected