| 1635 | Value::CommentInfo::CommentInfo() : comment_(0) {} |
| 1636 | |
| 1637 | Value::CommentInfo::~CommentInfo() { |
| 1638 | if (comment_) |
| 1639 | releaseStringValue(comment_); |
| 1640 | } |
| 1641 | |
| 1642 | void Value::CommentInfo::setComment(const char *text) { |
| 1643 | if (comment_) |
nothing calls this directly
no test coverage detected