| 32 | } |
| 33 | |
| 34 | void BfStructuralVisitor::DoVisitChild(BfAstNode*& node) |
| 35 | { |
| 36 | if (node == NULL) |
| 37 | return; |
| 38 | mCurChildRef = &node; |
| 39 | node->Accept(this); |
| 40 | mCurChildRef = NULL; |
| 41 | } |
| 42 | |
| 43 | void BfStructuralVisitor::AssertValidChildAddr(BfAstNode** nodeRef) |
| 44 | { |