Ignore:
Timestamp:
Nov 30, 2017, 3:58:26 PM (5 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
aaron-thesis, arm-eh, 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:
a378ca7
Parents:
4429b04
Message:

Add WithStmt? SynTree? node

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/PassVisitor.impl.h

    r4429b04 r61255ad  
    988988// NullStmt
    989989template< typename pass_type >
     990void PassVisitor< pass_type >::visit( WithStmt * node ) {
     991        VISIT_BODY( node );
     992}
     993
     994template< typename pass_type >
     995Statement * PassVisitor< pass_type >::mutate( WithStmt * node ) {
     996        MUTATE_BODY( Statement, node );
     997}
     998
     999//--------------------------------------------------------------------------
     1000// NullStmt
     1001template< typename pass_type >
    9901002void PassVisitor< pass_type >::visit( NullStmt * node ) {
    9911003        VISIT_BODY( node );
Note: See TracChangeset for help on using the changeset viewer.