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