prim_mapAttrs: must be lazy to avoid infinite recursion
This commit is contained in:
parent
841747b0e6
commit
e6bf1a79d7
|
@ -1365,10 +1365,11 @@ static void prim_mapAttrs(EvalState & state, const Pos & pos, Value * * args, Va
|
|||
state.mkAttrs(v, args[1]->attrs->size());
|
||||
|
||||
for (auto & i : *args[1]->attrs) {
|
||||
Value vName, vFun2;
|
||||
mkString(vName, i.name);
|
||||
state.callFunction(*args[0], vName, vFun2, pos);
|
||||
state.callFunction(vFun2, *i.value, *state.allocAttr(v, i.name), pos);
|
||||
Value * vName = state.allocValue();
|
||||
Value * vFun2 = state.allocValue();
|
||||
mkString(*vName, i.name);
|
||||
state.callFunction(*args[0], *vName, *vFun2, pos);
|
||||
mkApp(*state.allocAttr(v, i.name), *vFun2, *i.value);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue