Skip to content

Instantly share code, notes, and snippets.

@aviatesk
Created June 14, 2021 15:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aviatesk/5e49c12c7c70b1e10f008b5799bc7935 to your computer and use it in GitHub Desktop.
Save aviatesk/5e49c12c7c70b1e10f008b5799bc7935 to your computer and use it in GitHub Desktop.
julia> using JET, JET.JETInterfaces
julia> get_module(sv::Core.Compiler.InferenceState) = sv.mod
get_module (generic function with 2 methods)
julia> function get_module(linfo::Core.MethodInstance)
def = linfo.def
return isa(def, Module) ? def : def.module
end
get_module (generic function with 2 methods)
julia> struct JLFMTPass <: ReportPass end
julia> function (::JLFMTPass)(T::Type{<:InferenceErrorReport}, analyzer, state, @nospecialize(args...))
occursin("JuliaFormatter", string(get_module(state))) || return # focus on errors from the target module
BasicPass()(T, analyzer, state, args...)
end
julia> report_package(stdout, "JuliaFormatter"; report_pass=JLFMTPass())
[toplevel-info] applied JET configurations in /Users/aviatesk/julia/packages/.JET.toml
[toplevel-info] virtualized the context of Main (took 0.002 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/document.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/document.jl (took 0.059 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/options.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/options.jl (took 0.032 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/state.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/state.jl (took 0.019 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl (took 0.517 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl (took 0.631 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/align.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/align.jl (took 0.438 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl (took 0.207 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl (took 0.442 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl (took 0.167 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/pretty.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/pretty.jl (took 0.193 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl (took 0.064 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/pretty.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/pretty.jl (took 0.127 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl (took 0.035 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/print.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/print.jl (took 0.037 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/markdown.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/markdown.jl (took 0.103 sec)
[toplevel-info] entered into /Users/aviatesk/julia/packages/JuliaFormatter/src/copied_from_documenter.jl
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/copied_from_documenter.jl (took 0.006 sec)
[toplevel-info] exited from /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl (took 6.833 sec)
[toplevel-info] analyzing from top-level definitions ... 642/642
═════ 215 possible errors found ═════
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/document.jl:142 JuliaFormatter.:(idx1::Union{Nothing, Int64}, idx2::Union{Nothing, Int64})
│ for 2 of union split cases, no matching method found for call signatures (Tuple{Colon, Int64, Nothing}, Tuple{Colon, Nothing, Int64})): JuliaFormatter.:(idx1::Union{Nothing, Int64}, idx2::Union{Nothing, Int64})
└─────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/document.jl:178 JuliaFormatter.:(idx1::Union{Nothing, Int64}, Base.lastindex(str::String)::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{Colon, Nothing, Int64})): JuliaFormatter.:(idx1::Union{Nothing, Int64}, Base.lastindex(str::String)::Int64)
└─────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:177 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, ind::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, ind::Int64)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:178 Base.setindex!(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, node::JuliaFormatter.FST, ind::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(setindex!), Nothing, JuliaFormatter.FST, Int64})): Base.setindex!(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, node::JuliaFormatter.FST, ind::Int64)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:182 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:186 #self#::typeof(iterate)(fst::JuliaFormatter.FST, 1)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:186 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│└────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:189 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, state::Int64)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, state::Int64)
│└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:193 JuliaFormatter.insert!(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, ind::Int64, node::JuliaFormatter.FST)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(insert!), Nothing, Int64, JuliaFormatter.FST})): JuliaFormatter.insert!(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, ind::Int64, node::JuliaFormatter.FST)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:247 JuliaFormatter.endswith(CSTParser.valof::typeof(CSTParser.valof)(x::CSTParser.EXPR)::Union{Nothing, String}, "^")
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(endswith), Nothing, String})): JuliaFormatter.endswith(CSTParser.valof::typeof(CSTParser.valof)(x::CSTParser.EXPR)::Union{Nothing, String}, "^")
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:249 JuliaFormatter.endswith(CSTParser.valof::typeof(CSTParser.valof)(x::CSTParser.EXPR)::Union{Nothing, String}, "//")
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(endswith), Nothing, String})): JuliaFormatter.endswith(CSTParser.valof::typeof(CSTParser.valof)(x::CSTParser.EXPR)::Union{Nothing, String}, "//")
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:269 JuliaFormatter.is_macrostr(Base.getindex(cst::CSTParser.EXPR, 3)::Any)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:302 JuliaFormatter.is_macrostr_identifier(n::CSTParser.EXPR)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:310 JuliaFormatter.match(r"@(.*)_(str|cmd)", Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(match), Regex, Nothing})): JuliaFormatter.match(r"@(.*)_(str|cmd)", Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││└────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:320 JuliaFormatter.ncodeunits(val::Union{Nothing, SubString{String}})
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(ncodeunits), Nothing})): JuliaFormatter.ncodeunits(val::Union{Nothing, SubString{String}})
││└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:336 CSTParser.isconditional::typeof(CSTParser.isconditional)(JuliaFormatter.x)
│ variable JuliaFormatter.x is not defined: CSTParser.isconditional::typeof(CSTParser.isconditional)(JuliaFormatter.x)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:341 Base.getindex(Base.getproperty(cst::CSTParser.EXPR, :args::Symbol)::Union{Nothing, Vector{CSTParser.EXPR}}, 1)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(cst::CSTParser.EXPR, :args::Symbol)::Union{Nothing, Vector{CSTParser.EXPR}}, 1)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:376 JuliaFormatter.contains_comment(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.contains_comment), Nothing})): JuliaFormatter.contains_comment(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:446 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:450 Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:450 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:451 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:459 Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:459 Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(setindex!), Nothing, JuliaFormatter.FST, Int64})): Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:465 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:470 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:473 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:479 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:484 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:488 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:488 Base.getindex(Base.getproperty(n::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing})): Base.getindex(Base.getproperty(n::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:494 JuliaFormatter.add_node!(t::JuliaFormatter.FST, JuliaFormatter.Semicolon()::JuliaFormatter.FST, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:427 JuliaFormatter.#add_node!#24(false, -1, #self#::typeof(JuliaFormatter.add_node!), t::JuliaFormatter.FST, n::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:496 JuliaFormatter.length(Base.getproperty(n::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(n::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││└────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:501 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
││└────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:504 Base.iterate(Base.getproperty(n::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing})): Base.iterate(Base.getproperty(n::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││└────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:505 Base.iterate(Base.getproperty(n::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_10::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing, Int64})): Base.iterate(Base.getproperty(n::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_10::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
││└────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:509 JuliaFormatter.import_to_usings(n::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:126 Base.getindex(fst::JuliaFormatter.FST, 3)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:181 Base.getindex(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Tuple{Union{Nothing, Vector{JuliaFormatter.FST}}}, inds::Tuple{Int64}...)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Tuple{Union{Nothing, Vector{JuliaFormatter.FST}}}, inds::Tuple{Int64}...)
││││└────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:148 JuliaFormatter.FST(JuliaFormatter.IDENTIFIER, -1, sl::Int64, el::Int64, Base.getproperty(Base.getindex(n::JuliaFormatter.FST, Base.lastindex(n::JuliaFormatter.FST)::Int64)::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{Type{JuliaFormatter.FST}, JuliaFormatter.FNode, Int64, Int64, Int64, Nothing})): JuliaFormatter.FST(JuliaFormatter.IDENTIFIER, -1, sl::Int64, el::Int64, Base.getproperty(Base.getindex(n::JuliaFormatter.FST, Base.lastindex(n::JuliaFormatter.FST)::Int64)::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
│││└───────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:512 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines, :max_padding)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:join_lines, :max_padding)}}(Core.tuple(false, 0)::Tuple{Bool, Int64})::NamedTuple{(:join_lines, :max_padding), Tuple{Bool, Int64}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, nn::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:427 JuliaFormatter.#add_node!#24(join_lines::Bool, max_padding::Int64, _3::typeof(JuliaFormatter.add_node!), t::JuliaFormatter.FST, n::JuliaFormatter.FST, s::JuliaFormatter.State)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:590 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(idx::Int64, 1)::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(idx::Int64, 1)::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:521 JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:590 Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)::JuliaFormatter.FST, JuliaFormatter.-(idx::Int64, 1)::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(setindex!), Nothing, JuliaFormatter.FST, Int64})): Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)::JuliaFormatter.FST, JuliaFormatter.-(idx::Int64, 1)::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:590 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:518 JuliaFormatter.binaryop_to_whereop!(n::JuliaFormatter.FST, s::JuliaFormatter.State)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:332 Base.getindex(oldwhereop::JuliaFormatter.FST, JuliaFormatter.:(2, Base.lastindex(oldwhereop::JuliaFormatter.FST)::Int64)::UnitRange{Int64})
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:181 Base.getindex(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Tuple{Union{Nothing, Vector{JuliaFormatter.FST}}}, inds::Tuple{UnitRange{Int64}}...)
│││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Tuple{Union{Nothing, Vector{JuliaFormatter.FST}}}, inds::Tuple{UnitRange{Int64}}...)
││││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:530 JuliaFormatter.is_prev_newline(Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)::JuliaFormatter.FST)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:626 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:530 Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:565 Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.Whitespace(0)::JuliaFormatter.FST, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(setindex!), Nothing, JuliaFormatter.FST, Int64})): Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.Whitespace(0)::JuliaFormatter.FST, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:574 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(idx::Int64, 1)::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(idx::Int64, 1)::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:619 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:574 Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)::JuliaFormatter.FST, JuliaFormatter.-(idx::Int64, 1)::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(setindex!), Nothing, JuliaFormatter.FST, Int64})): Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)::JuliaFormatter.FST, JuliaFormatter.-(idx::Int64, 1)::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:530 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:612 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:589 JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:573 JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:574 Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(idx::Int64, 1)::Int64)::JuliaFormatter.FST, idx::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(setindex!), Nothing, JuliaFormatter.FST, Int64})): Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(idx::Int64, 1)::Int64)::JuliaFormatter.FST, idx::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:565 Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:526 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::JuliaFormatter.FST)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:574 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:534 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64)
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:534 Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││└────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:590 Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(idx::Int64, 1)::Int64)::JuliaFormatter.FST, idx::Int64)
│││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(setindex!), Nothing, JuliaFormatter.FST, Int64})): Base.setindex!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(idx::Int64, 1)::Int64)::JuliaFormatter.FST, idx::Int64)
││││└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:641 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:642 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, i::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, i::Int64)
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:809 JuliaFormatter.get_binary_op(cst::CSTParser.EXPR)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:849 Base.getindex(Base.getproperty(cst::CSTParser.EXPR, :args::Symbol)::Union{Nothing, Vector{CSTParser.EXPR}}, 1)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(cst::CSTParser.EXPR, :args::Symbol)::Union{Nothing, Vector{CSTParser.EXPR}}, 1)
│└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:811 JuliaFormatter.precedence(op::Any)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:817 Base.lastindex(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│└────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:817 Base.getindex(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, JuliaFormatter.:(2, Base.lastindex(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})::Int64)::UnitRange{Int64})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, JuliaFormatter.:(2, Base.lastindex(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})::Int64)::UnitRange{Int64})
│└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:995 JuliaFormatter.length(Base.getproperty(op::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(op::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:1002 JuliaFormatter.length(Base.getproperty(op::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(op::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
└─────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:1005 JuliaFormatter.length(Base.getproperty(op::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(op::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
└─────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:1008 Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing})): Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└─────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:1009 Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_4::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing, Int64})): Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_4::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
└─────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:36 JuliaFormatter.flatten_fst!(lhs::JuliaFormatter.FST)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:66 Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing})): Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│└──────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:79 Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_3::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing, Int64})): Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_3::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
│└──────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:54 Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing})): Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└──────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:58 Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_3::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing, Int64})): Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_3::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
└──────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:98 Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing})): Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└──────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:105 Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_3::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing, Int64})): Base.iterate(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_3::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:229 JuliaFormatter.prepend_return!(Base.getindex(fst::JuliaFormatter.FST, Base.lastindex(fst::JuliaFormatter.FST)::Int64)::JuliaFormatter.FST, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:368 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:231 JuliaFormatter.add_indent!(Base.getindex(funcdef::JuliaFormatter.FST, Base.lastindex(funcdef::JuliaFormatter.FST)::Int64)::JuliaFormatter.FST, s::JuliaFormatter.State, Base.getproperty(Base.getproperty(s::JuliaFormatter.State, :opts::Symbol)::JuliaFormatter.Options, :indent::Symbol)::Int64)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:51 JuliaFormatter.walk(f::JuliaFormatter.var"#68#69"{Int64}, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:35 JuliaFormatter.walk(f::JuliaFormatter.var"#68#69"{Int64}, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.walk), JuliaFormatter.var"#68#69"{Int64}, Nothing, JuliaFormatter.State, Int64})): JuliaFormatter.walk(f::JuliaFormatter.var"#68#69"{Int64}, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││└──────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:251 Base.setproperty!(JuliaFormatter.delc, :opmeta::Symbol, JuliaFormatter.OpMeta(Tokenize.Tokens.DECLARATION::Tokenize.Tokens.Kind, false)::JuliaFormatter.OpMeta)
│ variable JuliaFormatter.delc is not defined: Base.setproperty!(JuliaFormatter.delc, :opmeta::Symbol, JuliaFormatter.OpMeta(Tokenize.Tokens.DECLARATION::Tokenize.Tokens.Kind, false)::JuliaFormatter.OpMeta)
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:416 JuliaFormatter.walk(f::JuliaFormatter.var"#43#45"(t::Vector{JuliaFormatter.FST})::JuliaFormatter.var"#44#46"{Vector{JuliaFormatter.FST}}, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:35 JuliaFormatter.walk(f::JuliaFormatter.var"#44#46"{Vector{JuliaFormatter.FST}}, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.walk), JuliaFormatter.var"#44#46"{Vector{JuliaFormatter.FST}}, Nothing, JuliaFormatter.State, Int64})): JuliaFormatter.walk(f::JuliaFormatter.var"#44#46"{Vector{JuliaFormatter.FST}}, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│└──────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:422 Base.getindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString}, 1)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString}, 1)
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:423 Base.lastindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:423 Base.getindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString}, JuliaFormatter.:(2, Base.lastindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})::Int64)::UnitRange{Int64})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString}, JuliaFormatter.:(2, Base.lastindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})::Int64)::UnitRange{Int64})
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:429 Base.getindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString}, 1)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString}, 1)
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:430 JuliaFormatter.*("@", Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(*), String, Nothing})): JuliaFormatter.*("@", Base.getproperty(n::JuliaFormatter.FST, :val::Symbol)::Union{Nothing, AbstractString})
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:453 JuliaFormatter.+(idx1::Union{Nothing, Int64}, 1)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(+), Nothing, Int64})): JuliaFormatter.+(idx1::Union{Nothing, Int64}, 1)
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:453 JuliaFormatter.-(idx2::Union{Nothing, Int64}, 1)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(-), Nothing, Int64})): JuliaFormatter.-(idx2::Union{Nothing, Int64}, 1)
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:453 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.:(JuliaFormatter.+(idx1::Union{Nothing, Int64}, 1)::Int64, JuliaFormatter.-(idx2::Union{Nothing, Int64}, 1)::Int64)::UnitRange{Int64})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.:(JuliaFormatter.+(idx1::Union{Nothing, Int64}, 1)::Int64, JuliaFormatter.-(idx2::Union{Nothing, Int64}, 1)::Int64)::UnitRange{Int64})
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:521 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.:(1, JuliaFormatter.-(kw_idx::Int64, 1)::Int64)::UnitRange{Int64})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.:(1, JuliaFormatter.-(kw_idx::Int64, 1)::Int64)::UnitRange{Int64})
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:522 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.:(1, JuliaFormatter.-(kw_idx::Int64, 1)::Int64)::UnitRange{Int64})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.:(1, JuliaFormatter.-(kw_idx::Int64, 1)::Int64)::UnitRange{Int64})
└───────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl:547 Base.getindex(fst::JuliaFormatter.FST, comma_idx::Union{Nothing, Int64})
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:181 Base.getindex(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Tuple{Union{Nothing, Vector{JuliaFormatter.FST}}}, inds::Tuple{Nothing}...)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Nothing})): Base.getindex(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Tuple{Union{Nothing, Vector{JuliaFormatter.FST}}}, inds::Tuple{Nothing}...)
│└────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/align.jl:14 JuliaFormatter.align_conditional!(n::JuliaFormatter.FST)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/align.jl:246 JuliaFormatter.+(nidx::Union{Nothing, Int64}, 1)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(+), Nothing, Int64})): JuliaFormatter.+(nidx::Union{Nothing, Int64}, 1)
│└──────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:19 JuliaFormatter.walk(f::Any, n::JuliaFormatter.FST, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:35 JuliaFormatter.walk(f::Any, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.walk), Any, Nothing, JuliaFormatter.State, Int64})): JuliaFormatter.walk(f::Any, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│└──────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:51 JuliaFormatter.walk(f::JuliaFormatter.var"#68#69", fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:35 JuliaFormatter.walk(f::JuliaFormatter.var"#68#69", Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.walk), JuliaFormatter.var"#68#69", Nothing, JuliaFormatter.State, Int64})): JuliaFormatter.walk(f::JuliaFormatter.var"#68#69", Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│└──────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:142 JuliaFormatter.nest!(style::Any, Base.getindex(fst::JuliaFormatter.FST, idx::Int64)::JuliaFormatter.FST, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:55 JuliaFormatter.walk(JuliaFormatter.increment_line_offset!, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:35 JuliaFormatter.walk(f::typeof(JuliaFormatter.increment_line_offset!), Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.walk), typeof(JuliaFormatter.increment_line_offset!), Nothing, JuliaFormatter.State, Int64})): JuliaFormatter.walk(f::typeof(JuliaFormatter.increment_line_offset!), Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││└──────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:60 JuliaFormatter.n_import!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:224 JuliaFormatter.n_using!(ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:209 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││└────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:214 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││└────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:66 JuliaFormatter.n_whereopcall!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:496 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││└────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:73 JuliaFormatter.n_conditionalopcall!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:524 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││└────────────────────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:542 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││└────────────────────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:561 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││└────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:77 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
│└───────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:97 JuliaFormatter.n_typedvcat!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:323 JuliaFormatter.n_tuple!(ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:261 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││└────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:277 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(extra_margin::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(extra_margin::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││└────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:103 JuliaFormatter.n_vcat!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:76 JuliaFormatter.n_tuple!(ys::JuliaFormatter.YASStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:45 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││└───────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:107 JuliaFormatter.n_bracescat!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl:81 JuliaFormatter.n_tuple!(bs::JuliaFormatter.BlueStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl:11 JuliaFormatter.+(fidx::Union{Nothing, Int64}, 1)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(+), Nothing, Int64})): JuliaFormatter.+(fidx::Union{Nothing, Int64}, 1)
│││└────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl:15 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, args_range::UnitRange{Int64})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, args_range::UnitRange{Int64})
│││└────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl:52 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││└────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl:57 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││└────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl:70 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(extra_margin::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(extra_margin::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││└────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:111 JuliaFormatter.n_comprehension!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:328 JuliaFormatter.#n_comprehension!#111(-1, #self#::typeof(JuliaFormatter.n_comprehension!), ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:357 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││└────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:117 JuliaFormatter.n_generator!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:379 JuliaFormatter.#n_generator!#117(-1, #self#::typeof(JuliaFormatter.n_generator!), ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:403 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││└────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:433 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││└────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:123 JuliaFormatter.n_block!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:706 JuliaFormatter.#n_block!#128(-1, #self#::typeof(JuliaFormatter.n_block!), ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:713 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
│││└────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:727 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││└────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:741 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││└────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:129 JuliaFormatter.n_for!(style::JuliaFormatter.AbstractStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:693 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││└────────────────────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:696 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││└────────────────────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:175 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││└────────────────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:181 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.+(i::Int64, 1)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.+(i::Int64, 1)::Int64)
││└────────────────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:182 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.+(i::Int64, 1)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.+(i::Int64, 1)::Int64)
││└────────────────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:183 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.+(i::Int64, 1)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.+(i::Int64, 1)::Int64)
││└────────────────────────────────────────────────────────────────────────────
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:184 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.+(i::Int64, 1)::Int64)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.+(i::Int64, 1)::Int64)
││└────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:132 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│└────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:137 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.AbstractStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.AbstractStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│└────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:5 JuliaFormatter.p_identifier(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:173 JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│└──────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:174 JuliaFormatter.FST(JuliaFormatter.IDENTIFIER, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{Type{JuliaFormatter.FST}, JuliaFormatter.FNode, Int64, Int64, Int64, Nothing})): JuliaFormatter.FST(JuliaFormatter.IDENTIFIER, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:7 JuliaFormatter.p_operator(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:181 JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│└──────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:183 JuliaFormatter.FST(JuliaFormatter.OPERATOR, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{Type{JuliaFormatter.FST}, JuliaFormatter.FNode, Int64, Int64, Int64, Nothing})): JuliaFormatter.FST(JuliaFormatter.OPERATOR, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│└──────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:184 JuliaFormatter.tokenize(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.tokenize), Nothing})): JuliaFormatter.tokenize(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:9 JuliaFormatter.p_punctuation(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:201 JuliaFormatter.FST(JuliaFormatter.PUNCTUATION, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{Type{JuliaFormatter.FST}, JuliaFormatter.FNode, Int64, Int64, Int64, Nothing})): JuliaFormatter.FST(JuliaFormatter.PUNCTUATION, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:11 JuliaFormatter.p_keyword(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:193 JuliaFormatter.FST(JuliaFormatter.KEYWORD, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{Type{JuliaFormatter.FST}, JuliaFormatter.FNode, Int64, Int64, Int64, Nothing})): JuliaFormatter.FST(JuliaFormatter.KEYWORD, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:13 JuliaFormatter.p_as(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1982 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, Base.getindex(cst::CSTParser.EXPR, 1)::Any, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:3 JuliaFormatter.#pretty#73(Base.pairs(Core.NamedTuple()::NamedTuple{(), Tuple{}})::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, #self#::typeof(JuliaFormatter.pretty), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:17 JuliaFormatter.p_literal(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:338 JuliaFormatter.#p_literal#81(false, #self#::typeof(JuliaFormatter.p_literal), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:346 JuliaFormatter.endswith(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, "f0")
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(endswith), Nothing, String})): JuliaFormatter.endswith(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, "f0")
│││││└──────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:359 JuliaFormatter.endswith(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, ".")
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(endswith), Nothing, String})): JuliaFormatter.endswith(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, ".")
│││││└──────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:362 JuliaFormatter.startswith(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, ".")
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(startswith), Nothing, String})): JuliaFormatter.startswith(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, ".")
│││││└──────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:367 JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│││││└──────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:381 JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│││││└──────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:382 JuliaFormatter.FST(JuliaFormatter.LITERAL, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{Type{JuliaFormatter.FST}, JuliaFormatter.FNode, Int64, Int64, Int64, Nothing})): JuliaFormatter.FST(JuliaFormatter.LITERAL, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 2)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getindex(loc::Tuple{Int64, Int64, Int64}, 1)::Int64, Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String})
│││││└──────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:47 JuliaFormatter.p_try(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1197 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:ignore_single_line,)::Tuple{Symbol})::Type{NamedTuple{(:ignore_single_line,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:ignore_single_line,), Tuple{Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Any, s::JuliaFormatter.State)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:3 JuliaFormatter.#pretty#73(kwargs...::Base.Pairs{Symbol, Bool, Tuple{Symbol}, NamedTuple{(:ignore_single_line,), Tuple{Bool}}}, _3::typeof(JuliaFormatter.pretty), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:129 JuliaFormatter.p_ref(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2005 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││└───────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:131 JuliaFormatter.p_generator(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/pretty.jl:349 Base.iterate(Base.getproperty(tup::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_9::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing, Int64})): Base.iterate(Base.getproperty(tup::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, Core.getfield(_9::Tuple{JuliaFormatter.FST, Int64}, 2)::Int64)
│││││││└──────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:119 JuliaFormatter.p_row(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2098 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(true, true)::Tuple{Bool, Bool})::NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#pretty##kw", NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(true, true)::Tuple{Bool, Bool})::NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││└───────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:101 JuliaFormatter.p_parameters(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1925 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.Placeholder(1)::JuliaFormatter.FST)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, JuliaFormatter.FST})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.Placeholder(1)::JuliaFormatter.FST)
│││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1924 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::Any)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, Any})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::Any)
│││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/pretty.jl:348 Base.iterate(Base.getproperty(tup::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(iterate), Nothing})): Base.iterate(Base.getproperty(tup::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││││└──────────────────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1927 JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::Any)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(push!), Nothing, Any})): JuliaFormatter.push!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, n::Any)
│││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2003 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2128 Core.kwfunc(JuliaFormatter.parent_is)::JuliaFormatter.var"#parent_is##kw"(Core.apply_type(Core.NamedTuple, (:ignore,)::Tuple{Symbol})::Type{NamedTuple{(:ignore,)}}(Core.tuple(#103::JuliaFormatter.var"#103#104")::Tuple{JuliaFormatter.var"#103#104"})::NamedTuple{(:ignore,), Tuple{JuliaFormatter.var"#103#104"}}, JuliaFormatter.parent_is, a::Any, JuliaFormatter.is_iterable)
││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:365 JuliaFormatter.#parent_is#19(ignore::JuliaFormatter.var"#103#104", _3::typeof(JuliaFormatter.parent_is), cst::CSTParser.EXPR, valid::typeof(JuliaFormatter.is_iterable))
│││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl:370 valid::typeof(JuliaFormatter.is_iterable)(p::Union{Nothing, CSTParser.EXPR})
││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.is_iterable), Nothing})): valid::typeof(JuliaFormatter.is_iterable)(p::Union{Nothing, CSTParser.EXPR})
│││││││││└────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2105 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││└───────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:89 JuliaFormatter.p_binaryopcall(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1460 JuliaFormatter.#p_binaryopcall#97(false, false, #self#::typeof(JuliaFormatter.p_binaryopcall), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1546 JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││└───────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1466 CSTParser.iscurly::typeof(CSTParser.iscurly)(Base.getproperty(cst::CSTParser.EXPR, :parent::Symbol)::Union{Nothing, CSTParser.EXPR})
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(CSTParser.iscurly), Nothing})): CSTParser.iscurly::typeof(CSTParser.iscurly)(Base.getproperty(cst::CSTParser.EXPR, :parent::Symbol)::Union{Nothing, CSTParser.EXPR})
│││││└───────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1546 JuliaFormatter.insert!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, JuliaFormatter.Placeholder(0)::JuliaFormatter.FST)
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(insert!), Nothing, Int64, JuliaFormatter.FST})): JuliaFormatter.insert!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, JuliaFormatter.Placeholder(0)::JuliaFormatter.FST)
│││││└───────────────────────────────────────────────────────────────────────────────────
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/pretty.jl:89 JuliaFormatter.#p_binaryopcall#163(false, false, #self#::typeof(JuliaFormatter.p_binaryopcall), bs::JuliaFormatter.BlueStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/pretty.jl:177 JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│││││└───────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/pretty.jl:95 CSTParser.iscurly::typeof(CSTParser.iscurly)(Base.getproperty(cst::CSTParser.EXPR, :parent::Symbol)::Union{Nothing, CSTParser.EXPR})
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(CSTParser.iscurly), Nothing})): CSTParser.iscurly::typeof(CSTParser.iscurly)(Base.getproperty(cst::CSTParser.EXPR, :parent::Symbol)::Union{Nothing, CSTParser.EXPR})
│││││└──────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/pretty.jl:177 JuliaFormatter.insert!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, JuliaFormatter.Placeholder(0)::JuliaFormatter.FST)
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(insert!), Nothing, Int64, JuliaFormatter.FST})): JuliaFormatter.insert!(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, JuliaFormatter.Placeholder(0)::JuliaFormatter.FST)
│││││└───────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:91 JuliaFormatter.p_unaryopcall(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1640 JuliaFormatter.#p_unaryopcall#99(true, #self#::typeof(JuliaFormatter.p_unaryopcall), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1644 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, Base.getproperty(cst::CSTParser.EXPR, :head::Symbol)::Union{CSTParser.EXPR, Symbol}, s::JuliaFormatter.State)
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, Symbol, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, Base.getproperty(cst::CSTParser.EXPR, :head::Symbol)::Union{CSTParser.EXPR, Symbol}, s::JuliaFormatter.State)
│││││└───────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:93 JuliaFormatter.p_chainopcall(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1299 JuliaFormatter.#p_chainopcall#93(false, false, #self#::typeof(JuliaFormatter.p_chainopcall), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1332 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││└───────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1330 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││└───────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1323 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(nospace::Bool, nonest::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#pretty##kw", NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(nospace::Bool, nonest::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:93 Core.kwfunc(JuliaFormatter.p_chainopcall)::JuliaFormatter.var"#p_chainopcall##kw"(Base.merge(Base.NamedTuple()::NamedTuple{(), Tuple{}}, kwargs::Base.Pairs{Symbol, V, Tuple{Vararg{Symbol, N}}, NamedTuple{names, T}} where {V, N, names, T<:Tuple{Vararg{Any, N}}})::NamedTuple{names, T} where {N, names, T<:Tuple{Vararg{Any, N}}}, JuliaFormatter.p_chainopcall, style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1299 JuliaFormatter.#p_chainopcall#93(nonest::Any, nospace::Any, _3::typeof(JuliaFormatter.p_chainopcall), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1323 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(nospace::Bool, nonest::Any)::Tuple{Bool, Any})::NamedTuple{(:nospace, :nonest), _A} where _A<:Tuple{Bool, Any}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#pretty##kw", NamedTuple{(:nospace, :nonest), _A} where _A<:Tuple{Bool, Any}, typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(nospace::Bool, nonest::Any)::Tuple{Bool, Any})::NamedTuple{(:nospace, :nonest), _A} where _A<:Tuple{Bool, Any}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1375 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1003 JuliaFormatter.p_block(style::JuliaFormatter.AbstractStyle, nodes::Vector{CSTParser.EXPR}, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:762 goto %58 if not JuliaFormatter.join_body
││ variable JuliaFormatter.join_body is not defined: goto %58 if not JuliaFormatter.join_body
│└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1130 JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1142 Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1142 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, 2)::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, 2)::Int64)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1143 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1090 JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1101 Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1101 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, 2)::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.-(Base.lastindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, 2)::Int64)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1102 Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, Int64})): Base.getindex(Base.getproperty(t::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, idx::Int64)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1781 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1786 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1788 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1791 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/pretty.jl:92 JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :args::Symbol)::Union{Nothing, Vector{CSTParser.EXPR}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(cst::CSTParser.EXPR, :args::Symbol)::Union{Nothing, Vector{CSTParser.EXPR}})
└─────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:627 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:631 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:633 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:637 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:643 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines, :max_padding)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:join_lines, :max_padding)}}(Core.tuple(true, padding::Int64)::Tuple{Bool, Int64})::NamedTuple{(:join_lines, :max_padding), Tuple{Bool, Int64}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines, :max_padding), Tuple{Bool, Int64}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines, :max_padding)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:join_lines, :max_padding)}}(Core.tuple(true, padding::Int64)::Tuple{Bool, Int64})::NamedTuple{(:join_lines, :max_padding), Tuple{Bool, Int64}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:648 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:651 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines, :max_padding)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:join_lines, :max_padding)}}(Core.tuple(true, padding::Int64)::Tuple{Bool, Int64})::NamedTuple{(:join_lines, :max_padding), Tuple{Bool, Int64}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines, :max_padding), Tuple{Bool, Int64}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines, :max_padding)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:join_lines, :max_padding)}}(Core.tuple(true, padding::Int64)::Tuple{Bool, Int64})::NamedTuple{(:join_lines, :max_padding), Tuple{Bool, Int64}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1585 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1591 JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:210 JuliaFormatter.format_text(text::AbstractString, Base.getproperty(fr::JuliaFormatter.FormatRule, :style::Symbol)::JuliaFormatter.AbstractStyle, Base.getproperty(fr::JuliaFormatter.FormatRule, :opts::Symbol)::JuliaFormatter.Options)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:346 JuliaFormatter.format_text(cst::CSTParser.EXPR, style::JuliaFormatter.AbstractStyle, JuliaFormatter.State(JuliaFormatter.Document(text::AbstractString)::JuliaFormatter.Document, opts::JuliaFormatter.Options)::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:381 JuliaFormatter.print_tree(io::IOBuffer, fst::Any, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/print.jl:54 Core.kwfunc(JuliaFormatter.print_tree)::JuliaFormatter.var"#print_tree##kw"(Core.apply_type(Core.NamedTuple, (:notcode_indent,)::Tuple{Symbol})::Type{NamedTuple{(:notcode_indent,)}}(Core.tuple(notcode_indent::Int64)::Tuple{Int64})::NamedTuple{(:notcode_indent,), Tuple{Int64}}, JuliaFormatter.print_tree, io::IOBuffer, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#print_tree##kw", NamedTuple{(:notcode_indent,), Tuple{Int64}}, typeof(JuliaFormatter.print_tree), IOBuffer, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.print_tree)::JuliaFormatter.var"#print_tree##kw"(Core.apply_type(Core.NamedTuple, (:notcode_indent,)::Tuple{Symbol})::Type{NamedTuple{(:notcode_indent,)}}(Core.tuple(notcode_indent::Int64)::Tuple{Int64})::NamedTuple{(:notcode_indent,), Tuple{Int64}}, JuliaFormatter.print_tree, io::IOBuffer, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││└─────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:273 JuliaFormatter.findfirst(#78::JuliaFormatter.var"#78#80", line::Any)
│┌ @ array.jl:1966 Base.findnext(testf::JuliaFormatter.var"#78#80", A::Union{AbstractString, AbstractArray}, Base.first(Base.keys(A::Union{AbstractString, AbstractArray})::Any)::Any)
││┌ @ bitarray.jl:1471 Base._findnext_int(testf::JuliaFormatter.var"#78#80", B::BitArray, Base.Int(start::Integer)::Int64)
│││┌ @ bitarray.jl:1473 testf::JuliaFormatter.var"#78#80"(false)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:273 JuliaFormatter.isspace(character::Bool)
│││││ no matching method found for call signature (Tuple{typeof(isspace), Bool}): JuliaFormatter.isspace(character::Bool)
││││└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:561 JuliaFormatter.p_macrostr_identifier(style::JuliaFormatter.AbstractStyle, a::CSTParser.EXPR, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:593 Base.getindex(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, JuliaFormatter.:(2, JuliaFormatter.prevind(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, idx::Union{Nothing, Int64})::Int64)::UnitRange{Int64})
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, JuliaFormatter.:(2, JuliaFormatter.prevind(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, idx::Union{Nothing, Int64})::Int64)::UnitRange{Int64})
│└──────────────────────────────────────────────────────────────────────────────────
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:593 JuliaFormatter.prevind(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, idx::Union{Nothing, Int64})
││ for 3 of union split cases, no matching method found for call signatures (Tuple{typeof(prevind), Nothing, Nothing}, Tuple{typeof(prevind), String, Nothing}, Tuple{typeof(prevind), Nothing, Int64})): JuliaFormatter.prevind(Base.getproperty(cst::CSTParser.EXPR, :val::Symbol)::Union{Nothing, String}, idx::Union{Nothing, Int64})
│└──────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:820 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:ignore_single_line,)::Tuple{Symbol})::Type{NamedTuple{(:ignore_single_line,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:ignore_single_line,), Tuple{Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, Base.getindex(cst::CSTParser.EXPR, 3)::Any, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:3 JuliaFormatter.#pretty#73(kwargs...::Base.Pairs{Symbol, Bool, Tuple{Symbol}, NamedTuple{(:ignore_single_line,), Tuple{Bool}}}, _3::typeof(JuliaFormatter.pretty), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:85 JuliaFormatter.p_colonopcall(style::JuliaFormatter.AbstractStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1373 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nonest, :nospace)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nonest, :nospace)}}(Core.tuple(true, nospace::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#pretty##kw", NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}, typeof(JuliaFormatter.pretty), JuliaFormatter.AbstractStyle, JuliaFormatter.FST, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nonest, :nospace)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nonest, :nospace)}}(Core.tuple(true, nospace::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.AbstractStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││└───────────────────────────────────────────────────────────────────────────────────
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1381 Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#add_node!##kw", NamedTuple{(:join_lines,), Tuple{Bool}}, typeof(JuliaFormatter.add_node!), JuliaFormatter.FST, CSTParser.EXPR, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.add_node!)::JuliaFormatter.var"#add_node!##kw"(Core.apply_type(Core.NamedTuple, (:join_lines,)::Tuple{Symbol})::Type{NamedTuple{(:join_lines,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:join_lines,), Tuple{Bool}}, JuliaFormatter.add_node!, t::JuliaFormatter.FST, n::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││└───────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:591 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :ref::Symbol)::Union{Nothing, Ref{CSTParser.EXPR}})
└────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:660 JuliaFormatter.walk(JuliaFormatter.unnest!, rhs::JuliaFormatter.FST, s::JuliaFormatter.State)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl:35 JuliaFormatter.walk(f::typeof(JuliaFormatter.unnest!), Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.walk), typeof(JuliaFormatter.unnest!), Nothing, JuliaFormatter.State, Int64})): JuliaFormatter.walk(f::typeof(JuliaFormatter.unnest!), Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│└──────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:677 JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(length), Nothing})): JuliaFormatter.length(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:167 Base.lastindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(lastindex), Nothing})): Base.lastindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})
└────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl:167 Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.:(1, JuliaFormatter.-(Base.lastindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, 1)::Int64)::UnitRange{Int64})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(getindex), Nothing, UnitRange{Int64}})): Base.getindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, JuliaFormatter.:(1, JuliaFormatter.-(Base.lastindex(Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}})::Int64, 1)::Int64)::UnitRange{Int64})
└────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:332 JuliaFormatter.#format_text#172(JuliaFormatter.DefaultStyle()::JuliaFormatter.DefaultStyle, Base.pairs(Core.NamedTuple()::NamedTuple{(), Tuple{}})::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, #self#::typeof(JuliaFormatter.format_text), text::AbstractString)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:332 JuliaFormatter.format_text(text::AbstractString, style::JuliaFormatter.DefaultStyle)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:336 JuliaFormatter.#format_text#173(Base.pairs(Core.NamedTuple()::NamedTuple{(), Tuple{}})::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, #self#::typeof(JuliaFormatter.format_text), text::AbstractString, style::JuliaFormatter.DefaultStyle)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:338 JuliaFormatter.format_text(text::AbstractString, style::JuliaFormatter.DefaultStyle, opts::JuliaFormatter.Options)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:346 JuliaFormatter.format_text(cst::CSTParser.EXPR, style::JuliaFormatter.DefaultStyle, JuliaFormatter.State(JuliaFormatter.Document(text::AbstractString)::JuliaFormatter.Document, opts::JuliaFormatter.Options)::JuliaFormatter.State)
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:351 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:3 JuliaFormatter.#pretty#73(Base.pairs(Core.NamedTuple()::NamedTuple{(), Tuple{}})::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, #self#::typeof(JuliaFormatter.pretty), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:27 JuliaFormatter.p_functiondef(style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:820 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:ignore_single_line,)::Tuple{Symbol})::Type{NamedTuple{(:ignore_single_line,)}}(Core.tuple(true)::Tuple{Bool})::NamedTuple{(:ignore_single_line,), Tuple{Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.DefaultStyle, Base.getindex(cst::CSTParser.EXPR, 3)::Any, s::JuliaFormatter.State)
│││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:3 JuliaFormatter.#pretty#73(kwargs...::Base.Pairs{Symbol, Bool, Tuple{Symbol}, NamedTuple{(:ignore_single_line,), Tuple{Bool}}}, _3::typeof(JuliaFormatter.pretty), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:83 JuliaFormatter.p_whereopcall(style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1585 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1591 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││└───────────────────────────────────────────────────────────────────────────────────
││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:85 JuliaFormatter.p_colonopcall(style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1373 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nonest, :nospace)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nonest, :nospace)}}(Core.tuple(true, nospace::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#pretty##kw", NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}, typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nonest, :nospace)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nonest, :nospace)}}(Core.tuple(true, nospace::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1375 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││└───────────────────────────────────────────────────────────────────────────────────
││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:119 JuliaFormatter.p_row(style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2098 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(true, true)::Tuple{Bool, Bool})::NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#pretty##kw", NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(true, true)::Tuple{Bool, Bool})::NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2105 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││└───────────────────────────────────────────────────────────────────────────────────
││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:129 JuliaFormatter.p_ref(style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2003 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:2005 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:67 JuliaFormatter.p_invisbrackets(style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1731 JuliaFormatter.#p_invisbrackets#101(false, false, #self#::typeof(JuliaFormatter.p_invisbrackets), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1745 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nonest, :nospace)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nonest, :nospace)}}(Core.tuple(nonest::Bool, nospace::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.DefaultStyle, Base.getindex(cst::CSTParser.EXPR, 2)::Any, s::JuliaFormatter.State)
││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:3 JuliaFormatter.#pretty#73(kwargs...::Base.Pairs{Symbol, Bool, Tuple{Symbol, Symbol}, NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}}, _3::typeof(JuliaFormatter.pretty), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:93 Core.kwfunc(JuliaFormatter.p_chainopcall)::JuliaFormatter.var"#p_chainopcall##kw"(Base.merge(Base.NamedTuple()::NamedTuple{(), Tuple{}}, kwargs::Base.Pairs{Symbol, Bool, Tuple{Symbol, Symbol}, NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}})::NamedTuple{(:nonest, :nospace), Tuple{Bool, Bool}}, JuliaFormatter.p_chainopcall, style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1299 JuliaFormatter.#p_chainopcall#93(nonest::Bool, nospace::Bool, _3::typeof(JuliaFormatter.p_chainopcall), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1323 Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(nospace::Bool, nonest::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#pretty##kw", NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): Core.kwfunc(JuliaFormatter.pretty)::JuliaFormatter.var"#pretty##kw"(Core.apply_type(Core.NamedTuple, (:nospace, :nonest)::Tuple{Symbol, Symbol})::Type{NamedTuple{(:nospace, :nonest)}}(Core.tuple(nospace::Bool, nonest::Bool)::Tuple{Bool, Bool})::NamedTuple{(:nospace, :nonest), Tuple{Bool, Bool}}, JuliaFormatter.pretty, style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1330 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1332 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
││││││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, JuliaFormatter.FST, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, a::Union{CSTParser.EXPR, JuliaFormatter.FST}, s::JuliaFormatter.State)
│││││││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:91 JuliaFormatter.p_unaryopcall(style::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1640 JuliaFormatter.#p_unaryopcall#99(true, #self#::typeof(JuliaFormatter.p_unaryopcall), ds::JuliaFormatter.DefaultStyle, cst::CSTParser.EXPR, s::JuliaFormatter.State)
│││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl:1644 JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, Base.getproperty(cst::CSTParser.EXPR, :head::Symbol)::Union{CSTParser.EXPR, Symbol}, s::JuliaFormatter.State)
││││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.pretty), JuliaFormatter.DefaultStyle, Symbol, JuliaFormatter.State})): JuliaFormatter.pretty(style::JuliaFormatter.DefaultStyle, Base.getproperty(cst::CSTParser.EXPR, :head::Symbol)::Union{CSTParser.EXPR, Symbol}, s::JuliaFormatter.State)
│││││││││└───────────────────────────────────────────────────────────────────────────────────
│││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:370 JuliaFormatter.nest!(style::JuliaFormatter.DefaultStyle, fst::Any, s::JuliaFormatter.State)
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:60 JuliaFormatter.n_import!(style::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:224 JuliaFormatter.n_using!(ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:214 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││││└────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:66 JuliaFormatter.n_whereopcall!(style::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:496 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││└────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:73 JuliaFormatter.n_conditionalopcall!(style::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:561 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││└────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:89 JuliaFormatter.n_curly!(style::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:311 JuliaFormatter.n_tuple!(ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:277 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(extra_margin::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(extra_margin::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││││└────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:117 JuliaFormatter.n_generator!(style::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:379 JuliaFormatter.#n_generator!#117(-1, #self#::typeof(JuliaFormatter.n_generator!), ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:433 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││││└────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:123 JuliaFormatter.n_block!(style::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:706 JuliaFormatter.#n_block!#128(-1, #self#::typeof(JuliaFormatter.n_block!), ds::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
││││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:741 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││││└────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:129 JuliaFormatter.n_for!(style::JuliaFormatter.DefaultStyle, fst::JuliaFormatter.FST, s::JuliaFormatter.State)
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:693 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││└────────────────────────────────────────────────────────────────────────────────
│││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:696 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││└────────────────────────────────────────────────────────────────────────────────
││││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl:137 Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
│││││││ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#nest!##kw", NamedTuple{(:extra_margin,), Tuple{Int64}}, typeof(JuliaFormatter.nest!), JuliaFormatter.DefaultStyle, Nothing, JuliaFormatter.State, Int64})): Core.kwfunc(JuliaFormatter.nest!)::JuliaFormatter.var"#nest!##kw"(Core.apply_type(Core.NamedTuple, (:extra_margin,)::Tuple{Symbol})::Type{NamedTuple{(:extra_margin,)}}(Core.tuple(Base.getproperty(fst::JuliaFormatter.FST, :extra_margin::Symbol)::Int64)::Tuple{Int64})::NamedTuple{(:extra_margin,), Tuple{Int64}}, JuliaFormatter.nest!, style::JuliaFormatter.DefaultStyle, Base.getproperty(fst::JuliaFormatter.FST, :nodes::Symbol)::Union{Nothing, Vector{JuliaFormatter.FST}}, s::JuliaFormatter.State, Base.getproperty(fst::JuliaFormatter.FST, :indent::Symbol)::Int64)
││││││└────────────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:531 JuliaFormatter.splitpath(full_path::Union{String, URIs.URI})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(splitpath), URIs.URI})): JuliaFormatter.splitpath(full_path::Union{String, URIs.URI})
└───────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:539 JuliaFormatter.format_file(full_path::Union{String, URIs.URI})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{typeof(JuliaFormatter.format_file), URIs.URI})): JuliaFormatter.format_file(full_path::Union{String, URIs.URI})
└───────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:539 Core.kwfunc(JuliaFormatter.format_file)::JuliaFormatter.var"#format_file##kw"(Base.merge(Base.NamedTuple()::NamedTuple{(), Tuple{}}, Core.getfield(Core.getfield(#self#::JuliaFormatter.var"#178#181", :opts::Symbol)::Core.Box, :contents::Symbol)::Any)::Any, JuliaFormatter.format_file, full_path::Union{String, URIs.URI})
│ for 1 of union split cases, no matching method found for call signatures (Tuple{JuliaFormatter.var"#format_file##kw", Any, typeof(JuliaFormatter.format_file), URIs.URI})): Core.kwfunc(JuliaFormatter.format_file)::JuliaFormatter.var"#format_file##kw"(Base.merge(Base.NamedTuple()::NamedTuple{(), Tuple{}}, Core.getfield(Core.getfield(#self#::JuliaFormatter.var"#178#181", :opts::Symbol)::Core.Box, :contents::Symbol)::Any)::Any, JuliaFormatter.format_file, full_path::Union{String, URIs.URI})
└───────────────────────────────────────────────────────────────────────────
┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:554 Core.kwfunc(JuliaFormatter.format)::JuliaFormatter.var"#format##kw"(Base.merge(Core.apply_type(Core.NamedTuple, (:style,)::Tuple{Symbol})::Type{NamedTuple{(:style,)}}(Core.tuple(style::JuliaFormatter.AbstractStyle)::Tuple{JuliaFormatter.AbstractStyle})::NamedTuple{(:style,), _A} where _A<:Tuple{JuliaFormatter.AbstractStyle}, options::Base.Pairs{Symbol, V, Tuple{Vararg{Symbol, N}}, NamedTuple{names, T}} where {V, N, names, T<:Tuple{Vararg{Any, N}}})::Any, JuliaFormatter.format, path::Any)
│┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:559 JuliaFormatter.#format#184(Core.tuple(options...::Any, _3::typeof(JuliaFormatter.format), mod::Module)::Tuple{Any, typeof(JuliaFormatter.format), Module}, args::Tuple{}...)
││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:559 JuliaFormatter.format(Core.tuple(JuliaFormatter.pkgdir(mod::Module)::Union{Nothing, String})::Tuple{Union{Nothing, String}}, args::Tuple{}...)
│││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:500 JuliaFormatter.#format#176(Base.pairs(Core.NamedTuple()::NamedTuple{(), Tuple{}})::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, #self#::typeof(JuliaFormatter.format), paths::Nothing)
││││┌ @ /Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl:516 Base.iterate(paths::Nothing)
│││││ no matching method found for call signature (Tuple{typeof(iterate), Nothing}): Base.iterate(paths::Nothing)
││││└───────────────────────────────────────────────────────────────────────────
(included_files = Set(["/Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/nest.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/nest_utils.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/document.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/options.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/state.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/fst.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/passes.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/print.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/markdown.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/nest.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/styles/blue/pretty.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/align.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/pretty.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/styles/yas/nest.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/JuliaFormatter.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/styles/default/pretty.jl", "/Users/aviatesk/julia/packages/JuliaFormatter/src/copied_from_documenter.jl"]), any_reported = true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment