| 124 | //////////////////////////////////////////////////////////////////////////////// |
| 125 | |
| 126 | enum class DecoderInternalState |
| 127 | { |
| 128 | Start, |
| 129 | |
| 130 | ParseNull, |
| 131 | ParseIntSign, |
| 132 | ParseIntPart, |
| 133 | ParseString, |
| 134 | ParseStringContent |
| 135 | }; |
| 136 | |
| 137 | enum class DictReadState |
| 138 | { |
nothing calls this directly
no outgoing calls
no test coverage detected