| 46 | uint8_t array_type = 0; |
| 47 | |
| 48 | explicit Level(common::StringView nm) : name(nm), state(State::Object), count(0) {} |
| 49 | Level(common::StringView nm, size_t array_size) : name(nm), state(State::ArrayPrefix), count(array_size) {} |
| 50 | }; |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected