diff --git a/src/builtins.jl b/src/builtins.jl index c34e359..fa708fd 100644 --- a/src/builtins.jl +++ b/src/builtins.jl @@ -10,3 +10,7 @@ children(p::Pair) = (p[2],) ChildIndexing(::Pair) = IndexedChildren() children(dict::AbstractDict) = pairs(dict) + + +# For potentially-large containers, just show the type +printnode(io::IO, ::T) where T <: Union{AbstractArray, AbstractDict} = print(io, T) \ No newline at end of file