pushObject adds object builder and transitions state to read object.
()
| 222 | |
| 223 | // pushObject adds object builder and transitions state to read object. |
| 224 | func (p *fastJSONParser) pushObject() { |
| 225 | p.obj = append(p.obj, ObjectBuilder{unordered: p.unordered}) |
| 226 | p.kind = append(p.kind, kindObject) |
| 227 | p.state = (*fastJSONParser).parseObjectKey |
| 228 | } |
| 229 | |
| 230 | // addObjectKey adds key to object builder and transitions state to read object |
| 231 | // value. |
no outgoing calls
no test coverage detected