mirror of
https://github.com/NixOS/nix
synced 2025-06-27 21:01:16 +02:00
forceValue: make pos mandatory
- Make passing the position to `forceValue` mandatory, this way we remember people that the position is important for better error messages - Add pos to all `forceValue` calls
This commit is contained in:
parent
5f08db69d1
commit
49b0bb0206
12 changed files with 28 additions and 26 deletions
|
@ -40,7 +40,7 @@ void processExpr(EvalState & state, const Strings & attrPaths,
|
|||
|
||||
for (auto & i : attrPaths) {
|
||||
Value & v(*findAlongAttrPath(state, i, autoArgs, vRoot).first);
|
||||
state.forceValue(v);
|
||||
state.forceValue(v, v.determinePos(noPos));
|
||||
|
||||
PathSet context;
|
||||
if (evalOnly) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue