| 495 | return (dynamic_cast<FloatLit*>(this) != nullptr); |
| 496 | } |
| 497 | inline bool |
| 498 | Node::isSet(void) { |
| 499 | return (dynamic_cast<SetLit*>(this) != nullptr); |
| 500 | } |
| 501 | inline bool |
| 502 | Node::isString(void) { |
| 503 | return (dynamic_cast<String*>(this) != nullptr); |
no outgoing calls
no test coverage detected