- File:
-
- 1 edited
-
src/ResolvExpr/CandidateFinder.cpp (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CandidateFinder.cpp
r3e5dd913 re3282fe 212 212 // mark type variable and specialization cost of forall clause 213 213 convCost.incVar( function->forall.size() ); 214 convCost.decSpec( function->assertions.size() ); 214 for ( const ast::TypeDecl * td : function->forall ) { 215 convCost.decSpec( td->assertions.size() ); 216 } 215 217 216 218 return convCost; … … 218 220 219 221 void makeUnifiableVars( 220 const ast:: FunctionType * type, ast::OpenVarSet & unifiableVars,222 const ast::ParameterizedType * type, ast::OpenVarSet & unifiableVars, 221 223 ast::AssertionSet & need 222 224 ) { 223 for ( auto &tyvar : type->forall ) {224 unifiableVars[ *tyvar ] = ast::TypeDecl::Data{ tyvar->base};225 }226 for ( auto & assn : type->assertions ) {227 need[ assn ].isUsed = true;225 for ( const ast::TypeDecl * tyvar : type->forall ) { 226 unifiableVars[ tyvar->name ] = ast::TypeDecl::Data{ tyvar }; 227 for ( const ast::DeclWithType * assn : tyvar->assertions ) { 228 need[ assn ].isUsed = true; 229 } 228 230 } 229 231 } … … 951 953 auto inst = dynamic_cast< const ast::TypeInstType * >( funcResult ) 952 954 ) { 953 if ( const ast::EqvClass * clz = func->env.lookup( *inst) ) {955 if ( const ast::EqvClass * clz = func->env.lookup( inst->name ) ) { 954 956 if ( auto function = clz->bound.as< ast::FunctionType >() ) { 955 957 CandidateRef newFunc{ new Candidate{ *func } }; … … 1075 1077 assert( toType ); 1076 1078 toType = resolveTypeof( toType, symtab ); 1077 //toType = SymTab::validateType( castExpr->location, toType, symtab );1079 toType = SymTab::validateType( castExpr->location, toType, symtab ); 1078 1080 toType = adjustExprType( toType, tenv, symtab ); 1079 1081 … … 1160 1162 1161 1163 if(auto insttype = dynamic_cast<const ast::TypeInstType*>(expr)) { 1162 auto td = cand->env.lookup( *insttype);1164 auto td = cand->env.lookup(insttype->name); 1163 1165 if(!td) { continue; } 1164 1166 expr = td->bound.get(); … … 1566 1568 // calculate target type 1567 1569 const ast::Type * toType = resolveTypeof( initAlt.type, symtab ); 1568 //toType = SymTab::validateType( initExpr->location, toType, symtab );1570 toType = SymTab::validateType( initExpr->location, toType, symtab ); 1569 1571 toType = adjustExprType( toType, tenv, symtab ); 1570 1572 // The call to find must occur inside this loop, otherwise polymorphic return
Note:
See TracChangeset
for help on using the changeset viewer.