| 2712 | bool Value::isArray() const { return type_ == arrayValue; } |
| 2713 | |
| 2714 | bool Value::isObject() const { return type_ == objectValue; } |
| 2715 | |
| 2716 | void Value::setComment(const char* comment, CommentPlacement placement) { |
| 2717 | if (!comments_) |
no outgoing calls
no test coverage detected