diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-10-08T12·40+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-10-08T12·40+0200 |
commit | 6b47de580ffe6101863a1054d9d47f9cbe691214 (patch) | |
tree | 297352fe704a739e5e25a40c0f6e77bf30592cd2 /src/libexpr/nixexpr.cc | |
parent | a5e0f64db3f7355e320ecda478b84f238bf8869c (diff) |
Show the exact position of undefined variables
In particular, undefined variable errors in a "with" previously didn't show *any* position information, so this should help a lot in those cases.
Diffstat (limited to 'src/libexpr/nixexpr.cc')
-rw-r--r-- | src/libexpr/nixexpr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc index c847e3baf832..03a14695f108 100644 --- a/src/libexpr/nixexpr.cc +++ b/src/libexpr/nixexpr.cc @@ -198,7 +198,7 @@ void ExprVar::bindVars(const StaticEnv & env) /* Otherwise, the variable must be obtained from the nearest enclosing `with'. If there is no `with', then we can issue an "undefined variable" error now. */ - if (withLevel == -1) throw EvalError(format("undefined variable `%1%'") % name); + if (withLevel == -1) throw ParseError(format("undefined variable `%1%' at %2%") % name % pos); fromWith = true; this->level = withLevel; |