| 2758 | } |
| 2759 | |
| 2760 | std::string Value::getComment(CommentPlacement placement) const { |
| 2761 | if (hasComment(placement)) |
| 2762 | return comments_[placement].comment_; |
| 2763 | return ""; |
| 2764 | } |
| 2765 | |
| 2766 | void Value::setOffsetStart(size_t start) { start_ = start; } |
| 2767 |
no outgoing calls
no test coverage detected