| 280 | |
| 281 | |
| 282 | void cDumpASTVisitor::VisitExpressionBinary(cASTExpressionBinary& node) |
| 283 | { |
| 284 | m_depth++; |
| 285 | node.GetLeft()->Accept(*this); |
| 286 | m_depth--; |
| 287 | |
| 288 | indent(); |
| 289 | cout << mapToken(node.GetOperator()); |
| 290 | cout << endl; |
| 291 | |
| 292 | m_depth++; |
| 293 | node.GetRight()->Accept(*this); |
| 294 | m_depth--; |
| 295 | } |
| 296 | |
| 297 | |
| 298 | void cDumpASTVisitor::VisitExpressionUnary(cASTExpressionUnary& node) |
no test coverage detected