From 3aa77e8cd45c4597867751814bebabb9daad5ae8 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 27 Nov 2016 18:32:57 +0800 Subject: HIR - Move impl parameters from node to the path --- src/hir/path.hpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/hir/path.hpp') diff --git a/src/hir/path.hpp b/src/hir/path.hpp index ae875620..af07e453 100644 --- a/src/hir/path.hpp +++ b/src/hir/path.hpp @@ -1,4 +1,9 @@ /* + * MRustC - Rust Compiler + * - By John Hodge (Mutabah/thePowersGang) + * + * hir/path.hpp + * - Item paths */ #ifndef _HIR_PATH_HPP_ #define _HIR_PATH_HPP_ @@ -175,12 +180,14 @@ public: ::std::unique_ptr type; ::std::string item; PathParams params; + PathParams impl_params; }), (UfcsKnown, struct { ::std::unique_ptr type; GenericPath trait; ::std::string item; PathParams params; + PathParams impl_params; }), (UfcsUnknown, struct { ::std::unique_ptr type; -- cgit v1.2.3