(ast)
| 476 | * @returns {object[]} A new, normalized AST array. |
| 477 | */ |
| 478 | export function normalizeAst(ast) { |
| 479 | let result = dedupeDefs(ast) |
| 480 | result = hoistInlineEnums(result) |
| 481 | result = canonicalizeVariantParams(result) |
| 482 | result = hoistInlineRecords(result) |
| 483 | result = flattenGroupComposition(result) |
| 484 | return result |
| 485 | } |
no test coverage detected