Ignore:
Timestamp:
Feb 9, 2017, 5:31:49 PM (9 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
132fad4
Parents:
9e45e46 (diff), e994912 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    r9e45e46 ra073d46  
    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.