| 431 | throw TypeError("integer variable expected"); |
| 432 | } |
| 433 | inline int |
| 434 | Node::getSetVar(void) { |
| 435 | if (SetVar* a = dynamic_cast<SetVar*>(this)) |
| 436 | return a->i; |
| 437 | throw TypeError("set variable expected"); |
| 438 | } |
| 439 | inline int |
| 440 | Node::getInt(void) { |
| 441 | if (IntLit* a = dynamic_cast<IntLit*>(this)) |
no test coverage detected