| 1231 | inline const char* operator*() const { return str_; } |
| 1232 | |
| 1233 | inline ~Utf8String() { |
| 1234 | if (str_ != str_st_) { |
| 1235 | free(str_); |
| 1236 | } |
| 1237 | } |
| 1238 | |
| 1239 | private: |
| 1240 | NAN_DISALLOW_ASSIGN_COPY_MOVE(Utf8String) |
nothing calls this directly
no outgoing calls
no test coverage detected