OptionalGen is a generator that will toggle between displaying its children and not displaying its children.
| 534 | |
| 535 | // OptionalGen is a generator that will toggle between displaying its children and not displaying its children. |
| 536 | type OptionalGen struct { |
| 537 | children *CollectionGen |
| 538 | display bool |
| 539 | localInt *big.Int |
| 540 | } |
| 541 | |
| 542 | var _ StatementGenerator = (*OptionalGen)(nil) |
| 543 |
nothing calls this directly
no outgoing calls
no test coverage detected