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