| 66 | } |
| 67 | |
| 68 | void cDumpASTVisitor::VisitObjectAssignment(cASTObjectAssignment& node) |
| 69 | { |
| 70 | m_depth++; |
| 71 | node.GetTarget()->Accept(*this); |
| 72 | m_depth--; |
| 73 | |
| 74 | indent(); |
| 75 | cout << "=" << endl; |
| 76 | |
| 77 | m_depth++; |
| 78 | node.GetExpression()->Accept(*this); |
| 79 | m_depth--; |
| 80 | } |
| 81 | |
| 82 | void cDumpASTVisitor::VisitReturnStatement(cASTReturnStatement& node) |
| 83 | { |
no test coverage detected