| 47 | } |
| 48 | |
| 49 | bool OperationStack::isDependent() const { |
| 50 | if (!size()) |
| 51 | return false; |
| 52 | return singletonOperation.type != MutationRef::SetValue && singletonOperation.type != MutationRef::ClearRange && |
| 53 | singletonOperation.type != MutationRef::SetVersionstampedValue && |
| 54 | singletonOperation.type != MutationRef::SetVersionstampedKey; |
| 55 | } |
| 56 | |
| 57 | bool OperationStack::operator==(const OperationStack& r) const { |
| 58 | if (size() != r.size()) |
no test coverage detected