CollectionGen is a generator that contains multiple child generators, and will print all of its children.
| 377 | |
| 378 | // CollectionGen is a generator that contains multiple child generators, and will print all of its children. |
| 379 | type CollectionGen struct { |
| 380 | children []StatementGenerator |
| 381 | localInt *big.Int |
| 382 | } |
| 383 | |
| 384 | var _ StatementGenerator = (*CollectionGen)(nil) |
| 385 |
nothing calls this directly
no outgoing calls
no test coverage detected