| 407 | } |
| 408 | |
| 409 | std::string Transformer::transformUnionType(CypherParser::IC_UnionTypeContext& ctx) { |
| 410 | return std::format("{}({})", ctx.UNION()->getText(), |
| 411 | convertColumnDefinitionsToString(transformColumnDefinitions(*ctx.iC_ColumnDefinitions()))); |
| 412 | } |
| 413 | |
| 414 | std::string Transformer::transformStructType(CypherParser::IC_StructTypeContext& ctx) { |
| 415 | return std::format("{}({})", ctx.STRUCT()->getText(), |
nothing calls this directly
no test coverage detected