| 436 | } |
| 437 | |
| 438 | void cDumpASTVisitor::VisitObjectReference(cASTObjectReference& node) |
| 439 | { |
| 440 | m_depth++; |
| 441 | node.GetObject()->Accept(*this); |
| 442 | m_depth--; |
| 443 | |
| 444 | indent(); |
| 445 | cout << mapToken(AS_TOKEN_DOT) << endl; |
| 446 | |
| 447 | m_depth++; |
| 448 | indent(); |
| 449 | cout << node.GetName() << endl; |
| 450 | m_depth--; |
| 451 | } |
| 452 | |
| 453 | void cDumpASTVisitor::VisitVariableReference(cASTVariableReference& node) |
| 454 | { |