Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.hpp

    rb2a11ba r490fb92e  
    236236        const ast::Expr * call_accept( const ast::Expr * );
    237237
     238        // requests WithStmtsToAdd directly add to this statement, as if it is a compound.
     239
     240        const ast::Stmt * call_accept_as_compound(const ast::Stmt *);
     241
    238242        template< typename node_t >
    239243        auto call_accept( const node_t * node ) -> typename std::enable_if<
     
    257261        template<typename node_t, typename parent_t, typename child_t>
    258262        void maybe_accept(const node_t * &, child_t parent_t::* child);
     263
     264        template<typename node_t, typename parent_t, typename child_t>
     265        void maybe_accept_as_compound(const node_t * &, child_t parent_t::* child);
    259266
    260267private:
Note: See TracChangeset for help on using the changeset viewer.