diff options
author | John Hodge <tpg@mutabah.net> | 2016-08-22 20:03:11 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-08-22 20:03:11 +0800 |
commit | 2f9acf36cfd475dc48b7a46e4cdff1b284529a79 (patch) | |
tree | 50b25571223d37ad30430d573a6857b846941598 /src/hir/expr.hpp | |
parent | 96621f217b750115c01457d79a74f9676164b463 (diff) | |
download | mrust-2f9acf36cfd475dc48b7a46e4cdff1b284529a79.tar.gz |
AST+HIR - Save decoded receiver type for methods
Diffstat (limited to 'src/hir/expr.hpp')
-rw-r--r-- | src/hir/expr.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/expr.hpp b/src/hir/expr.hpp index 4b385c99..3a7839a8 100644 --- a/src/hir/expr.hpp +++ b/src/hir/expr.hpp @@ -416,6 +416,7 @@ struct ExprCallCache ::std::vector< ::HIR::TypeRef> m_arg_types; const ::HIR::GenericParams* m_fcn_params; const ::HIR::GenericParams* m_top_params; + const ::HIR::Function* m_fcn; ::HIR::PathParams m_ty_impl_params; |