---- container tracker methods Note: We update the .c after calling the callback. This way, the callback can know what the last status was.
(length int)
| 1414 | // This way, the callback can know what the last status was. |
| 1415 | |
| 1416 | func (e *Encoder) mapStart(length int) { |
| 1417 | e.e.WriteMapStart(length) |
| 1418 | e.c = containerMapStart |
| 1419 | } |
| 1420 | |
| 1421 | func (e *Encoder) mapElemKey() { |
| 1422 | if e.js { |
no test coverage detected