Copy implements the interface StatementGenerator.
()
| 326 | |
| 327 | // Copy implements the interface StatementGenerator. |
| 328 | func (v *VariableGen) Copy() StatementGenerator { |
| 329 | if v == nil { |
| 330 | return nil |
| 331 | } |
| 332 | return Variable(v.name, v.options) |
| 333 | } |
| 334 | |
| 335 | // String implements the interface StatementGenerator. |
| 336 | func (v *VariableGen) String() string { |
nothing calls this directly
no test coverage detected