Changeset 0019d77
- Timestamp:
 - Aug 6, 2020, 5:08:46 PM (5 years ago)
 - Branches:
 - ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
 - Children:
 - ba662b9
 - Parents:
 - 79c907b (diff), a86b2ca6 (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. - Location:
 - src
 - Files:
 - 
      
- 2 edited
 
- 
          
  AST/Pass.hpp (modified) (2 diffs)
 - 
          
  ResolvExpr/Resolver.cc (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/AST/Pass.hpp
r79c907b r0019d77 8 8 // 9 9 // Author : Thierry Delisle 10 // Created On : Thu May 09 15: :37::05 201910 // Created On : Thu May 09 15:37:05 2019 11 11 // Last Modified By : 12 12 // Last Modified On : … … 84 84 85 85 virtual ~Pass() = default; 86 87 /// Construct and run a pass on a translation unit. 88 template< typename... Args > 89 static void run( std::list< ptr<Decl> > & decls, Args &&... args ) { 90 Pass<pass_t> visitor( std::forward<Args>( args )... ); 91 accept_all( decls, visitor ); 92 } 86 93 87 94 /// Storage for the actual pass  - 
      
src/ResolvExpr/Resolver.cc
r79c907b r0019d77 1270 1270 1271 1271 void resolve( std::list< ast::ptr< ast::Decl > >& translationUnit ) { 1272 ast::Pass< Resolver_new > resolver; 1273 accept_all( translationUnit, resolver ); 1272 ast::Pass< Resolver_new >::run( translationUnit ); 1274 1273 } 1275 1274  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.