diff options
Diffstat (limited to 'src/hir/path.hpp')
-rw-r--r-- | src/hir/path.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hir/path.hpp b/src/hir/path.hpp index 70d48cc0..a003b4ea 100644 --- a/src/hir/path.hpp +++ b/src/hir/path.hpp @@ -46,6 +46,7 @@ public: GenericPath(); GenericPath(::HIR::SimplePath sp); + GenericPath(::HIR::SimplePath sp, ::HIR::PathParams params); }; class Path @@ -60,6 +61,7 @@ public: TypeRefPtr type; GenericPath trait; ::std::string item; + PathParams params; }) ); @@ -68,6 +70,7 @@ private: public: Path(GenericPath _); + Path(TypeRefPtr type, GenericPath trait, ::std::string item, PathParams params); Path(SimplePath _); }; |