change error location for genericClosure operator errors

This commit is contained in:
Guillaume Maudoux 2022-03-05 21:19:04 +01:00
parent 4078015927
commit 1b5a8db148

View file

@ -684,7 +684,7 @@ static void prim_genericClosure(EvalState & state, const Pos & pos, Value * * ar
/* Call the `operator' function with `e' as argument. */ /* Call the `operator' function with `e' as argument. */
Value res; Value res;
state.callFunction(*op->value, 1, &e, res, *op->pos); state.callFunction(*op->value, 1, &e, res, pos);
state.forceList(res, pos, "While evaluating the return value of the `operator` passed to builtins.genericClosure"); state.forceList(res, pos, "While evaluating the return value of the `operator` passed to builtins.genericClosure");
/* Add the values returned by the operator to the work set. */ /* Add the values returned by the operator to the work set. */