| 89 | } |
| 90 | |
| 91 | void mutate() { |
| 92 | assert(_mutable); |
| 93 | if (!_mutated) { |
| 94 | _mutated = true; |
| 95 | if (_slot) |
| 96 | _slot->mutate(); |
| 97 | if (_parent) |
| 98 | _parent->mutate(); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | private: |
| 103 | MCollection(const MCollection&) =delete; |
nothing calls this directly
no outgoing calls
no test coverage detected