| 27 | } |
| 28 | |
| 29 | void OperationStack::poppush(RYWMutation entry) { |
| 30 | if (hasVector()) { |
| 31 | optionalOperations.get().pop_back(); |
| 32 | optionalOperations.get().push_back(entry); |
| 33 | } else |
| 34 | singletonOperation = entry; |
| 35 | } |
| 36 | |
| 37 | void OperationStack::push(RYWMutation entry) { |
| 38 | if (defaultConstructed) { |
no test coverage detected