Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    r89e6ffc r8688ce1  
    287287}
    288288
    289 void Visitor::visit( ConstructorExpr * ctorExpr ) {
    290         acceptAll( ctorExpr->get_results(), *this );
    291         maybeAccept( ctorExpr->get_callExpr(), *this );
     289void Visitor::visit( UntypedValofExpr *valofExpr ) {
     290        acceptAll( valofExpr->get_results(), *this );
     291        maybeAccept( valofExpr->get_body(), *this );
    292292}
    293293
     
    296296        maybeAccept( compLitExpr->get_type(), *this );
    297297        maybeAccept( compLitExpr->get_initializer(), *this );
    298 }
    299 
    300 void Visitor::visit( UntypedValofExpr *valofExpr ) {
    301         acceptAll( valofExpr->get_results(), *this );
    302         maybeAccept( valofExpr->get_body(), *this );
    303298}
    304299
     
    383378}
    384379
    385 void Visitor::visit( ZeroType *zeroType ) {
    386         acceptAll( zeroType->get_forall(), *this );
    387 }
    388 
    389 void Visitor::visit( OneType *oneType ) {
    390         acceptAll( oneType->get_forall(), *this );
    391 }
    392 
    393380void Visitor::visit( SingleInit *singleInit ) {
    394381        singleInit->get_value()->accept( *this );
Note: See TracChangeset for help on using the changeset viewer.