| 2728 | } |
| 2729 | |
| 2730 | std::string Value::getComment(CommentPlacement placement) const { |
| 2731 | if (hasComment(placement)) |
| 2732 | return comments_[placement].comment_; |
| 2733 | return ""; |
| 2734 | } |
| 2735 | |
| 2736 | void Value::setOffsetStart(size_t start) { start_ = start; } |
| 2737 |
no outgoing calls
no test coverage detected