Changeset 81da3da4 for src/ResolvExpr/CandidatePrinter.cpp
- Timestamp:
- Dec 11, 2023, 4:18:13 AM (22 months ago)
- Branches:
- master
- Children:
- 21ce2c7, 2554f24
- Parents:
- 5ddb8bf (diff), 1c85ffc (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CandidatePrinter.cpp
r5ddb8bf r81da3da4 16 16 #include "CandidatePrinter.hpp" 17 17 18 #include <iostream> 19 18 20 #include "AST/Expr.hpp" 19 21 #include "AST/Pass.hpp" … … 23 25 #include "ResolvExpr/CandidateFinder.hpp" 24 26 #include "ResolvExpr/Resolver.h" 25 26 #include <iostream>27 27 28 28 namespace ResolvExpr { … … 39 39 ast::TypeEnvironment env; 40 40 CandidateFinder finder( { symtab, transUnit().global }, env ); 41 finder.find( stmt->expr, Resolv Mode::withAdjustment() );41 finder.find( stmt->expr, ResolveMode::withAdjustment() ); 42 42 int count = 1; 43 43 os << "There are " << finder.candidates.size() << " candidates\n";
Note:
See TracChangeset
for help on using the changeset viewer.