OrGen is a generator that contains multiple child generators, and will print only one at a time. Consuming will cycle to the next child.
| 116 | // OrGen is a generator that contains multiple child generators, and will print only one at a time. Consuming will |
| 117 | // cycle to the next child. |
| 118 | type OrGen struct { |
| 119 | children []StatementGenerator |
| 120 | index int |
| 121 | localInt *big.Int |
| 122 | } |
| 123 | |
| 124 | var _ StatementGenerator = (*OrGen)(nil) |
| 125 |
nothing calls this directly
no outgoing calls
no test coverage detected