| 3813 | } |
| 3814 | |
| 3815 | std::string Value::getComment(CommentPlacement placement) const { |
| 3816 | if (hasComment(placement)) |
| 3817 | return comments_[placement].comment_; |
| 3818 | return ""; |
| 3819 | } |
| 3820 | |
| 3821 | void Value::setOffsetStart(size_t start) { start_ = start; } |
| 3822 |
no outgoing calls
no test coverage detected