Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/GenPoly.h

    re56cfdb0 r843054c2  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Nov 19 17:24:03 2015
    13 // Update Count     : 4
     12// Last Modified On : Tue May 19 07:38:34 2015
     13// Update Count     : 1
    1414//
    1515
     
    2525        typedef std::map< std::string, TypeDecl::Kind > TyVarMap;
    2626
     27        // considerAllTyVars allows ignoring the contents of the TyVarMap parameter, for the situations where
     28        // it is important only that a TypeInstType node exists.
     29
    2730        bool needsAdapter( FunctionType *adaptee, const TyVarMap &tyVarr );
    28         bool isPolyRet( FunctionType *function, std::string &name, const TyVarMap &otherTyVars );
    29         bool isPolyRet( FunctionType *function, std::string &name );
    30         bool isPolyRet( FunctionType *function, const TyVarMap &otherTyVars );
    31 //      bool isPolyFun( FunctionType *fun, const TyVarMap &tyVars );
     31        bool needsAdapter( FunctionType *adaptee, const TyVarMap &tyVars, bool considerAllTyVars );
     32        bool isPolyFun( FunctionType *fun, const TyVarMap &tyVars );
    3233        bool isPolyVal( Type *type, const TyVarMap &tyVars );
     34        bool isPolyVal( Type *type, const TyVarMap &tyVars, bool considerAllTyVars );
    3335        void printTyVarMap( std::ostream &os, const TyVarMap &tyVarMap );
    3436} // namespace GenPoly
Note: See TracChangeset for help on using the changeset viewer.