| 1653 | // a string is stored. |
| 1654 | |
| 1655 | Value::CZString::CZString(ArrayIndex index) : cstr_(0), index_(index) {} |
| 1656 | |
| 1657 | Value::CZString::CZString(const char* cstr, DuplicationPolicy allocate) |
| 1658 | : cstr_(allocate == duplicate ? duplicateStringValue(cstr) : cstr), |
nothing calls this directly
no test coverage detected