| 2351 | Value::CommentInfo::CommentInfo() : comment_(0) {} |
| 2352 | |
| 2353 | Value::CommentInfo::~CommentInfo() { |
| 2354 | if (comment_) |
| 2355 | releaseStringValue(comment_); |
| 2356 | } |
| 2357 | |
| 2358 | void Value::CommentInfo::setComment(const char* text, size_t len) { |
| 2359 | if (comment_) { |
nothing calls this directly
no test coverage detected