1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00

showType(fun)

This commit is contained in:
Ben Burdette 2021-05-14 18:09:30 -06:00
parent 644567cf7e
commit 99304334ca

View file

@ -1378,17 +1378,8 @@ void EvalState::callFunction(Value & fun, Value & arg, Value & v, const Pos & po
throwTypeError(
pos,
"attempt to call something which is not a function but %1%",
fun,
showType(fun),
map2("fun", &fun, "arg", &arg));
// auto error = TypeError({
// // .hint = hintfmt("attempt to call something which is not a function but %1%", showType(fun)),
// .msg = hintfmt("attempt to call something which is not a function but %1%", fun),
// .errPos = pos
// });
// if (debuggerHook)
// debuggerHook(error, {{"fun", &fun}, {"arg", &arg}});
// throw error;
}
ExprLambda & lambda(*fun.lambda.fun);