Fix unreachable error message

Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
This commit is contained in:
Guillaume Maudoux 2023-01-20 13:01:03 +01:00 committed by GitHub
parent a9fa2c758b
commit ee4b849b17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -397,7 +397,7 @@ StringSet NixRepl::completePrefix(const std::string & prefix)
Expr * e = parseString(expr);
Value v;
e->eval(*state, *env, v);
state->forceAttrs(v, noPos, "nevermind, it is ignored anyway");
state->forceAttrs(v, noPos, "while evaluating an attrset for the purpose of completion (this error should not be displayed; file an issue?)");
for (auto & i : *v.attrs) {
std::string_view name = state->symbols[i.name];