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