summaryrefslogtreecommitdiff
path: root/src/hir/path.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-05-18 18:03:50 +0800
committerJohn Hodge <tpg@mutabah.net>2016-05-18 18:03:50 +0800
commitc9284d392f89c0108785189ff986efbece5c9b65 (patch)
treee8564765934db89f7765ddd4a9b171489cd3e1b7 /src/hir/path.hpp
parent5e4c623370cfa3df4e73f80f980e06766bfad929 (diff)
downloadmrust-c9284d392f89c0108785189ff986efbece5c9b65.tar.gz
HIR - Generic bounds
Diffstat (limited to 'src/hir/path.hpp')
-rw-r--r--src/hir/path.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/hir/path.hpp b/src/hir/path.hpp
index a003b4ea..584d598b 100644
--- a/src/hir/path.hpp
+++ b/src/hir/path.hpp
@@ -49,6 +49,13 @@ public:
GenericPath(::HIR::SimplePath sp, ::HIR::PathParams params);
};
+class TraitPath
+{
+public:
+ GenericPath m_path;
+ ::std::vector< ::std::string> m_hrls;
+};
+
class Path
{
public: