(ast)
| 504 | * @returns {object[]} A new, normalized AST array. |
| 505 | */ |
| 506 | export function normalizeAst(ast) { |
| 507 | let result = dedupeDefs(ast) |
| 508 | result = hoistInlineEnums(result) |
| 509 | result = canonicalizeVariantParams(result) |
| 510 | result = hoistInlineRecords(result) |
| 511 | result = flattenGroupComposition(result) |
| 512 | return result |
| 513 | } |
no test coverage detected