| 284 | |
| 285 | |
| 286 | void cDirectInterpretASTVisitor::VisitWhileBlock(cASTWhileBlock& node) |
| 287 | { |
| 288 | node.GetCondition()->Accept(*this); |
| 289 | while (asBool(m_rtype, m_rvalue, node)) { |
| 290 | node.GetCode()->Accept(*this); |
| 291 | node.GetCondition()->Accept(*this); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | |
| 296 |
nothing calls this directly
no test coverage detected