| 2674 | Value::CommentInfo::CommentInfo() : comment_(0) {} |
| 2675 | |
| 2676 | Value::CommentInfo::~CommentInfo() { |
| 2677 | if (comment_) |
| 2678 | releaseStringValue(comment_, 0u); |
| 2679 | } |
| 2680 | |
| 2681 | void Value::CommentInfo::setComment(const char* text, size_t len) { |
| 2682 | if (comment_) { |
nothing calls this directly
no test coverage detected