(x: AST.AST, y: AST.AST, path: ReadonlyArray<PropertyKey>)
| 3304 | asts.map((ast) => new AST.Refinement(ast, refinement.filter, preserveRefinementAnnotations(refinement))) |
| 3305 | |
| 3306 | const extendAST = (x: AST.AST, y: AST.AST, path: ReadonlyArray<PropertyKey>): AST.AST => |
| 3307 | AST.Union.make(intersectUnionMembers([x], [y], path)) |
| 3308 | |
| 3309 | const getTypes = (ast: AST.AST): ReadonlyArray<AST.AST> => AST.isUnion(ast) ? ast.types : [ast] |
| 3310 |
no test coverage detected