| 230 | } |
| 231 | |
| 232 | sonic_force_inline bool StartObject() { |
| 233 | new (stack_.PushSize<NodeType>(1)) NodeType(kObject); |
| 234 | return true; |
| 235 | } |
| 236 | |
| 237 | sonic_force_inline bool EndArray(size_t count) { |
| 238 | NodeType &arr = *stack_.template Begin<NodeType>(); |
nothing calls this directly
no outgoing calls
no test coverage detected