| 455 | throw TypeError("float literal expected"); |
| 456 | } |
| 457 | inline SetLit* |
| 458 | Node::getSet(void) { |
| 459 | if (SetLit* a = dynamic_cast<SetLit*>(this)) |
| 460 | return a; |
| 461 | throw TypeError("set literal expected"); |
| 462 | } |
| 463 | inline std::string |
| 464 | Node::getString(void) { |
| 465 | if (String* a = dynamic_cast<String*>(this)) |
no test coverage detected