Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    re994912 r907eccb  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb  9 14:19:22 2017
    13 // Update Count     : 22
     12// Last Modified On : Thu Aug  4 11:24:25 2016
     13// Update Count     : 21
    1414//
    1515
     
    7474}
    7575
    76 void Visitor::visit( AsmDecl *asmDecl ) {
    77         maybeAccept( asmDecl->get_stmt(), *this );
    78 }
    79 
    80 
    8176void Visitor::visit( CompoundStmt *compoundStmt ) {
    8277        acceptAll( compoundStmt->get_kids(), *this );
     
    153148        maybeAccept( impCtorDtorStmt->get_callStmt(), *this );
    154149}
    155 
    156150
    157151void Visitor::visit( ApplicationExpr *applicationExpr ) {
     
    344338        maybeAccept( uniqueExpr->get_expr(), *this );
    345339}
    346 
    347340
    348341void Visitor::visit( VoidType *voidType ) {
     
    429422}
    430423
    431 
    432424void Visitor::visit( SingleInit *singleInit ) {
    433425        singleInit->get_value()->accept( *this );
     
    445437}
    446438
    447 
    448439void Visitor::visit( Subrange *subrange ) {}
    449 
    450440
    451441void Visitor::visit( Constant *constant ) {}
Note: See TracChangeset for help on using the changeset viewer.