Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    r907eccb re994912  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Aug  4 11:24:25 2016
    13 // Update Count     : 21
     12// Last Modified On : Thu Feb  9 14:19:22 2017
     13// Update Count     : 22
    1414//
    1515
     
    7474}
    7575
     76void Visitor::visit( AsmDecl *asmDecl ) {
     77        maybeAccept( asmDecl->get_stmt(), *this );
     78}
     79
     80
    7681void Visitor::visit( CompoundStmt *compoundStmt ) {
    7782        acceptAll( compoundStmt->get_kids(), *this );
     
    148153        maybeAccept( impCtorDtorStmt->get_callStmt(), *this );
    149154}
     155
    150156
    151157void Visitor::visit( ApplicationExpr *applicationExpr ) {
     
    338344        maybeAccept( uniqueExpr->get_expr(), *this );
    339345}
     346
    340347
    341348void Visitor::visit( VoidType *voidType ) {
     
    422429}
    423430
     431
    424432void Visitor::visit( SingleInit *singleInit ) {
    425433        singleInit->get_value()->accept( *this );
     
    437445}
    438446
     447
    439448void Visitor::visit( Subrange *subrange ) {}
     449
    440450
    441451void Visitor::visit( Constant *constant ) {}
Note: See TracChangeset for help on using the changeset viewer.