diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-18 10:52:06 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-18 10:52:06 +0800 |
commit | 8b2dbb2481abadec1f5d5cb0af888ca2916b252f (patch) | |
tree | 18a8c612b9f1b8b9b10bd64fe3dde2f6a6cee9fa /src/hir/from_ast.hpp | |
parent | 42b9b8616301e331e0a7d4bcfeaafa1b087a8362 (diff) | |
download | mrust-8b2dbb2481abadec1f5d5cb0af888ca2916b252f.tar.gz |
HIR/from_ast - Pattern conversion mostly done, crashes.
Diffstat (limited to 'src/hir/from_ast.hpp')
-rw-r--r-- | src/hir/from_ast.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/from_ast.hpp b/src/hir/from_ast.hpp index 0dde55b0..ef55d3a5 100644 --- a/src/hir/from_ast.hpp +++ b/src/hir/from_ast.hpp @@ -4,6 +4,7 @@ extern ::HIR::ExprPtr LowerHIR_ExprNode(const ::AST::ExprNode& e); extern ::HIR::Path LowerHIR_Path(const ::AST::Path& path); +extern ::HIR::GenericPath LowerHIR_GenericPath(const ::AST::Path& path); extern ::HIR::TypeRef LowerHIR_Type(const ::TypeRef& ty); extern ::HIR::Pattern LowerHIR_Pattern(const ::AST::Pattern& pat); |