| 1414 | bool Value::isArray() const { return type_ == arrayValue; } |
| 1415 | |
| 1416 | bool Value::isObject() const { return type_ == objectValue; } |
| 1417 | |
| 1418 | void Value::setComment(const char* comment, size_t len, CommentPlacement placement) { |
| 1419 | if (!comments_) |
no outgoing calls
no test coverage detected