cc #60742 (comment)
Right now when we encounter a ConstValue::Unevaluated during pretty printing, we fall back to printing the constant's source code or _ if that also fails. Alternative options are:
- try to eagerly evaluate (and fall back to one of the following)
- always print
_
- print something like
{{unevaluated: {}}} where {} is the source code
- print just
{unevaluated} (seems useless for users, so maybe not a good idea)
cc #60742 (comment)
Right now when we encounter a
ConstValue::Unevaluatedduring pretty printing, we fall back to printing the constant's source code or_if that also fails. Alternative options are:_{{unevaluated: {}}}where{}is the source code{unevaluated}(seems useless for users, so maybe not a good idea)