Changes in src/AST/Pass.impl.hpp [954c954:73f1b1c]
- File:
-
- 1 edited
-
src/AST/Pass.impl.hpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
r954c954 r73f1b1c 154 154 __pedantic_pass_assert( expr ); 155 155 156 const ast::TypeSubstitution ** typeSubs_ptr = __pass::typeSubs( core, 0);157 if ( typeSubs_ptr && expr->env ) {158 * typeSubs_ptr = expr->env;156 const ast::TypeSubstitution ** env_ptr = __pass::env( core, 0); 157 if ( env_ptr && expr->env ) { 158 *env_ptr = expr->env; 159 159 } 160 160 … … 177 177 178 178 // These may be modified by subnode but most be restored once we exit this statemnet. 179 ValueGuardPtr< const ast::TypeSubstitution * > __old_env ( __pass:: typeSubs( core, 0) );179 ValueGuardPtr< const ast::TypeSubstitution * > __old_env ( __pass::env( core, 0) ); 180 180 ValueGuardPtr< typename std::remove_pointer< decltype(stmts_before) >::type > __old_decls_before( stmts_before ); 181 181 ValueGuardPtr< typename std::remove_pointer< decltype(stmts_after ) >::type > __old_decls_after ( stmts_after ); … … 465 465 __pass::symtab::addId( core, 0, func ); 466 466 VISIT( 467 // parameter declarations are now directly here468 maybe_accept( node, &FunctionDecl::params );469 maybe_accept( node, &FunctionDecl::returns );470 // foralls are still in function type471 467 maybe_accept( node, &FunctionDecl::type ); 472 468 // function body needs to have the same scope as parameters - CompoundStmt will not enter … … 1492 1488 1493 1489 // These may be modified by subnode but most be restored once we exit this statemnet. 1494 ValueGuardPtr< const ast::TypeSubstitution * > __old_env( __pass:: typeSubs( core, 0) );1490 ValueGuardPtr< const ast::TypeSubstitution * > __old_env( __pass::env( core, 0) ); 1495 1491 ValueGuardPtr< typename std::remove_pointer< decltype(stmts_before) >::type > __old_decls_before( stmts_before ); 1496 1492 ValueGuardPtr< typename std::remove_pointer< decltype(stmts_after ) >::type > __old_decls_after ( stmts_after );
Note:
See TracChangeset
for help on using the changeset viewer.