| 400 | } |
| 401 | |
| 402 | inline Atom* |
| 403 | Node::getAtom(void) { |
| 404 | if (Atom* a = dynamic_cast<Atom*>(this)) |
| 405 | return a; |
| 406 | throw TypeError("atom expected"); |
| 407 | } |
| 408 | |
| 409 | inline std::string |
| 410 | Node::getVarName(void) { |
nothing calls this directly
no test coverage detected