| 3883 | bool Value::isArray() const { return type_ == arrayValue; } |
| 3884 | |
| 3885 | bool Value::isObject() const { return type_ == objectValue; } |
| 3886 | |
| 3887 | void Value::setComment(const char* comment, size_t len, CommentPlacement placement) { |
| 3888 | if (!comments_) |
no outgoing calls
no test coverage detected