diff options
author | Shea Levy <shea@shealevy.com> | 2013-07-15T21·10-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-08-26T09·31+0200 |
commit | afc6c1bad63e27d68adf49e673f8aafd36495a8a (patch) | |
tree | 9cfe21245d123b5d7e525aa2722b1e155d29e736 /src/libexpr/nixexpr.cc | |
parent | 6cd6ce56083d0077485896a761520812d039bf10 (diff) |
Simplify inherited attribute handling
This reduces the difference between inherited and non-inherited attribute handling to the choice of which env to use (in recs and lets) by setting the AttrDef::e to a new ExprVar in the parser rather than carrying a separate AttrDef::v VarRef member. As an added bonus, this allows inherited attributes that inherit from a with to delay forcing evaluation of the with's attributes. Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'src/libexpr/nixexpr.cc')
-rw-r--r-- | src/libexpr/nixexpr.cc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc index 9b75bb644844..72bc0a14bed6 100644 --- a/src/libexpr/nixexpr.cc +++ b/src/libexpr/nixexpr.cc @@ -230,14 +230,12 @@ void ExprAttrs::bindVars(const StaticEnv & env) newEnv.vars[i->first] = i->second.displ = displ++; foreach (AttrDefs::iterator, i, attrs) - if (i->second.inherited) i->second.var.bind(env); - else i->second.e->bindVars(newEnv); + i->second.e->bindVars(i->second.inherited ? env : newEnv); } else foreach (AttrDefs::iterator, i, attrs) - if (i->second.inherited) i->second.var.bind(env); - else i->second.e->bindVars(env); + i->second.e->bindVars(env); } void ExprList::bindVars(const StaticEnv & env) @@ -274,8 +272,7 @@ void ExprLet::bindVars(const StaticEnv & env) newEnv.vars[i->first] = i->second.displ = displ++; foreach (ExprAttrs::AttrDefs::iterator, i, attrs->attrs) - if (i->second.inherited) i->second.var.bind(env); - else i->second.e->bindVars(newEnv); + i->second.e->bindVars(i->second.inherited ? env : newEnv); body->bindVars(newEnv); } |