| 117 | Type type() const; |
| 118 | |
| 119 | bool is_null() const { return type() == NUL; } |
| 120 | bool is_number() const { return type() == NUMBER; } |
| 121 | bool is_bool() const { return type() == BOOL; } |
| 122 | bool is_string() const { return type() == STRING; } |
nothing calls this directly
no outgoing calls
no test coverage detected