👀 Reading hidden code
mutable struct A
x
y
end
1
3
👀 Reading hidden code
Expr
head: Symbol =
args: Array{Any}((2,))
1: Expr
head: Symbol call
args: Array{Any}((2,))
1: Symbol f
2: Symbol x
2: Expr
head: Symbol block
args: Array{Any}((2,))
1: LineNumberNode
line: Int64 1
file: Symbol /home/runner/work/disorganised-mess/disorganised-mess/Dump.jl#==#6ffb144e-009f-11eb-083d-3f9cbe0bcd9a
2: Int64 1123
👀 Reading hidden code
Main.workspace#2.A
x: Int64 1
y: Main.workspace#2.A
x: Int64 3
y: Main.workspace#2.A#= circular reference @-2 =#
👀 Reading hidden code
Dump
Dump(x; maxdepth=8)
Show every part of the representation of a value. The depth of the output is truncated at maxdepth.
This is a variant of Base.dump
that returns the representation directly, instead of printing it to stdout.
"""
Dump(x; maxdepth=8)
Show every part of the representation of a value. The depth of the output is truncated at maxdepth.
This is a variant of [`Base.dump`](@ref) that returns the representation directly, instead of printing it to stdout.
"""
function Dump(x; maxdepth=8)
sprint() do io
dump(io, x; maxdepth=maxdepth)
end |> Text
end
👀 Reading hidden code
👀 Reading hidden code