diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-10-08T12·45+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-10-08T12·45+0200 |
commit | b1e3b1a4ac8c276f503713f6002c3b42efef2ae8 (patch) | |
tree | 9cb4941efd09e0ec8c962c81d9907ee8e19a5787 /src/libexpr/nixexpr.hh | |
parent | 6b47de580ffe6101863a1054d9d47f9cbe691214 (diff) |
Treat undefined variable errors consistently
Previously, a undefined variable inside a "with" caused an EvalError (which can be caught), while outside, it caused a ParseError (which cannot be caught). Now both cause an UndefinedVarError (which cannot be caught).
Diffstat (limited to 'src/libexpr/nixexpr.hh')
-rw-r--r-- | src/libexpr/nixexpr.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh index e555a5dff051..f5cc69801e42 100644 --- a/src/libexpr/nixexpr.hh +++ b/src/libexpr/nixexpr.hh @@ -16,6 +16,7 @@ MakeError(ThrownError, AssertionError) MakeError(Abort, EvalError) MakeError(TypeError, EvalError) MakeError(ImportError, EvalError) // error building an imported derivation +MakeError(UndefinedVarError, Error) /* Position objects. */ |