| 1023 | } |
| 1024 | |
| 1025 | sonic_force_inline void addLength(size_t c) noexcept { |
| 1026 | sonic_assert(IsContainer() || IsString()); |
| 1027 | this->sv.len += (c << kTotalTypeBits); |
| 1028 | } |
| 1029 | sonic_force_inline void subLength(size_t c) noexcept { |
| 1030 | sonic_assert(IsContainer() || IsString()); |
| 1031 | this->sv.len -= (c << kTotalTypeBits); |
nothing calls this directly
no outgoing calls
no test coverage detected