aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/nixexpr.cc
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2021-10-22 14:49:58 -0600
committerBen Burdette <bburdette@gmail.com>2021-10-22 14:49:58 -0600
commitfb8377547bcb6d4dc6464ca34c0fe433e1cfda44 (patch)
tree24dd0fb08285536b55b23abba5b60736dcbf404b /src/libexpr/nixexpr.cc
parent71da988d47433543e70cd52dbdd6c907dd3cabda (diff)
more code cleanup
Diffstat (limited to 'src/libexpr/nixexpr.cc')
-rw-r--r--src/libexpr/nixexpr.cc130
1 files changed, 29 insertions, 101 deletions
diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc
index 8f88eabd5..65c7cac1d 100644
--- a/src/libexpr/nixexpr.cc
+++ b/src/libexpr/nixexpr.cc
@@ -273,52 +273,36 @@ void ExprVar::bindVars(const std::shared_ptr<const StaticEnv> &env)
/* Check whether the variable appears in the environment. If so,
set its level and displacement. */
-
- // std::cout << "ExprVar::bindVars " << name << std::endl;
-
- int a = 10;
- if (name == "callPackage") {
- a++; // try to make code that I can put a breakpoint on...
- // std::cout << "meh" << a + 10 << std::endl;
- int withLevel = -1;
- fromWith = true;
- // this->level = withLevel;
+ const StaticEnv * curEnv;
+ unsigned int level;
+ int withLevel = -1;
+ for (curEnv = env.get(), level = 0; curEnv; curEnv = curEnv->up, level++) {
+ if (curEnv->isWith) {
+ if (withLevel == -1) withLevel = level;
+ } else {
+ StaticEnv::Vars::const_iterator i = curEnv->vars.find(name);
+ if (i != curEnv->vars.end()) {
+ fromWith = false;
+ this->level = level;
+ displ = i->second;
+ return;
+ }
+ }
}
+ /* Otherwise, the variable must be obtained from the nearest
+ enclosing `with'. If there is no `with', then we can issue an
+ "undefined variable" error now. */
+ if (withLevel == -1)
{
-
- const StaticEnv * curEnv;
- unsigned int level;
- int withLevel = -1;
- for (curEnv = env.get(), level = 0; curEnv; curEnv = curEnv->up, level++) {
- if (curEnv->isWith) {
- if (withLevel == -1) withLevel = level;
- } else {
- StaticEnv::Vars::const_iterator i = curEnv->vars.find(name);
- if (i != curEnv->vars.end()) {
- fromWith = false;
- this->level = level;
- displ = i->second;
- return;
- }
- }
- }
-
-
- /* Otherwise, the variable must be obtained from the nearest
- enclosing `with'. If there is no `with', then we can issue an
- "undefined variable" error now. */
- if (withLevel == -1)
- {
- // std::cout << " throw UndefinedVarError({" << std::endl;
- throw UndefinedVarError({
- .msg = hintfmt("undefined variable (ExprVar bindvars) '%1%'", name),
- .errPos = pos
- });
- }
- fromWith = true;
- this->level = withLevel;
+ // std::cout << " throw UndefinedVarError({" << std::endl;
+ throw UndefinedVarError({
+ .msg = hintfmt("undefined variable (ExprVar bindvars) '%1%'", name),
+ .errPos = pos
+ });
}
+ fromWith = true;
+ this->level = withLevel;
}
void ExprSelect::bindVars(const std::shared_ptr<const StaticEnv> &env)
@@ -349,18 +333,11 @@ void ExprAttrs::bindVars(const std::shared_ptr<const StaticEnv> &env)
if (debuggerHook)
staticenv = env;
- // std::cout << "ExprAttrs::bindVars" << std::endl;
- // auto dynamicEnv(env);
-
if (recursive) {
- // std::cout << "recursive" << std::endl;
- // dynamicEnv = newEnv.get();
- // also make shared_ptr?
auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(false, env.get()));
unsigned int displ = 0;
for (auto & i : attrs) {
- // std::cout << "newenvvar: " << i.first << std::endl;
newEnv->vars[i.first] = i.second.displ = displ++;
}
@@ -373,7 +350,6 @@ void ExprAttrs::bindVars(const std::shared_ptr<const StaticEnv> &env)
}
}
else {
- // std::cout << "NOT recursive" << std::endl;
for (auto & i : attrs)
i.second.e->bindVars(env);
@@ -382,9 +358,6 @@ void ExprAttrs::bindVars(const std::shared_ptr<const StaticEnv> &env)
i.valueExpr->bindVars(env);
}
}
-
- // std::cout << "ExprAttrs::bindVars end" << std::endl;
-
}
void ExprList::bindVars(const std::shared_ptr<const StaticEnv> &env)
@@ -401,7 +374,7 @@ void ExprLambda::bindVars(const std::shared_ptr<const StaticEnv> &env)
if (debuggerHook)
staticenv = env;
- auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(false, env.get())); // also make shared_ptr?
+ auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(false, env.get()));
unsigned int displ = 0;
@@ -423,7 +396,7 @@ void ExprLet::bindVars(const std::shared_ptr<const StaticEnv> &env)
if (debuggerHook)
staticenv = env;
- auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(false, env.get())); // also make shared_ptr?
+ auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(false, env.get()));
unsigned int displ = 0;
for (auto & i : attrs->attrs)
@@ -440,7 +413,6 @@ void ExprWith::bindVars(const std::shared_ptr<const StaticEnv> &env)
if (debuggerHook)
staticenv = env;
- // std::cout << " ExprWith::bindVars " << std::endl;
/* Does this `with' have an enclosing `with'? If so, record its
level so that `lookupVar' can look up variables in the previous
`with' if this one doesn't contain the desired attribute. */
@@ -453,55 +425,11 @@ void ExprWith::bindVars(const std::shared_ptr<const StaticEnv> &env)
break;
}
- // std::cout << " ExprWith::bindVars 1" << std::endl;
- // attrs->show(std::cout);
- // std::cout << std::endl;
attrs->bindVars(env);
- auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(true, env.get())); // also make shared_ptr?
- // std::cout << " ExprWith::bindVars 2" << std::endl;
- // std::cout << " body: " << std::endl;
- // body->show(std::cout);
- // std::cout << std::endl;
-
- // std::cout << "ExprWith::newenv: (iswith, size); (" << newEnv->isWith << ", " << newEnv->vars.size() << ") " << std::endl;
- // for (auto i = newEnv->vars.begin(); i != newEnv->vars.end(); ++i)
- // std::cout << "EvalState::parse newEnv " << i->first << std::endl;
-
-
- // std::cout << " body->bindVars(newEnv), iswith: " << newEnv->isWith << std::endl;
+ auto newEnv = std::shared_ptr<StaticEnv>(new StaticEnv(true, env.get()));
body->bindVars(newEnv);
- // std::cout << " ExprWith::bindVars 3" << std::endl;
}
-/*
-void ExprWith::bindVars(const StaticEnv & env)
-{
- // Does this `with' have an enclosing `with'? If so, record its
- // level so that `lookupVar' can look up variables in the previous
- // `with' if this one doesn't contain the desired attribute.
- const StaticEnv * curEnv;
- unsigned int level;
- prevWith = 0;
- for (curEnv = &env, level = 1; curEnv; curEnv = curEnv->up, level++)
- if (curEnv->isWith) {
- prevWith = level;
- break;
- }
-
- attrs->bindVars(env);
- std::cout << "ExprWith::bindVars env: " << env.vars.size(); // add std::endl;
- for (auto i = env.vars.begin(); i != env.vars.end(); ++i)
- {
- std::cout << i->first << std::endl;
- }
-
- StaticEnv newEnv(true, &env);
- body->bindVars(newEnv);
-}
-*/
-
-
-
void ExprIf::bindVars(const std::shared_ptr<const StaticEnv> &env)
{
if (debuggerHook)