| 1663 | // a string is stored. |
| 1664 | |
| 1665 | Value::CZString::CZString(ArrayIndex index) : cstr_(0), index_(index) {} |
| 1666 | |
| 1667 | Value::CZString::CZString(const char *cstr, DuplicationPolicy allocate) |
| 1668 | : cstr_(allocate == duplicate ? duplicateStringValue(cstr) : cstr), |
nothing calls this directly
no test coverage detected