Changes in src/SynTree/Visitor.cc [be9036d:135b431]
- File:
-
- 1 edited
-
src/SynTree/Visitor.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
rbe9036d r135b431 389 389 void Visitor::visit( PointerType *pointerType ) { 390 390 acceptAll( pointerType->get_forall(), *this ); 391 // xxx - should PointerType visit/mutate dimension?392 391 maybeAccept( pointerType->get_base(), *this ); 393 392 } … … 399 398 } 400 399 401 void Visitor::visit( ReferenceType *refType ) {402 acceptAll( refType->get_forall(), *this );403 maybeAccept( refType->get_base(), *this );404 }405 406 400 void Visitor::visit( FunctionType *functionType ) { 407 401 acceptAll( functionType->get_forall(), *this ); … … 429 423 void Visitor::visit( TraitInstType *aggregateUseType ) { 430 424 handleReferenceToType( static_cast< ReferenceToType * >( aggregateUseType ) ); 425 acceptAll( aggregateUseType->get_members(), *this ); 431 426 } 432 427
Note:
See TracChangeset
for help on using the changeset viewer.