| 231 | // a string is stored. |
| 232 | |
| 233 | Value::CZString::CZString(ArrayIndex index) : cstr_(nullptr), index_(index) { |
| 234 | } |
| 235 | |
| 236 | Value::CZString::CZString(char const* str, unsigned length, DuplicationPolicy allocate) : cstr_(str) { |
| 237 | // allocate != duplicate |
nothing calls this directly
no test coverage detected