Changes in src/ResolvExpr/RenameVars.h [c6b4432:94fa946]
- File:
-
- 1 edited
-
src/ResolvExpr/RenameVars.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/RenameVars.h
rc6b4432 r94fa946 16 16 #pragma once 17 17 18 #include <list> // for list 19 #include <map> // for map 20 #include <string> // for string 21 22 #include "SynTree/SynTree.h" // for Visitor Nodes 23 #include "SynTree/Visitor.h" // for Visitor 24 18 25 namespace ast { 19 26 class Type; … … 21 28 22 29 namespace ResolvExpr { 30 /// Provides a consistent renaming of forall type names in a hierarchy by prefixing them with a unique "level" ID 31 void renameTyVars( Type * ); 32 23 33 enum RenameMode { 24 34 GEN_USAGE, // for type in VariableExpr
Note:
See TracChangeset
for help on using the changeset viewer.