| 3789 | bool Value::isArray() const { return type_ == arrayValue; } |
| 3790 | |
| 3791 | bool Value::isObject() const { return type_ == objectValue; } |
| 3792 | |
| 3793 | void Value::setComment(const char* comment, size_t len, CommentPlacement placement) { |
| 3794 | if (!comments_) |
no outgoing calls
no test coverage detected