| 203 | |
| 204 | |
| 205 | void cSemanticASTVisitor::VisitWhileBlock(cASTWhileBlock& node) |
| 206 | { |
| 207 | node.GetCondition()->Accept(*this); |
| 208 | checkCast(node.GetCondition()->GetType(), TYPEINFO(BOOL)); |
| 209 | node.GetCode()->Accept(*this); |
| 210 | } |
| 211 | |
| 212 | |
| 213 |
nothing calls this directly
no test coverage detected