| 449 | throw TypeError("bool literal expected"); |
| 450 | } |
| 451 | inline double |
| 452 | Node::getFloat(void) { |
| 453 | if (FloatLit* a = dynamic_cast<FloatLit*>(this)) |
| 454 | return a->d; |
| 455 | throw TypeError("float literal expected"); |
| 456 | } |
| 457 | inline SetLit* |
| 458 | Node::getSet(void) { |
| 459 | if (SetLit* a = dynamic_cast<SetLit*>(this)) |
no test coverage detected