| 99 | } |
| 100 | |
| 101 | void encodeTo(Encoder &enc) const { |
| 102 | assert(!isEmpty()); |
| 103 | if (_value) |
| 104 | enc.writeValue(_value); |
| 105 | else |
| 106 | encodeNative(enc, _native); |
| 107 | } |
| 108 | |
| 109 | void mutate() { |
| 110 | assert(_native); |
nothing calls this directly
no test coverage detected