Changes in src/SynTree/Visitor.cc [fbcde64:ce8c12f]
- File:
-
- 1 edited
-
src/SynTree/Visitor.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
rfbcde64 rce8c12f 354 354 void Visitor::visit( PointerType *pointerType ) { 355 355 acceptAll( pointerType->get_forall(), *this ); 356 // xxx - should PointerType visit/mutate dimension? 356 357 maybeAccept( pointerType->get_base(), *this ); 357 358 } … … 361 362 maybeAccept( arrayType->get_dimension(), *this ); 362 363 maybeAccept( arrayType->get_base(), *this ); 364 } 365 366 void Visitor::visit( ReferenceType *refType ) { 367 acceptAll( refType->get_forall(), *this ); 368 maybeAccept( refType->get_base(), *this ); 363 369 } 364 370
Note:
See TracChangeset
for help on using the changeset viewer.