| 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); |
| 1032 | } |
| 1033 | |
| 1034 | sonic_force_inline TypeFlag getBasicType() const noexcept { |
| 1035 | return static_cast<TypeFlag>(t.t & kBasicTypeMask); |
nothing calls this directly
no outgoing calls
no test coverage detected