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