| 225 | } |
| 226 | |
| 227 | sonic_force_inline bool StartArray() { |
| 228 | new (stack_.PushSize<NodeType>(1)) NodeType(kArray); |
| 229 | return true; |
| 230 | } |
| 231 | |
| 232 | sonic_force_inline bool StartObject() { |
| 233 | new (stack_.PushSize<NodeType>(1)) NodeType(kObject); |
nothing calls this directly
no outgoing calls
no test coverage detected