| 2742 | bool Value::isArray() const { return type_ == arrayValue; } |
| 2743 | |
| 2744 | bool Value::isObject() const { return type_ == objectValue; } |
| 2745 | |
| 2746 | void Value::setComment(const char *comment, CommentPlacement placement) { |
| 2747 | if (!comments_) |
no outgoing calls
no test coverage detected