- Timestamp:
- Sep 22, 2022, 3:25:28 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- b859f59
- Parents:
- e01eb4a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Unify.cc
re01eb4a r5d8dae7 1036 1036 /// Creates a tuple type based on a list of Type 1037 1037 1038 1039 1038 static bool unifyList( 1040 1039 const std::vector< ast::ptr< ast::Type > > & list1, … … 1174 1173 return env.bindVar( var2, type1, entry2->second, need, have, open, widen, symtab ); 1175 1174 } else { 1176 ast::Pass<Unify_new> comparator{ type2, env, need, have, open, widen, symtab }; 1177 type1->accept( comparator ); 1178 return comparator.core.result; 1175 return ast::Pass<Unify_new>::read( 1176 type1, type2, env, need, have, open, widen, symtab ); 1179 1177 } 1180 1178 }
Note: See TracChangeset
for help on using the changeset viewer.