(ab: AST, cd: AST)
| 2942 | |
| 2943 | /** @internal */ |
| 2944 | export const compose = (ab: AST, cd: AST): AST => new Transformation(ab, cd, composeTransformation) |
| 2945 | |
| 2946 | /** @internal */ |
| 2947 | export const rename = (ast: AST, mapping: { readonly [K in PropertyKey]?: PropertyKey }): AST => { |
no outgoing calls
no test coverage detected
searching dependent graphs…