| 131 | sonic_force_inline bool String(StringView s) { return stringImpl(s); } |
| 132 | |
| 133 | sonic_force_inline bool StartObject() noexcept { |
| 134 | SONIC_ADD_NODE(); |
| 135 | NodeType *cur = &st_[np_ - 1]; |
| 136 | cur->o.next.ofs = parent_; |
| 137 | parent_ = np_ - 1; |
| 138 | return true; |
| 139 | } |
| 140 | |
| 141 | sonic_force_inline bool StartArray() noexcept { |
| 142 | SONIC_ADD_NODE(); |
no outgoing calls
no test coverage detected