| 2624 | Value::CommentInfo::CommentInfo() : comment_(0) {} |
| 2625 | |
| 2626 | Value::CommentInfo::~CommentInfo() { |
| 2627 | if (comment_) |
| 2628 | releaseStringValue(comment_); |
| 2629 | } |
| 2630 | |
| 2631 | void Value::CommentInfo::setComment(const char* text, size_t len) { |
| 2632 | if (comment_) { |
nothing calls this directly
no test coverage detected