(node *ast.TypeNode)
| 2036 | } |
| 2037 | |
| 2038 | func (p *Printer) emitUnionTypeConstituent(node *ast.TypeNode) { |
| 2039 | p.emitTypeNode(node, ast.TypePrecedenceTypeOperator) |
| 2040 | } |
| 2041 | |
| 2042 | func (p *Printer) emitUnionType(node *ast.UnionTypeNode) { |
| 2043 | state := p.enterNode(node.AsNode()) |
nothing calls this directly
no test coverage detected