| 1625 | Value::CommentInfo::CommentInfo() : comment_(0) {} |
| 1626 | |
| 1627 | Value::CommentInfo::~CommentInfo() { |
| 1628 | if (comment_) |
| 1629 | releaseStringValue(comment_); |
| 1630 | } |
| 1631 | |
| 1632 | void Value::CommentInfo::setComment(const char* text) { |
| 1633 | if (comment_) |
nothing calls this directly
no test coverage detected