(def)
| 415 | |
| 416 | // A record group carries named fields (no top-level choice branches). |
| 417 | function isRecordGroup(def) { |
| 418 | return def && def.Type === 'group' && Array.isArray(def.Properties) && !def.Properties.some((p) => Array.isArray(p)) |
| 419 | } |
| 420 | |
| 421 | /** |
| 422 | * Inline anonymous group-ref spreads (CDDL group composition, e.g. a params |
no outgoing calls
no test coverage detected