Copy returns a copy of the given generator (along with all of its children) in its original setting. This means that the copy is in the same state that the target would be in if it had never called Consume.
()
| 43 | // Copy returns a copy of the given generator (along with all of its children) in its original setting. This means |
| 44 | // that the copy is in the same state that the target would be in if it had never called Consume. |
| 45 | Copy() StatementGenerator |
| 46 | // Reset sets the StatementGenerator back to its original state, which would be as though Consume was never called. |
| 47 | // This is equivalent to calling SetConsumeIterations(0), albeit slightly more efficient. |
| 48 | Reset() |
no outgoing calls
no test coverage detected