1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

Rename strictForceValue -> forceValueDeep

This commit is contained in:
Eelco Dolstra 2014-09-22 15:03:59 +02:00
parent 022618c794
commit 1e0a799bef
3 changed files with 5 additions and 5 deletions

View file

@ -1181,18 +1181,18 @@ void ExprPos::eval(EvalState & state, Env & env, Value & v)
}
void EvalState::strictForceValue(Value & v)
void EvalState::forceValueDeep(Value & v)
{
forceValue(v);
if (v.type == tAttrs) {
foreach (Bindings::iterator, i, *v.attrs)
strictForceValue(*i->value);
forceValueDeep(*i->value);
}
else if (v.type == tList) {
for (unsigned int n = 0; n < v.list.length; ++n)
strictForceValue(*v.list.elems[n]);
forceValueDeep(*v.list.elems[n]);
}
}

View file

@ -188,7 +188,7 @@ public:
/* Force a value, then recursively force list elements and
attributes. */
void strictForceValue(Value & v);
void forceValueDeep(Value & v);
/* Force `v', and then verify that it has the expected type. */
NixInt forceInt(Value & v, const Pos & pos);