| 276 | |
| 277 | bool is_object() const { return !!object_; } |
| 278 | bool is_array() const { return !!array_; } |
| 279 | bool is_callable() const { return !!callable_; } |
| 280 | bool is_null() const { return !object_ && !array_ && primitive_.is_null() && !callable_; } |
| 281 | bool is_boolean() const { return primitive_.is_boolean(); } |
no outgoing calls
no test coverage detected