| 425 | throw TypeError("bool variable expected"); |
| 426 | } |
| 427 | inline int |
| 428 | Node::getFloatVar(void) { |
| 429 | if (FloatVar* a = dynamic_cast<FloatVar*>(this)) |
| 430 | return a->i; |
| 431 | throw TypeError("integer variable expected"); |
| 432 | } |
| 433 | inline int |
| 434 | Node::getSetVar(void) { |
| 435 | if (SetVar* a = dynamic_cast<SetVar*>(this)) |
no test coverage detected