Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    rdaf1af8 rb3c36f4  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Thu Jun  8 16:31:00 2017
    13 // Update Count     : 25
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Thu Mar 30 16:45:25 2017
     13// Update Count     : 24
    1414//
    1515
     
    129129}
    130130
    131 void Visitor::visit( ThrowStmt * throwStmt ) {
    132         maybeAccept( throwStmt->get_expr(), *this );
    133         maybeAccept( throwStmt->get_target(), *this );
    134 }
    135 
    136131void Visitor::visit( TryStmt *tryStmt ) {
    137132        maybeAccept( tryStmt->get_block(), *this );
     
    324319        maybeAccept( tupleExpr->get_result(), *this );
    325320        maybeAccept( tupleExpr->get_tuple(), *this );
     321}
     322
     323void Visitor::visit( MemberTupleExpr *tupleExpr ) {
     324        maybeAccept( tupleExpr->get_result(), *this );
     325        maybeAccept( tupleExpr->get_member(), *this );
     326        maybeAccept( tupleExpr->get_aggregate(), *this );
    326327}
    327328
Note: See TracChangeset for help on using the changeset viewer.