| 3823 | bool Value::isArray() const { return type_ == arrayValue; } |
| 3824 | |
| 3825 | bool Value::isObject() const { return type_ == objectValue; } |
| 3826 | |
| 3827 | void Value::setComment(const char* comment, size_t len, CommentPlacement placement) { |
| 3828 | if (!comments_) |
no outgoing calls
no test coverage detected