Copy implements the interface StatementGenerator.
()
| 471 | |
| 472 | // Copy implements the interface StatementGenerator. |
| 473 | func (c *CollectionGen) Copy() StatementGenerator { |
| 474 | if c == nil { |
| 475 | return nil |
| 476 | } |
| 477 | return Collection(c.children...) |
| 478 | } |
| 479 | |
| 480 | // String implements the interface StatementGenerator. |
| 481 | func (c *CollectionGen) String() string { |
nothing calls this directly
no test coverage detected