We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a210129 commit a7762c6Copy full SHA for a7762c6
base/show.jl
@@ -3400,6 +3400,9 @@ function print_partition(io::IO, partition::Core.BindingPartition)
3400
elseif kind == PARTITION_KIND_CONST
3401
print(io, "constant binding to ")
3402
print(io, partition_restriction(partition))
3403
+ elseif kind == PARTITION_KIND_CONST_IMPORT
3404
+ print(io, "constant binding (declared with `import`) to ")
3405
+ print(io, partition_restriction(partition))
3406
elseif kind == PARTITION_KIND_UNDEF_CONST
3407
print(io, "undefined const binding")
3408
elseif kind == PARTITION_KIND_GUARD
0 commit comments