| 361 | } |
| 362 | |
| 363 | inline bool |
| 364 | Node::isInt(int& i) { |
| 365 | if (IntLit* il = dynamic_cast<IntLit*>(this)) { |
| 366 | i = il->i; |
| 367 | return true; |
| 368 | } |
| 369 | return false; |
| 370 | } |
| 371 | |
| 372 | inline bool |
| 373 | Node::isFloat(double& d) { |
no outgoing calls
no test coverage detected