Changes in src/ResolvExpr/FindOpenVars.h [85dac33:ea6332d]
- File:
-
- 1 edited
-
src/ResolvExpr/FindOpenVars.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/FindOpenVars.h
r85dac33 rea6332d 16 16 #pragma once 17 17 18 #include "AST/TypeEnvironment.hpp" // for AssertionSet, OpenVarSet19 18 #include "ResolvExpr/TypeEnvironment.h" // for AssertionSet, OpenVarSet 20 19 21 20 class Type; 22 namespace ast {23 class Type;24 }25 21 26 22 namespace ResolvExpr { 27 23 // Updates open and closed variables and their associated assertions 28 void findOpenVars( const Type *type, OpenVarSet &openVars, OpenVarSet &closedVars, AssertionSet &needAssertions, AssertionSet &haveAssertions, bool firstIsOpen ); 29 30 enum FirstMode { FirstClosed, FirstOpen }; 31 32 // Updates open and closed variables and their associated assertions 33 void findOpenVars( 34 const ast::Type * type, ast::OpenVarSet & open, ast::OpenVarSet & closed, 35 ast::AssertionSet & need, ast::AssertionSet & have, FirstMode firstIsOpen ); 24 void findOpenVars( Type *type, OpenVarSet &openVars, OpenVarSet &closedVars, AssertionSet &needAssertions, AssertionSet &haveAssertions, bool firstIsOpen ); 36 25 } // namespace ResolvExpr 37 26
Note:
See TracChangeset
for help on using the changeset viewer.