diff --git a/src/IMASdd.jl b/src/IMASdd.jl index 597f823a..c83786da 100644 --- a/src/IMASdd.jl +++ b/src/IMASdd.jl @@ -4,6 +4,8 @@ import PrecompileTools import OrderedCollections import CoordinateConventions +const globals_threads_lock = ReentrantLock() + const document = OrderedCollections.OrderedDict() include("data_header.jl") diff --git a/src/data.jl b/src/data.jl index 1f8cbcf8..86e00599 100644 --- a/src/data.jl +++ b/src/data.jl @@ -75,7 +75,7 @@ struct Coordinates{T} end """ - coordinates(@nospecialize(ids::IDS), field::Symbol; coord_leaves::Union{Nothing,Vector{<:Union{Nothing,Symbol}}}=nothing, to_cocos::Int=internal_cocos) + coordinates(ids::IDS, field::Symbol; coord_leaves::Union{Nothing,Vector{<:Union{Nothing,Symbol}}}=nothing, to_cocos::Int=internal_cocos) Return two lists, one of coordinate names and the other with their values in the data structure @@ -85,7 +85,7 @@ Coordinate value is `missing` if the coordinate is missing in the data structure Use `coord_leaves` to override fetching coordinates of a given field """ -function coordinates(@nospecialize(ids::IDS), field::Symbol; coord_leaves::Union{Nothing,Vector{<:Union{Nothing,Symbol}}}=nothing) +function coordinates(ids::IDS, field::Symbol; coord_leaves::Union{Nothing,Vector{<:Union{Nothing,Symbol}}}=nothing) coord_names = String[coord for coord in info(ids, field).coordinates] coord_fills = Vector{Bool}(undef, length(coord_names)) @@ -248,11 +248,11 @@ function concrete_array_type(T) end """ - getproperty(@nospecialize(ids::IDS), field::Symbol; to_cocos::Int=user_cocos) + getproperty(ids::IDS, field::Symbol; to_cocos::Int=user_cocos) Return IDS value for requested field """ -function Base.getproperty(@nospecialize(ids::IDS), field::Symbol; to_cocos::Int=user_cocos) +function Base.getproperty(ids::IDS, field::Symbol; to_cocos::Int=user_cocos) # @assert isempty(cocos_transform(ids, field)) value = _getproperty(ids, field; to_cocos) if typeof(value) <: Exception @@ -262,13 +262,13 @@ function Base.getproperty(@nospecialize(ids::IDS), field::Symbol; to_cocos::Int= end """ - getproperty(@nospecialize(ids::IDS), field::Symbol, @nospecialize(default::Any); to_cocos::Int=user_cocos) + getproperty(ids::IDS, field::Symbol, @nospecialize(default::Any); to_cocos::Int=user_cocos) Return IDS value for requested field or `default` if field is missing NOTE: This is useful because accessing a `missing` field in an IDS would raise an error """ -function Base.getproperty(@nospecialize(ids::IDS), field::Symbol, @nospecialize(default::Any); to_cocos::Int=user_cocos) +function Base.getproperty(ids::IDS, field::Symbol, default::Any; to_cocos::Int=user_cocos) # @assert isempty(cocos_transform(ids, field)) value = _getproperty(ids, field; to_cocos) if typeof(value) <: Exception @@ -282,14 +282,14 @@ export getproperty push!(document[:Base], :getproperty) """ - getraw(@nospecialize(ids::IDS), field::Symbol) + getraw(ids::IDS, field::Symbol) Returns data, expression function, or missing - Does not raise an error on missing data, returns missing - Does not evaluate expressions """ -function getraw(@nospecialize(ids::IDS), field::Symbol) +function getraw(ids::IDS, field::Symbol) @assert field ∉ private_fields error("Use `getfield(ids, :$field)` instead of getraw(ids, :$field)") value = getfield(ids, field) @@ -298,10 +298,6 @@ function getraw(@nospecialize(ids::IDS), field::Symbol) # nothing to do for data structures return value - elseif field == :global_time - # global time - return value - elseif hasdata(ids, field) # has data return value @@ -356,7 +352,7 @@ Returns true if the ids field has no data (or expression) NOTE: By default it does not include nor evaluate expressions """ -function Base.isempty(@nospecialize(ids::IDS), field::Symbol; include_expr::Bool=false, eval_expr::Bool=false) +function Base.isempty(ids::IDS, field::Symbol; include_expr::Bool=false, eval_expr::Bool=false) value = getfield(ids, field) if typeof(value) <: IDSvector # filled arrays of structures return isempty(value) @@ -379,14 +375,14 @@ push!(document[:Base], :isempty) Returns if the ids has been frozen """ -function isfrozen(@nospecialize(ids::IDS)) +@inline function isfrozen(@nospecialize(ids::IDS)) return getfield(ids, :_frozen) end export isfrozen push!(document[:Base], :isfrozen) -function _getproperty(@nospecialize(ids::IDSraw), field::Symbol; to_cocos::Int) +Base.@constprop :aggressive function _getproperty(ids::IDSraw, field::Symbol; to_cocos::Int) if field ∈ private_fields error("Use `getfield(ids, :$field)` instead of `ids.$field`") end @@ -404,8 +400,10 @@ function _getproperty(@nospecialize(ids::IDSraw), field::Symbol; to_cocos::Int) return IMASmissingDataException(ids, field) end -function _getproperty(@nospecialize(ids::IDS), field::Symbol; to_cocos::Int) - if field ∈ private_fields +Base.@constprop :aggressive function _getproperty(ids::IDS, field::Symbol; to_cocos::Int) + if field === :global_time + return global_time(ids) + elseif field ∈ private_fields error("Use `getfield(ids, :$field)` instead of `ids.$field`") elseif !hasfield(typeof(ids), field) error("type $(typeof(ids)) has no field `$(field)`\nDid you mean:\n * $(join(keys(ids),"\n * "))") @@ -418,10 +416,6 @@ function _getproperty(@nospecialize(ids::IDS), field::Symbol; to_cocos::Int) # nothing to do for data structures return value - elseif field === :global_time - # nothing to do for global_time - return value - elseif hasdata(ids, field) # has data valid = true @@ -444,7 +438,6 @@ function _getproperty(@nospecialize(ids::IDS), field::Symbol; to_cocos::Int) if onetime # onetime_expression #println("onetime_expression: $(location(ids, field))") setproperty!(ids, field, value; error_on_missing_coordinates=false) - expression_onetime_weakref[objectid(ids)] = WeakRef(ids) end valid = true break @@ -471,21 +464,24 @@ function _getproperty(@nospecialize(ids::IDS), field::Symbol; to_cocos::Int) end end -function _setproperty!(@nospecialize(ids::IDS), field::Symbol, value::Union{AbstractRange,StaticArraysCore.SVector,StaticArraysCore.MVector,SubArray}; from_cocos::Int) +Base.@constprop :aggressive function _setproperty!(ids::IDS, field::Symbol, value::Union{AbstractRange,StaticArraysCore.SVector,StaticArraysCore.MVector,SubArray}; from_cocos::Int) return _setproperty!(ids, field, collect(value); from_cocos) end """ - _setproperty!(@nospecialize(ids::IDS), field::Symbol, value::Any) + _setproperty!(ids::IDS, field::Symbol, value::Any) Like setfield! but also add to list of filled fields """ -function _setproperty!(@nospecialize(ids::IDS), field::Symbol, value::Any; from_cocos::Int) - T = eltype(ids) - if field in private_fields +Base.@constprop :aggressive function _setproperty!(ids::IDS, field::Symbol, value::Any; from_cocos::Int) + if field == :global_time + return global_time(ids, value) + elseif field in private_fields error("Use `setfield!(ids, :$field, ...)` instead of _setproperty!(ids, :$field ...)") end + T = eltype(ids) + # nice error if type is wrong tp = fieldtype_typeof(ids, field) if !(typeof(value) <: tp) @@ -505,7 +501,7 @@ function _setproperty!(@nospecialize(ids::IDS), field::Symbol, value::Any; from_ setfield!(value, :_parent, WeakRef(ids)) end - # may need cocos conversion + # may need cocos conversion if (from_cocos != internal_cocos) && (eltype(value) <: Real) cocos_multiplier = transform_cocos_coming_in(ids, field, from_cocos) if cocos_multiplier != 1.0 @@ -532,10 +528,8 @@ end Utility function to set the _filled field of an IDS and the upstream parents """ -function add_filled(@nospecialize(ids::IDS), field::Symbol) - if field !== :global_time - push!(getfield(ids, :_filled), field) - end +@inline function add_filled(@nospecialize(ids::IDS), field::Symbol) + push!(getfield(ids, :_filled), field) return add_filled(ids) end @@ -584,16 +578,16 @@ end """ Base.setproperty!(ids::IDS, field::Symbol, value; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true) """ -function Base.setproperty!(@nospecialize(ids::IDS), field::Symbol, value::Any; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true, from_cocos::Int=user_cocos) +function Base.setproperty!(ids::IDS, field::Symbol, value::Any; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true, from_cocos::Int=user_cocos) return _setproperty!(ids, field, value; from_cocos) end """ - Base.setproperty!(@nospecialize(ids::IDS), field::Symbol, value::AbstractArray{<:IDS}; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true) + Base.setproperty!(ids::IDS, field::Symbol, value::AbstractArray{<:IDS}; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true) Handle setproperty of entire vectors of IDS structures at once (ids.field is of type IDSvector) """ -function Base.setproperty!(@nospecialize(ids::IDS), field::Symbol, value::AbstractArray{<:IDS}; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true, from_cocos::Int=user_cocos) +function Base.setproperty!(ids::IDS, field::Symbol, value::AbstractArray{<:IDS}; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true, from_cocos::Int=user_cocos) orig = getfield(ids, field) empty!(orig) append!(orig, value) @@ -602,13 +596,13 @@ function Base.setproperty!(@nospecialize(ids::IDS), field::Symbol, value::Abstra end """ - Base.setproperty!(@nospecialize(ids::IDS), field::Symbol, value::AbstractArray; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true) + Base.setproperty!(ids::IDS, field::Symbol, value::AbstractArray; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true) Ensures coordinates are set before the data that depends on those coordinates. If `skip_non_coordinates` is set, then fields that are not coordinates will be silently skipped. """ -function Base.setproperty!(@nospecialize(ids::IDS), field::Symbol, value::AbstractArray; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true, from_cocos::Int=user_cocos) +function Base.setproperty!(ids::IDS, field::Symbol, value::AbstractArray; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true, from_cocos::Int=user_cocos) if field ∉ getfield(ids, :_filled) && error_on_missing_coordinates # figure out the coordinates coords = coordinates(ids, field) @@ -626,7 +620,7 @@ function Base.setproperty!(@nospecialize(ids::IDS), field::Symbol, value::Abstra return _setproperty!(ids, field, value; from_cocos) end -function Base.setproperty!(@nospecialize(ids::IDS), field::Symbol, value::AbstractDict; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true, from_cocos::Int=user_cocos) +function Base.setproperty!(ids::IDS, field::Symbol, value::AbstractDict; skip_non_coordinates::Bool=false, error_on_missing_coordinates::Bool=true, from_cocos::Int=user_cocos) return _setproperty!(ids, field, string(value); from_cocos) end @@ -766,6 +760,15 @@ function Base.pop!(@nospecialize(ids::IDSvector{T})) where {T<:IDSvectorElement} return tmp end +function Base.popfirst!(@nospecialize(ids::IDSvector{T})) where {T<:IDSvectorElement} + tmp = popfirst!(ids._value) + if isempty(ids) + del_filled(ids) + end + return tmp +end + + """ merge!(@nospecialize(target_ids::T), @nospecialize(source_ids::T)) where {T<:IDS} """ @@ -845,7 +848,7 @@ Returns generator of fields in a IDS whether they are filled with data or not """ function Base.keys(@nospecialize(ids::IDS)) ns = NoSpecialize(ids) - return (field for field in fieldnames(typeof(ns.ids)) if field ∉ private_fields && field !== :global_time) + return (field for field in fieldnames(typeof(ns.ids)) if field ∉ private_fields) end """ @@ -854,7 +857,7 @@ end Returns generator of fields with data in a IDS NOTE: By default it includes expressions, but does not evaluate them. - It assumes that a IDStop without data will also have no valid expressions. + It assumes that a IDStop without data will also have no valid expressions. """ function keys_no_missing(@nospecialize(ids::IDS); include_expr::Bool=true, eval_expr::Bool=false) ns = NoSpecialize(ids) @@ -913,7 +916,7 @@ end #= ====== =# function Base.empty!(@nospecialize(ids::T)) where {T<:IDS} tmp = typeof(ids)() - @assert isempty(thread_in_expression(ids)) + @assert isempty(thread_in_expression(ids)) for item in fieldnames(typeof(ids)) if item === :_filled empty!(getfield(ids, :_filled)) @@ -951,39 +954,6 @@ end #= ======= =# # resize! # #= ======= =# -function Base.resize!(@nospecialize(ids::IDSvector{T}); wipe::Bool=true) where {T<:IDSvectorTimeElement} - time0 = global_time(ids) - return resize!(ids, time0; wipe) -end - -function Base.resize!(@nospecialize(ids::IDSvector{T}), time0::Float64; wipe::Bool=true) where {T<:IDSvectorTimeElement} - if isempty(ids) || (time0 > ids[end].time) - k = length(ids) + 1 - elseif time0 == ids[end].time - k = length(ids) - else - for k in eachindex(ids) - if time0 == ids[k].time - if wipe - empty!(ids[k]) - end - return ids[k] - end - end - error("Cannot resize structure at time $time0 for a time array structure already ranging between $(ids[1].time) and $(ids[end].time)") - end - - resize!(ids, k; wipe) - ids[k].time = time0 # note IDSvectorTimeElement should always have a .time field - - unifm_time = time_array_parent(ids) - if isempty(unifm_time) || time0 != unifm_time[end] - push!(unifm_time, time0) - end - - return ids[k] -end - function Base.resize!(@nospecialize(ids::T), n::Int; wipe::Bool=true) where {T<:IDSvector{<:IDSvectorElement}} if n > length(ids) for k in length(ids):n-1 @@ -1036,7 +1006,7 @@ function Base.resize!( return _set_conditions(match, conditions...) elseif length(matches) > 1 if error_multiple_matches - error("Multiple entries $([k for k in keys(matches)]) match resize! conditions: $conditions") + error("Multiple entries $([k for k in keys(matches)]) of $(location(ids)) match resize!() conditions: $conditions") else for (kk, k) in reverse!(collect(enumerate(sort!(collect(keys(matches)))))) if kk == 1 @@ -1470,9 +1440,9 @@ function selective_copy!(@nospecialize(h_in::IDS), @nospecialize(h_out::IDS), pa end if typeof(h_out) <: IMASdd.dd if time0 != NaN - h_out.global_time = time0 + global_time(h_out, time0) else - h_out.global_time = h_in.global_time + global_time(h_out, global_time(h_in)) end end return nothing diff --git a/src/data_header.jl b/src/data_header.jl index 527eba10..310ac311 100644 --- a/src/data_header.jl +++ b/src/data_header.jl @@ -22,9 +22,15 @@ abstract type IDSvectorTimeElement{T} <: IDSvectorElement{T} end mutable struct IDSvector{T} <: AbstractVector{T} _value::Vector{T} _parent::WeakRef - function IDSvector(ids::Vector{T}) where {T<:IDSvectorElement} - return new{T}(ids, WeakRef(nothing)) - end + _threads_lock::ReentrantLock +end + +function IDSvector(ids::Vector{T}) where {T<:IDSvectorElement} + return IDSvector{T}(ids, WeakRef(nothing), ReentrantLock()) +end + +function IDSvector{T}() where {T} + return IDSvector(T[]) end struct Info{T<:Tuple{Vararg{String}}} @@ -36,10 +42,8 @@ struct Info{T<:Tuple{Vararg{String}}} cocos_transform::Vector{String} end -IDSvector{T}() where {T} = IDSvector(T[]) - -@inline function Base.eltype(@nospecialize(ids::IDS)) - return typeof(ids).parameters[1] +@inline function Base.eltype(@nospecialize(ids::IDS{T})) where {T} + return T end -const private_fields = (:_filled, :_frozen, :_threads_lock, :_in_expression, :_ref, :_parent, :_aux) +const private_fields = (:_filled, :_frozen, :_threads_lock, :_in_expression, :_ref, :_parent, :_aux, :_global_time) diff --git a/src/dd.jl b/src/dd.jl index 62a978f7..2a93173e 100644 --- a/src/dd.jl +++ b/src/dd.jl @@ -12,8 +12,8 @@ mutable struct workflow__time_loop__workflow_cycle___component{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__time_loop__workflow_cycle___component} - _parent :: WeakRef + _ref::Union{Nothing,workflow__time_loop__workflow_cycle___component} + _parent::WeakRef end function workflow__time_loop__workflow_cycle___component{T}() where T @@ -24,14 +24,14 @@ end workflow__time_loop__workflow_cycle___component() = workflow__time_loop__workflow_cycle___component{Float64}() mutable struct workflow__time_loop__workflow_cycle{T} <: IDSvectorTimeElement{T} - var"component" :: IDSvector{workflow__time_loop__workflow_cycle___component{T}} + var"component"::IDSvector{workflow__time_loop__workflow_cycle___component{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__time_loop__workflow_cycle} - _parent :: WeakRef + _ref::Union{Nothing,workflow__time_loop__workflow_cycle} + _parent::WeakRef end function workflow__time_loop__workflow_cycle{T}() where T @@ -53,8 +53,8 @@ mutable struct workflow__time_loop__component{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__time_loop__component} - _parent :: WeakRef + _ref::Union{Nothing,workflow__time_loop__component} + _parent::WeakRef end function workflow__time_loop__component{T}() where T @@ -65,16 +65,16 @@ end workflow__time_loop__component() = workflow__time_loop__component{Float64}() mutable struct workflow__time_loop{T} <: IDS{T} - var"component" :: IDSvector{workflow__time_loop__component{T}} + var"component"::IDSvector{workflow__time_loop__component{T}} var"time_end" :: T var"time_end_σ" :: T - var"workflow_cycle" :: IDSvector{workflow__time_loop__workflow_cycle{T}} + var"workflow_cycle"::IDSvector{workflow__time_loop__workflow_cycle{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__time_loop} - _parent :: WeakRef + _ref::Union{Nothing,workflow__time_loop} + _parent::WeakRef end function workflow__time_loop{T}() where T @@ -94,8 +94,8 @@ mutable struct workflow__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__version_put} + _parent::WeakRef end function workflow__ids_properties__version_put{T}() where T @@ -112,8 +112,8 @@ mutable struct workflow__ids_properties__provenance__node{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__provenance__node} + _parent::WeakRef end function workflow__ids_properties__provenance__node{T}() where T @@ -124,13 +124,13 @@ end workflow__ids_properties__provenance__node() = workflow__ids_properties__provenance__node{Float64}() mutable struct workflow__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{workflow__ids_properties__provenance__node{T}} + var"node"::IDSvector{workflow__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__provenance} + _parent::WeakRef end function workflow__ids_properties__provenance{T}() where T @@ -152,8 +152,8 @@ mutable struct workflow__ids_properties__plugins__node___readback{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__plugins__node___readback} + _parent::WeakRef end function workflow__ids_properties__plugins__node___readback{T}() where T @@ -174,8 +174,8 @@ mutable struct workflow__ids_properties__plugins__node___put_operation{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function workflow__ids_properties__plugins__node___put_operation{T}() where T @@ -196,8 +196,8 @@ mutable struct workflow__ids_properties__plugins__node___get_operation{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function workflow__ids_properties__plugins__node___get_operation{T}() where T @@ -208,16 +208,16 @@ end workflow__ids_properties__plugins__node___get_operation() = workflow__ids_properties__plugins__node___get_operation{Float64}() mutable struct workflow__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{workflow__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{workflow__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{workflow__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{workflow__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{workflow__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{workflow__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__plugins__node} + _parent::WeakRef end function workflow__ids_properties__plugins__node{T}() where T @@ -240,8 +240,8 @@ mutable struct workflow__ids_properties__plugins__infrastructure_put{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function workflow__ids_properties__plugins__infrastructure_put{T}() where T @@ -261,8 +261,8 @@ mutable struct workflow__ids_properties__plugins__infrastructure_get{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function workflow__ids_properties__plugins__infrastructure_get{T}() where T @@ -273,15 +273,15 @@ end workflow__ids_properties__plugins__infrastructure_get() = workflow__ids_properties__plugins__infrastructure_get{Float64}() mutable struct workflow__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: workflow__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: workflow__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{workflow__ids_properties__plugins__node{T}} + var"infrastructure_get"::workflow__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::workflow__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{workflow__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__plugins} + _parent::WeakRef end function workflow__ids_properties__plugins{T}() where T @@ -302,8 +302,8 @@ mutable struct workflow__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties__occurrence_type} + _parent::WeakRef end function workflow__ids_properties__occurrence_type{T}() where T @@ -319,17 +319,17 @@ mutable struct workflow__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: workflow__ids_properties__occurrence_type{T} - var"plugins" :: workflow__ids_properties__plugins{T} - var"provenance" :: workflow__ids_properties__provenance{T} + var"occurrence_type"::workflow__ids_properties__occurrence_type{T} + var"plugins"::workflow__ids_properties__plugins{T} + var"provenance"::workflow__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: workflow__ids_properties__version_put{T} + var"version_put"::workflow__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,workflow__ids_properties} + _parent::WeakRef end function workflow__ids_properties{T}() where T @@ -354,8 +354,8 @@ mutable struct workflow__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__code__library} - _parent :: WeakRef + _ref::Union{Nothing,workflow__code__library} + _parent::WeakRef end function workflow__code__library{T}() where T @@ -368,7 +368,7 @@ workflow__code__library() = workflow__code__library{Float64}() mutable struct workflow__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{workflow__code__library{T}} + var"library"::IDSvector{workflow__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -378,8 +378,8 @@ mutable struct workflow__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow__code} - _parent :: WeakRef + _ref::Union{Nothing,workflow__code} + _parent::WeakRef end function workflow__code{T}() where T @@ -391,16 +391,16 @@ end workflow__code() = workflow__code{Float64}() mutable struct workflow{T} <: IDStop{T} - var"code" :: workflow__code{T} - var"ids_properties" :: workflow__ids_properties{T} + var"code"::workflow__code{T} + var"ids_properties"::workflow__ids_properties{T} var"time" :: Vector{Float64} - var"time_loop" :: workflow__time_loop{T} + var"time_loop"::workflow__time_loop{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,workflow} - _parent :: WeakRef + _ref::Union{Nothing,workflow} + _parent::WeakRef end function workflow{T}() where T @@ -422,8 +422,8 @@ mutable struct waves__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,waves__vacuum_toroidal_field} + _parent::WeakRef end function waves__vacuum_toroidal_field{T}() where T @@ -442,8 +442,8 @@ mutable struct waves__magnetic_axis{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,waves__magnetic_axis} + _parent::WeakRef end function waves__magnetic_axis{T}() where T @@ -461,8 +461,8 @@ mutable struct waves__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__version_put} + _parent::WeakRef end function waves__ids_properties__version_put{T}() where T @@ -479,8 +479,8 @@ mutable struct waves__ids_properties__provenance__node{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__provenance__node} + _parent::WeakRef end function waves__ids_properties__provenance__node{T}() where T @@ -491,13 +491,13 @@ end waves__ids_properties__provenance__node() = waves__ids_properties__provenance__node{Float64}() mutable struct waves__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{waves__ids_properties__provenance__node{T}} + var"node"::IDSvector{waves__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__provenance} + _parent::WeakRef end function waves__ids_properties__provenance{T}() where T @@ -519,8 +519,8 @@ mutable struct waves__ids_properties__plugins__node___readback{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__plugins__node___readback} + _parent::WeakRef end function waves__ids_properties__plugins__node___readback{T}() where T @@ -541,8 +541,8 @@ mutable struct waves__ids_properties__plugins__node___put_operation{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function waves__ids_properties__plugins__node___put_operation{T}() where T @@ -563,8 +563,8 @@ mutable struct waves__ids_properties__plugins__node___get_operation{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function waves__ids_properties__plugins__node___get_operation{T}() where T @@ -575,16 +575,16 @@ end waves__ids_properties__plugins__node___get_operation() = waves__ids_properties__plugins__node___get_operation{Float64}() mutable struct waves__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{waves__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{waves__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{waves__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{waves__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{waves__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{waves__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__plugins__node} + _parent::WeakRef end function waves__ids_properties__plugins__node{T}() where T @@ -607,8 +607,8 @@ mutable struct waves__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function waves__ids_properties__plugins__infrastructure_put{T}() where T @@ -628,8 +628,8 @@ mutable struct waves__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function waves__ids_properties__plugins__infrastructure_get{T}() where T @@ -640,15 +640,15 @@ end waves__ids_properties__plugins__infrastructure_get() = waves__ids_properties__plugins__infrastructure_get{Float64}() mutable struct waves__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: waves__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: waves__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{waves__ids_properties__plugins__node{T}} + var"infrastructure_get"::waves__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::waves__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{waves__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__plugins} + _parent::WeakRef end function waves__ids_properties__plugins{T}() where T @@ -669,8 +669,8 @@ mutable struct waves__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties__occurrence_type} + _parent::WeakRef end function waves__ids_properties__occurrence_type{T}() where T @@ -686,17 +686,17 @@ mutable struct waves__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: waves__ids_properties__occurrence_type{T} - var"plugins" :: waves__ids_properties__plugins{T} - var"provenance" :: waves__ids_properties__provenance{T} + var"occurrence_type"::waves__ids_properties__occurrence_type{T} + var"plugins"::waves__ids_properties__plugins{T} + var"provenance"::waves__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: waves__ids_properties__version_put{T} + var"version_put"::waves__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,waves__ids_properties} + _parent::WeakRef end function waves__ids_properties{T}() where T @@ -718,8 +718,8 @@ mutable struct waves__coherent_wave___wave_solver_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___wave_solver_type} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___wave_solver_type} + _parent::WeakRef end function waves__coherent_wave___wave_solver_type{T}() where T @@ -751,8 +751,8 @@ mutable struct waves__coherent_wave___profiles_2d___ion___state{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___ion___state} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___ion___state{T}() where T @@ -772,8 +772,8 @@ mutable struct waves__coherent_wave___profiles_2d___ion___element{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___ion___element} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___ion___element{T}() where T @@ -784,7 +784,7 @@ end waves__coherent_wave___profiles_2d___ion___element() = waves__coherent_wave___profiles_2d___ion___element{Float64}() mutable struct waves__coherent_wave___profiles_2d___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{waves__coherent_wave___profiles_2d___ion___element{T}} + var"element"::IDSvector{waves__coherent_wave___profiles_2d___ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"power_density_fast" :: Matrix{<:T} @@ -795,15 +795,15 @@ mutable struct waves__coherent_wave___profiles_2d___ion{T} <: IDSvectorIonElemen var"power_density_thermal_σ" :: Matrix{<:T} var"power_density_thermal_n_tor" :: Array{<:T, 3} var"power_density_thermal_n_tor_σ" :: Array{<:T, 3} - var"state" :: IDSvector{waves__coherent_wave___profiles_2d___ion___state{T}} + var"state"::IDSvector{waves__coherent_wave___profiles_2d___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___ion} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___ion} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___ion{T}() where T @@ -823,8 +823,8 @@ mutable struct waves__coherent_wave___profiles_2d___grid__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___grid__type} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___grid__type} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___grid__type{T}() where T @@ -849,7 +849,7 @@ mutable struct waves__coherent_wave___profiles_2d___grid{T} <: IDS{T} var"theta_geometric_σ" :: Matrix{<:T} var"theta_straight" :: Matrix{<:T} var"theta_straight_σ" :: Matrix{<:T} - var"type" :: waves__coherent_wave___profiles_2d___grid__type{T} + var"type"::waves__coherent_wave___profiles_2d___grid__type{T} var"volume" :: Matrix{<:T} var"volume_σ" :: Matrix{<:T} var"z" :: Matrix{<:T} @@ -858,8 +858,8 @@ mutable struct waves__coherent_wave___profiles_2d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___grid} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___grid} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___grid{T}() where T @@ -883,8 +883,8 @@ mutable struct waves__coherent_wave___profiles_2d___electrons{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___electrons} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___electrons{T}() where T @@ -903,8 +903,8 @@ mutable struct waves__coherent_wave___profiles_2d___e_field_n_tor___plus{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___e_field_n_tor___plus} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___e_field_n_tor___plus} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___e_field_n_tor___plus{T}() where T @@ -923,8 +923,8 @@ mutable struct waves__coherent_wave___profiles_2d___e_field_n_tor___parallel{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___e_field_n_tor___parallel} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___e_field_n_tor___parallel} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___e_field_n_tor___parallel{T}() where T @@ -943,8 +943,8 @@ mutable struct waves__coherent_wave___profiles_2d___e_field_n_tor___minus{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___e_field_n_tor___minus} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___e_field_n_tor___minus} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___e_field_n_tor___minus{T}() where T @@ -955,15 +955,15 @@ end waves__coherent_wave___profiles_2d___e_field_n_tor___minus() = waves__coherent_wave___profiles_2d___e_field_n_tor___minus{Float64}() mutable struct waves__coherent_wave___profiles_2d___e_field_n_tor{T} <: IDSvectorStaticElement{T} - var"minus" :: waves__coherent_wave___profiles_2d___e_field_n_tor___minus{T} - var"parallel" :: waves__coherent_wave___profiles_2d___e_field_n_tor___parallel{T} - var"plus" :: waves__coherent_wave___profiles_2d___e_field_n_tor___plus{T} + var"minus"::waves__coherent_wave___profiles_2d___e_field_n_tor___minus{T} + var"parallel"::waves__coherent_wave___profiles_2d___e_field_n_tor___parallel{T} + var"plus"::waves__coherent_wave___profiles_2d___e_field_n_tor___plus{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d___e_field_n_tor} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d___e_field_n_tor} + _parent::WeakRef end function waves__coherent_wave___profiles_2d___e_field_n_tor{T}() where T @@ -977,10 +977,10 @@ end waves__coherent_wave___profiles_2d___e_field_n_tor() = waves__coherent_wave___profiles_2d___e_field_n_tor{Float64}() mutable struct waves__coherent_wave___profiles_2d{T} <: IDSvectorTimeElement{T} - var"e_field_n_tor" :: IDSvector{waves__coherent_wave___profiles_2d___e_field_n_tor{T}} - var"electrons" :: waves__coherent_wave___profiles_2d___electrons{T} - var"grid" :: waves__coherent_wave___profiles_2d___grid{T} - var"ion" :: IDSvector{waves__coherent_wave___profiles_2d___ion{T}} + var"e_field_n_tor"::IDSvector{waves__coherent_wave___profiles_2d___e_field_n_tor{T}} + var"electrons"::waves__coherent_wave___profiles_2d___electrons{T} + var"grid"::waves__coherent_wave___profiles_2d___grid{T} + var"ion"::IDSvector{waves__coherent_wave___profiles_2d___ion{T}} var"n_tor" :: Vector{Int} var"power_density" :: Matrix{<:T} var"power_density_σ" :: Matrix{<:T} @@ -991,8 +991,8 @@ mutable struct waves__coherent_wave___profiles_2d{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_2d} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_2d} + _parent::WeakRef end function waves__coherent_wave___profiles_2d{T}() where T @@ -1036,8 +1036,8 @@ mutable struct waves__coherent_wave___profiles_1d___ion___state{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___ion___state} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___ion___state{T}() where T @@ -1057,8 +1057,8 @@ mutable struct waves__coherent_wave___profiles_1d___ion___element{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___ion___element} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___ion___element{T}() where T @@ -1069,7 +1069,7 @@ end waves__coherent_wave___profiles_1d___ion___element() = waves__coherent_wave___profiles_1d___ion___element{Float64}() mutable struct waves__coherent_wave___profiles_1d___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{waves__coherent_wave___profiles_1d___ion___element{T}} + var"element"::IDSvector{waves__coherent_wave___profiles_1d___ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"power_density_fast" :: Vector{<:T} @@ -1088,15 +1088,15 @@ mutable struct waves__coherent_wave___profiles_1d___ion{T} <: IDSvectorIonElemen var"power_inside_thermal_σ" :: Vector{<:T} var"power_inside_thermal_n_tor" :: Matrix{<:T} var"power_inside_thermal_n_tor_σ" :: Matrix{<:T} - var"state" :: IDSvector{waves__coherent_wave___profiles_1d___ion___state{T}} + var"state"::IDSvector{waves__coherent_wave___profiles_1d___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___ion} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___ion{T}() where T @@ -1131,8 +1131,8 @@ mutable struct waves__coherent_wave___profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___grid} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___grid{T}() where T @@ -1163,8 +1163,8 @@ mutable struct waves__coherent_wave___profiles_1d___electrons{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___electrons} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___electrons{T}() where T @@ -1183,8 +1183,8 @@ mutable struct waves__coherent_wave___profiles_1d___e_field_n_tor___plus{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___e_field_n_tor___plus} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___e_field_n_tor___plus} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___e_field_n_tor___plus{T}() where T @@ -1203,8 +1203,8 @@ mutable struct waves__coherent_wave___profiles_1d___e_field_n_tor___parallel{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___e_field_n_tor___parallel} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___e_field_n_tor___parallel} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___e_field_n_tor___parallel{T}() where T @@ -1223,8 +1223,8 @@ mutable struct waves__coherent_wave___profiles_1d___e_field_n_tor___minus{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___e_field_n_tor___minus} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___e_field_n_tor___minus} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___e_field_n_tor___minus{T}() where T @@ -1235,15 +1235,15 @@ end waves__coherent_wave___profiles_1d___e_field_n_tor___minus() = waves__coherent_wave___profiles_1d___e_field_n_tor___minus{Float64}() mutable struct waves__coherent_wave___profiles_1d___e_field_n_tor{T} <: IDSvectorStaticElement{T} - var"minus" :: waves__coherent_wave___profiles_1d___e_field_n_tor___minus{T} - var"parallel" :: waves__coherent_wave___profiles_1d___e_field_n_tor___parallel{T} - var"plus" :: waves__coherent_wave___profiles_1d___e_field_n_tor___plus{T} + var"minus"::waves__coherent_wave___profiles_1d___e_field_n_tor___minus{T} + var"parallel"::waves__coherent_wave___profiles_1d___e_field_n_tor___parallel{T} + var"plus"::waves__coherent_wave___profiles_1d___e_field_n_tor___plus{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d___e_field_n_tor} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d___e_field_n_tor} + _parent::WeakRef end function waves__coherent_wave___profiles_1d___e_field_n_tor{T}() where T @@ -1265,10 +1265,10 @@ mutable struct waves__coherent_wave___profiles_1d{T} <: IDSvectorTimeElement{T} var"current_tor_inside_σ" :: Vector{<:T} var"current_tor_inside_n_tor" :: Matrix{<:T} var"current_tor_inside_n_tor_σ" :: Matrix{<:T} - var"e_field_n_tor" :: IDSvector{waves__coherent_wave___profiles_1d___e_field_n_tor{T}} - var"electrons" :: waves__coherent_wave___profiles_1d___electrons{T} - var"grid" :: waves__coherent_wave___profiles_1d___grid{T} - var"ion" :: IDSvector{waves__coherent_wave___profiles_1d___ion{T}} + var"e_field_n_tor"::IDSvector{waves__coherent_wave___profiles_1d___e_field_n_tor{T}} + var"electrons"::waves__coherent_wave___profiles_1d___electrons{T} + var"grid"::waves__coherent_wave___profiles_1d___grid{T} + var"ion"::IDSvector{waves__coherent_wave___profiles_1d___ion{T}} var"k_perpendicular" :: Matrix{<:T} var"k_perpendicular_σ" :: Matrix{<:T} var"n_tor" :: Vector{Int} @@ -1285,8 +1285,8 @@ mutable struct waves__coherent_wave___profiles_1d{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___profiles_1d} + _parent::WeakRef end function waves__coherent_wave___profiles_1d{T}() where T @@ -1308,8 +1308,8 @@ mutable struct waves__coherent_wave___identifier__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___identifier__type} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___identifier__type} + _parent::WeakRef end function waves__coherent_wave___identifier__type{T}() where T @@ -1322,13 +1322,13 @@ waves__coherent_wave___identifier__type() = waves__coherent_wave___identifier__t mutable struct waves__coherent_wave___identifier{T} <: IDS{T} var"antenna_name" :: String var"index_in_antenna" :: Int - var"type" :: waves__coherent_wave___identifier__type{T} + var"type"::waves__coherent_wave___identifier__type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___identifier} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___identifier} + _parent::WeakRef end function waves__coherent_wave___identifier{T}() where T @@ -1361,8 +1361,8 @@ mutable struct waves__coherent_wave___global_quantities___ion___state{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___global_quantities___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___global_quantities___ion___state} + _parent::WeakRef end function waves__coherent_wave___global_quantities___ion___state{T}() where T @@ -1382,8 +1382,8 @@ mutable struct waves__coherent_wave___global_quantities___ion___element{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___global_quantities___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___global_quantities___ion___element} + _parent::WeakRef end function waves__coherent_wave___global_quantities___ion___element{T}() where T @@ -1395,7 +1395,7 @@ waves__coherent_wave___global_quantities___ion___element() = waves__coherent_wav mutable struct waves__coherent_wave___global_quantities___ion{T} <: IDSvectorIonElement{T} var"distribution_assumption" :: Int - var"element" :: IDSvector{waves__coherent_wave___global_quantities___ion___element{T}} + var"element"::IDSvector{waves__coherent_wave___global_quantities___ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"power_fast" :: T @@ -1406,15 +1406,15 @@ mutable struct waves__coherent_wave___global_quantities___ion{T} <: IDSvectorIon var"power_thermal_σ" :: T var"power_thermal_n_tor" :: Vector{<:T} var"power_thermal_n_tor_σ" :: Vector{<:T} - var"state" :: IDSvector{waves__coherent_wave___global_quantities___ion___state{T}} + var"state"::IDSvector{waves__coherent_wave___global_quantities___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___global_quantities___ion} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___global_quantities___ion} + _parent::WeakRef end function waves__coherent_wave___global_quantities___ion{T}() where T @@ -1440,8 +1440,8 @@ mutable struct waves__coherent_wave___global_quantities___electrons{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___global_quantities___electrons} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___global_quantities___electrons} + _parent::WeakRef end function waves__coherent_wave___global_quantities___electrons{T}() where T @@ -1456,10 +1456,10 @@ mutable struct waves__coherent_wave___global_quantities{T} <: IDSvectorTimeEleme var"current_tor_σ" :: T var"current_tor_n_tor" :: Vector{<:T} var"current_tor_n_tor_σ" :: Vector{<:T} - var"electrons" :: waves__coherent_wave___global_quantities___electrons{T} + var"electrons"::waves__coherent_wave___global_quantities___electrons{T} var"frequency" :: T var"frequency_σ" :: T - var"ion" :: IDSvector{waves__coherent_wave___global_quantities___ion{T}} + var"ion"::IDSvector{waves__coherent_wave___global_quantities___ion{T}} var"n_tor" :: Vector{Int} var"power" :: T var"power_σ" :: T @@ -1470,8 +1470,8 @@ mutable struct waves__coherent_wave___global_quantities{T} <: IDSvectorTimeEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___global_quantities} + _parent::WeakRef end function waves__coherent_wave___global_quantities{T}() where T @@ -1494,8 +1494,8 @@ mutable struct waves__coherent_wave___full_wave___k_perpendicular{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___k_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___k_perpendicular} + _parent::WeakRef end function waves__coherent_wave___full_wave___k_perpendicular{T}() where T @@ -1512,8 +1512,8 @@ mutable struct waves__coherent_wave___full_wave___grid__space___objects_per_dime _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object___boundary} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object___boundary{T}() where T @@ -1524,7 +1524,7 @@ end waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object___boundary() = waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object___boundary{Float64}() mutable struct waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object{T} <: IDSvectorStaticElement{T} - var"boundary" :: IDSvector{waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -1536,8 +1536,8 @@ mutable struct waves__coherent_wave___full_wave___grid__space___objects_per_dime _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object{T}() where T @@ -1556,8 +1556,8 @@ mutable struct waves__coherent_wave___full_wave___grid__space___objects_per_dime _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__space___objects_per_dimension___geometry_content} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__space___objects_per_dimension___geometry_content{T}() where T @@ -1568,14 +1568,14 @@ end waves__coherent_wave___full_wave___grid__space___objects_per_dimension___geometry_content() = waves__coherent_wave___full_wave___grid__space___objects_per_dimension___geometry_content{Float64}() mutable struct waves__coherent_wave___full_wave___grid__space___objects_per_dimension{T} <: IDSvectorStaticElement{T} - var"geometry_content" :: waves__coherent_wave___full_wave___grid__space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object{T}} + var"geometry_content"::waves__coherent_wave___full_wave___grid__space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{waves__coherent_wave___full_wave___grid__space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__space___objects_per_dimension} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__space___objects_per_dimension{T}() where T @@ -1595,8 +1595,8 @@ mutable struct waves__coherent_wave___full_wave___grid__space___identifier{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__space___identifier} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__space___identifier{T}() where T @@ -1614,8 +1614,8 @@ mutable struct waves__coherent_wave___full_wave___grid__space___geometry_type{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__space___geometry_type} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__space___geometry_type{T}() where T @@ -1627,15 +1627,15 @@ waves__coherent_wave___full_wave___grid__space___geometry_type() = waves__cohere mutable struct waves__coherent_wave___full_wave___grid__space{T} <: IDSvectorStaticElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: waves__coherent_wave___full_wave___grid__space___geometry_type{T} - var"identifier" :: waves__coherent_wave___full_wave___grid__space___identifier{T} - var"objects_per_dimension" :: IDSvector{waves__coherent_wave___full_wave___grid__space___objects_per_dimension{T}} + var"geometry_type"::waves__coherent_wave___full_wave___grid__space___geometry_type{T} + var"identifier"::waves__coherent_wave___full_wave___grid__space___identifier{T} + var"objects_per_dimension"::IDSvector{waves__coherent_wave___full_wave___grid__space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__space} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__space} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__space{T}() where T @@ -1656,8 +1656,8 @@ mutable struct waves__coherent_wave___full_wave___grid__identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__identifier} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__identifier} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__identifier{T}() where T @@ -1678,8 +1678,8 @@ mutable struct waves__coherent_wave___full_wave___grid__grid_subset___metric{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___metric} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__grid_subset___metric{T}() where T @@ -1697,8 +1697,8 @@ mutable struct waves__coherent_wave___full_wave___grid__grid_subset___identifier _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___identifier} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__grid_subset___identifier{T}() where T @@ -1716,8 +1716,8 @@ mutable struct waves__coherent_wave___full_wave___grid__grid_subset___element___ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___element___object} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__grid_subset___element___object{T}() where T @@ -1728,13 +1728,13 @@ end waves__coherent_wave___full_wave___grid__grid_subset___element___object() = waves__coherent_wave___full_wave___grid__grid_subset___element___object{Float64}() mutable struct waves__coherent_wave___full_wave___grid__grid_subset___element{T} <: IDSvectorStaticElement{T} - var"object" :: IDSvector{waves__coherent_wave___full_wave___grid__grid_subset___element___object{T}} + var"object"::IDSvector{waves__coherent_wave___full_wave___grid__grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___element} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__grid_subset___element{T}() where T @@ -1756,8 +1756,8 @@ mutable struct waves__coherent_wave___full_wave___grid__grid_subset___base{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset___base} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__grid_subset___base{T}() where T @@ -1768,17 +1768,17 @@ end waves__coherent_wave___full_wave___grid__grid_subset___base() = waves__coherent_wave___full_wave___grid__grid_subset___base{Float64}() mutable struct waves__coherent_wave___full_wave___grid__grid_subset{T} <: IDSvectorStaticElement{T} - var"base" :: IDSvector{waves__coherent_wave___full_wave___grid__grid_subset___base{T}} + var"base"::IDSvector{waves__coherent_wave___full_wave___grid__grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{waves__coherent_wave___full_wave___grid__grid_subset___element{T}} - var"identifier" :: waves__coherent_wave___full_wave___grid__grid_subset___identifier{T} - var"metric" :: waves__coherent_wave___full_wave___grid__grid_subset___metric{T} + var"element"::IDSvector{waves__coherent_wave___full_wave___grid__grid_subset___element{T}} + var"identifier"::waves__coherent_wave___full_wave___grid__grid_subset___identifier{T} + var"metric"::waves__coherent_wave___full_wave___grid__grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid__grid_subset} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid__grid_subset{T}() where T @@ -1793,16 +1793,16 @@ end waves__coherent_wave___full_wave___grid__grid_subset() = waves__coherent_wave___full_wave___grid__grid_subset{Float64}() mutable struct waves__coherent_wave___full_wave___grid{T} <: IDS{T} - var"grid_subset" :: IDSvector{waves__coherent_wave___full_wave___grid__grid_subset{T}} - var"identifier" :: waves__coherent_wave___full_wave___grid__identifier{T} + var"grid_subset"::IDSvector{waves__coherent_wave___full_wave___grid__grid_subset{T}} + var"identifier"::waves__coherent_wave___full_wave___grid__identifier{T} var"path" :: String - var"space" :: IDSvector{waves__coherent_wave___full_wave___grid__space{T}} + var"space"::IDSvector{waves__coherent_wave___full_wave___grid__space{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___grid} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___grid} + _parent::WeakRef end function waves__coherent_wave___full_wave___grid{T}() where T @@ -1824,8 +1824,8 @@ mutable struct waves__coherent_wave___full_wave___e_field__plus{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___e_field__plus} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___e_field__plus} + _parent::WeakRef end function waves__coherent_wave___full_wave___e_field__plus{T}() where T @@ -1844,8 +1844,8 @@ mutable struct waves__coherent_wave___full_wave___e_field__parallel{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___e_field__parallel} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___e_field__parallel} + _parent::WeakRef end function waves__coherent_wave___full_wave___e_field__parallel{T}() where T @@ -1864,8 +1864,8 @@ mutable struct waves__coherent_wave___full_wave___e_field__normal{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___e_field__normal} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___e_field__normal} + _parent::WeakRef end function waves__coherent_wave___full_wave___e_field__normal{T}() where T @@ -1884,8 +1884,8 @@ mutable struct waves__coherent_wave___full_wave___e_field__minus{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___e_field__minus} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___e_field__minus} + _parent::WeakRef end function waves__coherent_wave___full_wave___e_field__minus{T}() where T @@ -1904,8 +1904,8 @@ mutable struct waves__coherent_wave___full_wave___e_field__bi_normal{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___e_field__bi_normal} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___e_field__bi_normal} + _parent::WeakRef end function waves__coherent_wave___full_wave___e_field__bi_normal{T}() where T @@ -1916,17 +1916,17 @@ end waves__coherent_wave___full_wave___e_field__bi_normal() = waves__coherent_wave___full_wave___e_field__bi_normal{Float64}() mutable struct waves__coherent_wave___full_wave___e_field{T} <: IDS{T} - var"bi_normal" :: IDSvector{waves__coherent_wave___full_wave___e_field__bi_normal{T}} - var"minus" :: IDSvector{waves__coherent_wave___full_wave___e_field__minus{T}} - var"normal" :: IDSvector{waves__coherent_wave___full_wave___e_field__normal{T}} - var"parallel" :: IDSvector{waves__coherent_wave___full_wave___e_field__parallel{T}} - var"plus" :: IDSvector{waves__coherent_wave___full_wave___e_field__plus{T}} + var"bi_normal"::IDSvector{waves__coherent_wave___full_wave___e_field__bi_normal{T}} + var"minus"::IDSvector{waves__coherent_wave___full_wave___e_field__minus{T}} + var"normal"::IDSvector{waves__coherent_wave___full_wave___e_field__normal{T}} + var"parallel"::IDSvector{waves__coherent_wave___full_wave___e_field__parallel{T}} + var"plus"::IDSvector{waves__coherent_wave___full_wave___e_field__plus{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___e_field} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___e_field} + _parent::WeakRef end function waves__coherent_wave___full_wave___e_field{T}() where T @@ -1950,8 +1950,8 @@ mutable struct waves__coherent_wave___full_wave___b_field__parallel{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___b_field__parallel} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___b_field__parallel} + _parent::WeakRef end function waves__coherent_wave___full_wave___b_field__parallel{T}() where T @@ -1970,8 +1970,8 @@ mutable struct waves__coherent_wave___full_wave___b_field__normal{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___b_field__normal} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___b_field__normal} + _parent::WeakRef end function waves__coherent_wave___full_wave___b_field__normal{T}() where T @@ -1990,8 +1990,8 @@ mutable struct waves__coherent_wave___full_wave___b_field__bi_normal{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___b_field__bi_normal} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___b_field__bi_normal} + _parent::WeakRef end function waves__coherent_wave___full_wave___b_field__bi_normal{T}() where T @@ -2002,15 +2002,15 @@ end waves__coherent_wave___full_wave___b_field__bi_normal() = waves__coherent_wave___full_wave___b_field__bi_normal{Float64}() mutable struct waves__coherent_wave___full_wave___b_field{T} <: IDS{T} - var"bi_normal" :: IDSvector{waves__coherent_wave___full_wave___b_field__bi_normal{T}} - var"normal" :: IDSvector{waves__coherent_wave___full_wave___b_field__normal{T}} - var"parallel" :: IDSvector{waves__coherent_wave___full_wave___b_field__parallel{T}} + var"bi_normal"::IDSvector{waves__coherent_wave___full_wave___b_field__bi_normal{T}} + var"normal"::IDSvector{waves__coherent_wave___full_wave___b_field__normal{T}} + var"parallel"::IDSvector{waves__coherent_wave___full_wave___b_field__parallel{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave___b_field} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave___b_field} + _parent::WeakRef end function waves__coherent_wave___full_wave___b_field{T}() where T @@ -2024,17 +2024,17 @@ end waves__coherent_wave___full_wave___b_field() = waves__coherent_wave___full_wave___b_field{Float64}() mutable struct waves__coherent_wave___full_wave{T} <: IDSvectorTimeElement{T} - var"b_field" :: waves__coherent_wave___full_wave___b_field{T} - var"e_field" :: waves__coherent_wave___full_wave___e_field{T} - var"grid" :: waves__coherent_wave___full_wave___grid{T} - var"k_perpendicular" :: IDSvector{waves__coherent_wave___full_wave___k_perpendicular{T}} + var"b_field"::waves__coherent_wave___full_wave___b_field{T} + var"e_field"::waves__coherent_wave___full_wave___e_field{T} + var"grid"::waves__coherent_wave___full_wave___grid{T} + var"k_perpendicular"::IDSvector{waves__coherent_wave___full_wave___k_perpendicular{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___full_wave} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___full_wave} + _parent::WeakRef end function waves__coherent_wave___full_wave{T}() where T @@ -2071,8 +2071,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___wave_vector{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___wave_vector} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___wave_vector} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___wave_vector{T}() where T @@ -2091,8 +2091,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___spot{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___spot} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___spot} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___spot{T}() where T @@ -2111,8 +2111,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___power_flow_norm{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___power_flow_norm} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___power_flow_norm} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___power_flow_norm{T}() where T @@ -2137,8 +2137,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___position{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___position} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___position} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___position{T}() where T @@ -2157,8 +2157,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___phase} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___phase} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___phase{T}() where T @@ -2184,8 +2184,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___ion___state{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___ion___state} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___ion___state{T}() where T @@ -2205,8 +2205,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___ion___element{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___ion___element} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___ion___element{T}() where T @@ -2217,20 +2217,20 @@ end waves__coherent_wave___beam_tracing___beam___ion___element() = waves__coherent_wave___beam_tracing___beam___ion___element{Float64}() mutable struct waves__coherent_wave___beam_tracing___beam___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{waves__coherent_wave___beam_tracing___beam___ion___element{T}} + var"element"::IDSvector{waves__coherent_wave___beam_tracing___beam___ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"power" :: Vector{<:T} var"power_σ" :: Vector{<:T} - var"state" :: IDSvector{waves__coherent_wave___beam_tracing___beam___ion___state{T}} + var"state"::IDSvector{waves__coherent_wave___beam_tracing___beam___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___ion} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___ion} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___ion{T}() where T @@ -2249,8 +2249,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___electrons{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___electrons} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___electrons} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___electrons{T}() where T @@ -2269,8 +2269,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___e_field__plus{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___e_field__plus} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___e_field__plus} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___e_field__plus{T}() where T @@ -2289,8 +2289,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___e_field__parallel{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___e_field__parallel} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___e_field__parallel} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___e_field__parallel{T}() where T @@ -2309,8 +2309,8 @@ mutable struct waves__coherent_wave___beam_tracing___beam___e_field__minus{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___e_field__minus} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___e_field__minus} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___e_field__minus{T}() where T @@ -2321,15 +2321,15 @@ end waves__coherent_wave___beam_tracing___beam___e_field__minus() = waves__coherent_wave___beam_tracing___beam___e_field__minus{Float64}() mutable struct waves__coherent_wave___beam_tracing___beam___e_field{T} <: IDS{T} - var"minus" :: waves__coherent_wave___beam_tracing___beam___e_field__minus{T} - var"parallel" :: waves__coherent_wave___beam_tracing___beam___e_field__parallel{T} - var"plus" :: waves__coherent_wave___beam_tracing___beam___e_field__plus{T} + var"minus"::waves__coherent_wave___beam_tracing___beam___e_field__minus{T} + var"parallel"::waves__coherent_wave___beam_tracing___beam___e_field__parallel{T} + var"plus"::waves__coherent_wave___beam_tracing___beam___e_field__plus{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam___e_field} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam___e_field} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam___e_field{T}() where T @@ -2343,24 +2343,24 @@ end waves__coherent_wave___beam_tracing___beam___e_field() = waves__coherent_wave___beam_tracing___beam___e_field{Float64}() mutable struct waves__coherent_wave___beam_tracing___beam{T} <: IDSvectorStaticElement{T} - var"e_field" :: waves__coherent_wave___beam_tracing___beam___e_field{T} - var"electrons" :: waves__coherent_wave___beam_tracing___beam___electrons{T} - var"ion" :: IDSvector{waves__coherent_wave___beam_tracing___beam___ion{T}} + var"e_field"::waves__coherent_wave___beam_tracing___beam___e_field{T} + var"electrons"::waves__coherent_wave___beam_tracing___beam___electrons{T} + var"ion"::IDSvector{waves__coherent_wave___beam_tracing___beam___ion{T}} var"length" :: Vector{<:T} var"length_σ" :: Vector{<:T} - var"phase" :: waves__coherent_wave___beam_tracing___beam___phase{T} - var"position" :: waves__coherent_wave___beam_tracing___beam___position{T} - var"power_flow_norm" :: waves__coherent_wave___beam_tracing___beam___power_flow_norm{T} + var"phase"::waves__coherent_wave___beam_tracing___beam___phase{T} + var"position"::waves__coherent_wave___beam_tracing___beam___position{T} + var"power_flow_norm"::waves__coherent_wave___beam_tracing___beam___power_flow_norm{T} var"power_initial" :: T var"power_initial_σ" :: T - var"spot" :: waves__coherent_wave___beam_tracing___beam___spot{T} - var"wave_vector" :: waves__coherent_wave___beam_tracing___beam___wave_vector{T} + var"spot"::waves__coherent_wave___beam_tracing___beam___spot{T} + var"wave_vector"::waves__coherent_wave___beam_tracing___beam___wave_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing___beam} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing___beam} + _parent::WeakRef end function waves__coherent_wave___beam_tracing___beam{T}() where T @@ -2379,14 +2379,14 @@ end waves__coherent_wave___beam_tracing___beam() = waves__coherent_wave___beam_tracing___beam{Float64}() mutable struct waves__coherent_wave___beam_tracing{T} <: IDSvectorTimeElement{T} - var"beam" :: IDSvector{waves__coherent_wave___beam_tracing___beam{T}} + var"beam"::IDSvector{waves__coherent_wave___beam_tracing___beam{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave___beam_tracing} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave___beam_tracing} + _parent::WeakRef end function waves__coherent_wave___beam_tracing{T}() where T @@ -2398,19 +2398,19 @@ end waves__coherent_wave___beam_tracing() = waves__coherent_wave___beam_tracing{Float64}() mutable struct waves__coherent_wave{T} <: IDSvectorStaticElement{T} - var"beam_tracing" :: IDSvector{waves__coherent_wave___beam_tracing{T}} - var"full_wave" :: IDSvector{waves__coherent_wave___full_wave{T}} - var"global_quantities" :: IDSvector{waves__coherent_wave___global_quantities{T}} - var"identifier" :: waves__coherent_wave___identifier{T} - var"profiles_1d" :: IDSvector{waves__coherent_wave___profiles_1d{T}} - var"profiles_2d" :: IDSvector{waves__coherent_wave___profiles_2d{T}} - var"wave_solver_type" :: waves__coherent_wave___wave_solver_type{T} + var"beam_tracing"::IDSvector{waves__coherent_wave___beam_tracing{T}} + var"full_wave"::IDSvector{waves__coherent_wave___full_wave{T}} + var"global_quantities"::IDSvector{waves__coherent_wave___global_quantities{T}} + var"identifier"::waves__coherent_wave___identifier{T} + var"profiles_1d"::IDSvector{waves__coherent_wave___profiles_1d{T}} + var"profiles_2d"::IDSvector{waves__coherent_wave___profiles_2d{T}} + var"wave_solver_type"::waves__coherent_wave___wave_solver_type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__coherent_wave} - _parent :: WeakRef + _ref::Union{Nothing,waves__coherent_wave} + _parent::WeakRef end function waves__coherent_wave{T}() where T @@ -2438,8 +2438,8 @@ mutable struct waves__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__code__library} - _parent :: WeakRef + _ref::Union{Nothing,waves__code__library} + _parent::WeakRef end function waves__code__library{T}() where T @@ -2452,7 +2452,7 @@ waves__code__library() = waves__code__library{Float64}() mutable struct waves__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{waves__code__library{T}} + var"library"::IDSvector{waves__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -2462,8 +2462,8 @@ mutable struct waves__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves__code} - _parent :: WeakRef + _ref::Union{Nothing,waves__code} + _parent::WeakRef end function waves__code{T}() where T @@ -2475,18 +2475,18 @@ end waves__code() = waves__code{Float64}() mutable struct waves{T} <: IDStop{T} - var"code" :: waves__code{T} - var"coherent_wave" :: IDSvector{waves__coherent_wave{T}} - var"ids_properties" :: waves__ids_properties{T} - var"magnetic_axis" :: waves__magnetic_axis{T} + var"code"::waves__code{T} + var"coherent_wave"::IDSvector{waves__coherent_wave{T}} + var"ids_properties"::waves__ids_properties{T} + var"magnetic_axis"::waves__magnetic_axis{T} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: waves__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::waves__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,waves} - _parent :: WeakRef + _ref::Union{Nothing,waves} + _parent::WeakRef end function waves{T}() where T @@ -2509,8 +2509,8 @@ mutable struct wall__temperature_reference{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__temperature_reference} - _parent :: WeakRef + _ref::Union{Nothing,wall__temperature_reference} + _parent::WeakRef end function wall__temperature_reference{T}() where T @@ -2528,8 +2528,8 @@ mutable struct wall__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__version_put} + _parent::WeakRef end function wall__ids_properties__version_put{T}() where T @@ -2546,8 +2546,8 @@ mutable struct wall__ids_properties__provenance__node{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__provenance__node} + _parent::WeakRef end function wall__ids_properties__provenance__node{T}() where T @@ -2558,13 +2558,13 @@ end wall__ids_properties__provenance__node() = wall__ids_properties__provenance__node{Float64}() mutable struct wall__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{wall__ids_properties__provenance__node{T}} + var"node"::IDSvector{wall__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__provenance} + _parent::WeakRef end function wall__ids_properties__provenance{T}() where T @@ -2586,8 +2586,8 @@ mutable struct wall__ids_properties__plugins__node___readback{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__plugins__node___readback} + _parent::WeakRef end function wall__ids_properties__plugins__node___readback{T}() where T @@ -2608,8 +2608,8 @@ mutable struct wall__ids_properties__plugins__node___put_operation{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function wall__ids_properties__plugins__node___put_operation{T}() where T @@ -2630,8 +2630,8 @@ mutable struct wall__ids_properties__plugins__node___get_operation{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function wall__ids_properties__plugins__node___get_operation{T}() where T @@ -2642,16 +2642,16 @@ end wall__ids_properties__plugins__node___get_operation() = wall__ids_properties__plugins__node___get_operation{Float64}() mutable struct wall__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{wall__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{wall__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{wall__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{wall__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{wall__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{wall__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__plugins__node} + _parent::WeakRef end function wall__ids_properties__plugins__node{T}() where T @@ -2674,8 +2674,8 @@ mutable struct wall__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function wall__ids_properties__plugins__infrastructure_put{T}() where T @@ -2695,8 +2695,8 @@ mutable struct wall__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function wall__ids_properties__plugins__infrastructure_get{T}() where T @@ -2707,15 +2707,15 @@ end wall__ids_properties__plugins__infrastructure_get() = wall__ids_properties__plugins__infrastructure_get{Float64}() mutable struct wall__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: wall__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: wall__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{wall__ids_properties__plugins__node{T}} + var"infrastructure_get"::wall__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::wall__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{wall__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__plugins} + _parent::WeakRef end function wall__ids_properties__plugins{T}() where T @@ -2736,8 +2736,8 @@ mutable struct wall__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties__occurrence_type} + _parent::WeakRef end function wall__ids_properties__occurrence_type{T}() where T @@ -2753,17 +2753,17 @@ mutable struct wall__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: wall__ids_properties__occurrence_type{T} - var"plugins" :: wall__ids_properties__plugins{T} - var"provenance" :: wall__ids_properties__provenance{T} + var"occurrence_type"::wall__ids_properties__occurrence_type{T} + var"plugins"::wall__ids_properties__plugins{T} + var"provenance"::wall__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: wall__ids_properties__version_put{T} + var"version_put"::wall__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,wall__ids_properties} + _parent::WeakRef end function wall__ids_properties{T}() where T @@ -2787,8 +2787,8 @@ mutable struct wall__global_quantities__neutral___incident_species___element{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__global_quantities__neutral___incident_species___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__global_quantities__neutral___incident_species___element} + _parent::WeakRef end function wall__global_quantities__neutral___incident_species___element{T}() where T @@ -2799,7 +2799,7 @@ end wall__global_quantities__neutral___incident_species___element() = wall__global_quantities__neutral___incident_species___element{Float64}() mutable struct wall__global_quantities__neutral___incident_species{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{wall__global_quantities__neutral___incident_species___element{T}} + var"element"::IDSvector{wall__global_quantities__neutral___incident_species___element{T}} var"energies" :: Vector{<:T} var"energies_σ" :: Vector{<:T} var"label" :: String @@ -2811,8 +2811,8 @@ mutable struct wall__global_quantities__neutral___incident_species{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__global_quantities__neutral___incident_species} - _parent :: WeakRef + _ref::Union{Nothing,wall__global_quantities__neutral___incident_species} + _parent::WeakRef end function wall__global_quantities__neutral___incident_species{T}() where T @@ -2833,8 +2833,8 @@ mutable struct wall__global_quantities__neutral___element{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__global_quantities__neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__global_quantities__neutral___element} + _parent::WeakRef end function wall__global_quantities__neutral___element{T}() where T @@ -2845,10 +2845,10 @@ end wall__global_quantities__neutral___element() = wall__global_quantities__neutral___element{Float64}() mutable struct wall__global_quantities__neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{wall__global_quantities__neutral___element{T}} + var"element"::IDSvector{wall__global_quantities__neutral___element{T}} var"gas_puff" :: Vector{<:T} var"gas_puff_σ" :: Vector{<:T} - var"incident_species" :: IDSvector{wall__global_quantities__neutral___incident_species{T}} + var"incident_species"::IDSvector{wall__global_quantities__neutral___incident_species{T}} var"label" :: String var"particle_flux_from_plasma" :: Vector{<:T} var"particle_flux_from_plasma_σ" :: Vector{<:T} @@ -2866,8 +2866,8 @@ mutable struct wall__global_quantities__neutral{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__global_quantities__neutral} - _parent :: WeakRef + _ref::Union{Nothing,wall__global_quantities__neutral} + _parent::WeakRef end function wall__global_quantities__neutral{T}() where T @@ -2896,8 +2896,8 @@ mutable struct wall__global_quantities__electrons{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__global_quantities__electrons} - _parent :: WeakRef + _ref::Union{Nothing,wall__global_quantities__electrons} + _parent::WeakRef end function wall__global_quantities__electrons{T}() where T @@ -2910,8 +2910,8 @@ wall__global_quantities__electrons() = wall__global_quantities__electrons{Float6 mutable struct wall__global_quantities{T} <: IDS{T} var"current_tor" :: Vector{<:T} var"current_tor_σ" :: Vector{<:T} - var"electrons" :: wall__global_quantities__electrons{T} - var"neutral" :: IDSvector{wall__global_quantities__neutral{T}} + var"electrons"::wall__global_quantities__electrons{T} + var"neutral"::IDSvector{wall__global_quantities__neutral{T}} var"power_black_body" :: Vector{<:T} var"power_black_body_σ" :: Vector{<:T} var"power_conducted" :: Vector{<:T} @@ -2944,8 +2944,8 @@ mutable struct wall__global_quantities{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,wall__global_quantities} + _parent::WeakRef end function wall__global_quantities{T}() where T @@ -2965,8 +2965,8 @@ mutable struct wall__first_wall_power_flux_peak{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__first_wall_power_flux_peak} - _parent :: WeakRef + _ref::Union{Nothing,wall__first_wall_power_flux_peak} + _parent::WeakRef end function wall__first_wall_power_flux_peak{T}() where T @@ -2984,8 +2984,8 @@ mutable struct wall__description_ggd___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___type} + _parent::WeakRef end function wall__description_ggd___type{T}() where T @@ -3006,8 +3006,8 @@ mutable struct wall__description_ggd___thickness___grid_subset{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___thickness___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___thickness___grid_subset} + _parent::WeakRef end function wall__description_ggd___thickness___grid_subset{T}() where T @@ -3018,14 +3018,14 @@ end wall__description_ggd___thickness___grid_subset() = wall__description_ggd___thickness___grid_subset{Float64}() mutable struct wall__description_ggd___thickness{T} <: IDSvectorTimeElement{T} - var"grid_subset" :: IDSvector{wall__description_ggd___thickness___grid_subset{T}} + var"grid_subset"::IDSvector{wall__description_ggd___thickness___grid_subset{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___thickness} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___thickness} + _parent::WeakRef end function wall__description_ggd___thickness{T}() where T @@ -3044,8 +3044,8 @@ mutable struct wall__description_ggd___material___grid_subset___identifiers{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___material___grid_subset___identifiers} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___material___grid_subset___identifiers} + _parent::WeakRef end function wall__description_ggd___material___grid_subset___identifiers{T}() where T @@ -3058,13 +3058,13 @@ wall__description_ggd___material___grid_subset___identifiers() = wall__descripti mutable struct wall__description_ggd___material___grid_subset{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifiers" :: wall__description_ggd___material___grid_subset___identifiers{T} + var"identifiers"::wall__description_ggd___material___grid_subset___identifiers{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___material___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___material___grid_subset} + _parent::WeakRef end function wall__description_ggd___material___grid_subset{T}() where T @@ -3076,14 +3076,14 @@ end wall__description_ggd___material___grid_subset() = wall__description_ggd___material___grid_subset{Float64}() mutable struct wall__description_ggd___material{T} <: IDSvectorTimeElement{T} - var"grid_subset" :: IDSvector{wall__description_ggd___material___grid_subset{T}} + var"grid_subset"::IDSvector{wall__description_ggd___material___grid_subset{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___material} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___material} + _parent::WeakRef end function wall__description_ggd___material{T}() where T @@ -3101,8 +3101,8 @@ mutable struct wall__description_ggd___grid_ggd___space___objects_per_dimension_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function wall__description_ggd___grid_ggd___space___objects_per_dimension___object___boundary{T}() where T @@ -3113,7 +3113,7 @@ end wall__description_ggd___grid_ggd___space___objects_per_dimension___object___boundary() = wall__description_ggd___grid_ggd___space___objects_per_dimension___object___boundary{Float64}() mutable struct wall__description_ggd___grid_ggd___space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{wall__description_ggd___grid_ggd___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{wall__description_ggd___grid_ggd___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -3125,8 +3125,8 @@ mutable struct wall__description_ggd___grid_ggd___space___objects_per_dimension_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___space___objects_per_dimension___object} + _parent::WeakRef end function wall__description_ggd___grid_ggd___space___objects_per_dimension___object{T}() where T @@ -3145,8 +3145,8 @@ mutable struct wall__description_ggd___grid_ggd___space___objects_per_dimension_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function wall__description_ggd___grid_ggd___space___objects_per_dimension___geometry_content{T}() where T @@ -3157,14 +3157,14 @@ end wall__description_ggd___grid_ggd___space___objects_per_dimension___geometry_content() = wall__description_ggd___grid_ggd___space___objects_per_dimension___geometry_content{Float64}() mutable struct wall__description_ggd___grid_ggd___space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: wall__description_ggd___grid_ggd___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{wall__description_ggd___grid_ggd___space___objects_per_dimension___object{T}} + var"geometry_content"::wall__description_ggd___grid_ggd___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{wall__description_ggd___grid_ggd___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___space___objects_per_dimension} + _parent::WeakRef end function wall__description_ggd___grid_ggd___space___objects_per_dimension{T}() where T @@ -3184,8 +3184,8 @@ mutable struct wall__description_ggd___grid_ggd___space___identifier{T} <: IDSra _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___space___identifier} + _parent::WeakRef end function wall__description_ggd___grid_ggd___space___identifier{T}() where T @@ -3203,8 +3203,8 @@ mutable struct wall__description_ggd___grid_ggd___space___geometry_type{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___space___geometry_type} + _parent::WeakRef end function wall__description_ggd___grid_ggd___space___geometry_type{T}() where T @@ -3216,15 +3216,15 @@ wall__description_ggd___grid_ggd___space___geometry_type() = wall__description_g mutable struct wall__description_ggd___grid_ggd___space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: wall__description_ggd___grid_ggd___space___geometry_type{T} - var"identifier" :: wall__description_ggd___grid_ggd___space___identifier{T} - var"objects_per_dimension" :: IDSvector{wall__description_ggd___grid_ggd___space___objects_per_dimension{T}} + var"geometry_type"::wall__description_ggd___grid_ggd___space___geometry_type{T} + var"identifier"::wall__description_ggd___grid_ggd___space___identifier{T} + var"objects_per_dimension"::IDSvector{wall__description_ggd___grid_ggd___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___space} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___space} + _parent::WeakRef end function wall__description_ggd___grid_ggd___space{T}() where T @@ -3245,8 +3245,8 @@ mutable struct wall__description_ggd___grid_ggd___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___identifier} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___identifier} + _parent::WeakRef end function wall__description_ggd___grid_ggd___identifier{T}() where T @@ -3267,8 +3267,8 @@ mutable struct wall__description_ggd___grid_ggd___grid_subset___metric{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___metric} + _parent::WeakRef end function wall__description_ggd___grid_ggd___grid_subset___metric{T}() where T @@ -3286,8 +3286,8 @@ mutable struct wall__description_ggd___grid_ggd___grid_subset___identifier{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___identifier} + _parent::WeakRef end function wall__description_ggd___grid_ggd___grid_subset___identifier{T}() where T @@ -3305,8 +3305,8 @@ mutable struct wall__description_ggd___grid_ggd___grid_subset___element___object _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___element___object} + _parent::WeakRef end function wall__description_ggd___grid_ggd___grid_subset___element___object{T}() where T @@ -3317,13 +3317,13 @@ end wall__description_ggd___grid_ggd___grid_subset___element___object() = wall__description_ggd___grid_ggd___grid_subset___element___object{Float64}() mutable struct wall__description_ggd___grid_ggd___grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{wall__description_ggd___grid_ggd___grid_subset___element___object{T}} + var"object"::IDSvector{wall__description_ggd___grid_ggd___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___element} + _parent::WeakRef end function wall__description_ggd___grid_ggd___grid_subset___element{T}() where T @@ -3345,8 +3345,8 @@ mutable struct wall__description_ggd___grid_ggd___grid_subset___base{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___grid_subset___base} + _parent::WeakRef end function wall__description_ggd___grid_ggd___grid_subset___base{T}() where T @@ -3357,17 +3357,17 @@ end wall__description_ggd___grid_ggd___grid_subset___base() = wall__description_ggd___grid_ggd___grid_subset___base{Float64}() mutable struct wall__description_ggd___grid_ggd___grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{wall__description_ggd___grid_ggd___grid_subset___base{T}} + var"base"::IDSvector{wall__description_ggd___grid_ggd___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{wall__description_ggd___grid_ggd___grid_subset___element{T}} - var"identifier" :: wall__description_ggd___grid_ggd___grid_subset___identifier{T} - var"metric" :: wall__description_ggd___grid_ggd___grid_subset___metric{T} + var"element"::IDSvector{wall__description_ggd___grid_ggd___grid_subset___element{T}} + var"identifier"::wall__description_ggd___grid_ggd___grid_subset___identifier{T} + var"metric"::wall__description_ggd___grid_ggd___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd___grid_subset} + _parent::WeakRef end function wall__description_ggd___grid_ggd___grid_subset{T}() where T @@ -3382,17 +3382,17 @@ end wall__description_ggd___grid_ggd___grid_subset() = wall__description_ggd___grid_ggd___grid_subset{Float64}() mutable struct wall__description_ggd___grid_ggd{T} <: IDSvectorRawElement{T} - var"grid_subset" :: IDSvector{wall__description_ggd___grid_ggd___grid_subset{T}} - var"identifier" :: wall__description_ggd___grid_ggd___identifier{T} + var"grid_subset"::IDSvector{wall__description_ggd___grid_ggd___grid_subset{T}} + var"identifier"::wall__description_ggd___grid_ggd___identifier{T} var"path" :: String - var"space" :: IDSvector{wall__description_ggd___grid_ggd___space{T}} + var"space"::IDSvector{wall__description_ggd___grid_ggd___space{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___grid_ggd} + _parent::WeakRef end function wall__description_ggd___grid_ggd{T}() where T @@ -3416,8 +3416,8 @@ mutable struct wall__description_ggd___ggd___v_biasing{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___v_biasing} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___v_biasing} + _parent::WeakRef end function wall__description_ggd___ggd___v_biasing{T}() where T @@ -3438,8 +3438,8 @@ mutable struct wall__description_ggd___ggd___temperature{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___temperature} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___temperature} + _parent::WeakRef end function wall__description_ggd___ggd___temperature{T}() where T @@ -3460,8 +3460,8 @@ mutable struct wall__description_ggd___ggd___resistivity{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___resistivity} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___resistivity} + _parent::WeakRef end function wall__description_ggd___ggd___resistivity{T}() where T @@ -3479,8 +3479,8 @@ mutable struct wall__description_ggd___ggd___recycling__neutral___state___neutra _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__neutral___state___neutral_type} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__neutral___state___neutral_type{T}() where T @@ -3501,8 +3501,8 @@ mutable struct wall__description_ggd___ggd___recycling__neutral___state___coeffi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__neutral___state___coefficient} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__neutral___state___coefficient} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__neutral___state___coefficient{T}() where T @@ -3513,10 +3513,10 @@ end wall__description_ggd___ggd___recycling__neutral___state___coefficient() = wall__description_ggd___ggd___recycling__neutral___state___coefficient{Float64}() mutable struct wall__description_ggd___ggd___recycling__neutral___state{T} <: IDSvectorStaticElement{T} - var"coefficient" :: IDSvector{wall__description_ggd___ggd___recycling__neutral___state___coefficient{T}} + var"coefficient"::IDSvector{wall__description_ggd___ggd___recycling__neutral___state___coefficient{T}} var"electron_configuration" :: String var"label" :: String - var"neutral_type" :: wall__description_ggd___ggd___recycling__neutral___state___neutral_type{T} + var"neutral_type"::wall__description_ggd___ggd___recycling__neutral___state___neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -3524,8 +3524,8 @@ mutable struct wall__description_ggd___ggd___recycling__neutral___state{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__neutral___state} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__neutral___state{T}() where T @@ -3547,8 +3547,8 @@ mutable struct wall__description_ggd___ggd___recycling__neutral___element{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__neutral___element} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__neutral___element{T}() where T @@ -3569,8 +3569,8 @@ mutable struct wall__description_ggd___ggd___recycling__neutral___coefficient{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__neutral___coefficient} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__neutral___coefficient} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__neutral___coefficient{T}() where T @@ -3581,18 +3581,18 @@ end wall__description_ggd___ggd___recycling__neutral___coefficient() = wall__description_ggd___ggd___recycling__neutral___coefficient{Float64}() mutable struct wall__description_ggd___ggd___recycling__neutral{T} <: IDSvectorStaticElement{T} - var"coefficient" :: IDSvector{wall__description_ggd___ggd___recycling__neutral___coefficient{T}} - var"element" :: IDSvector{wall__description_ggd___ggd___recycling__neutral___element{T}} + var"coefficient"::IDSvector{wall__description_ggd___ggd___recycling__neutral___coefficient{T}} + var"element"::IDSvector{wall__description_ggd___ggd___recycling__neutral___element{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int - var"state" :: IDSvector{wall__description_ggd___ggd___recycling__neutral___state{T}} + var"state"::IDSvector{wall__description_ggd___ggd___recycling__neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__neutral} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__neutral} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__neutral{T}() where T @@ -3616,8 +3616,8 @@ mutable struct wall__description_ggd___ggd___recycling__ion___state___coefficien _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__ion___state___coefficient} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__ion___state___coefficient} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__ion___state___coefficient{T}() where T @@ -3628,7 +3628,7 @@ end wall__description_ggd___ggd___recycling__ion___state___coefficient() = wall__description_ggd___ggd___recycling__ion___state___coefficient{Float64}() mutable struct wall__description_ggd___ggd___recycling__ion___state{T} <: IDSvectorStaticElement{T} - var"coefficient" :: IDSvector{wall__description_ggd___ggd___recycling__ion___state___coefficient{T}} + var"coefficient"::IDSvector{wall__description_ggd___ggd___recycling__ion___state___coefficient{T}} var"electron_configuration" :: String var"label" :: String var"vibrational_level" :: T @@ -3642,8 +3642,8 @@ mutable struct wall__description_ggd___ggd___recycling__ion___state{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__ion___state} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__ion___state{T}() where T @@ -3664,8 +3664,8 @@ mutable struct wall__description_ggd___ggd___recycling__ion___element{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__ion___element} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__ion___element{T}() where T @@ -3686,8 +3686,8 @@ mutable struct wall__description_ggd___ggd___recycling__ion___coefficient{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__ion___coefficient} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__ion___coefficient} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__ion___coefficient{T}() where T @@ -3698,20 +3698,20 @@ end wall__description_ggd___ggd___recycling__ion___coefficient() = wall__description_ggd___ggd___recycling__ion___coefficient{Float64}() mutable struct wall__description_ggd___ggd___recycling__ion{T} <: IDSvectorIonElement{T} - var"coefficient" :: IDSvector{wall__description_ggd___ggd___recycling__ion___coefficient{T}} - var"element" :: IDSvector{wall__description_ggd___ggd___recycling__ion___element{T}} + var"coefficient"::IDSvector{wall__description_ggd___ggd___recycling__ion___coefficient{T}} + var"element"::IDSvector{wall__description_ggd___ggd___recycling__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"state" :: IDSvector{wall__description_ggd___ggd___recycling__ion___state{T}} + var"state"::IDSvector{wall__description_ggd___ggd___recycling__ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling__ion} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling__ion} + _parent::WeakRef end function wall__description_ggd___ggd___recycling__ion{T}() where T @@ -3725,14 +3725,14 @@ end wall__description_ggd___ggd___recycling__ion() = wall__description_ggd___ggd___recycling__ion{Float64}() mutable struct wall__description_ggd___ggd___recycling{T} <: IDS{T} - var"ion" :: IDSvector{wall__description_ggd___ggd___recycling__ion{T}} - var"neutral" :: IDSvector{wall__description_ggd___ggd___recycling__neutral{T}} + var"ion"::IDSvector{wall__description_ggd___ggd___recycling__ion{T}} + var"neutral"::IDSvector{wall__description_ggd___ggd___recycling__neutral{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___recycling} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___recycling} + _parent::WeakRef end function wall__description_ggd___ggd___recycling{T}() where T @@ -3755,8 +3755,8 @@ mutable struct wall__description_ggd___ggd___psi{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___psi} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___psi} + _parent::WeakRef end function wall__description_ggd___ggd___psi{T}() where T @@ -3777,8 +3777,8 @@ mutable struct wall__description_ggd___ggd___power_density{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___power_density} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___power_density} + _parent::WeakRef end function wall__description_ggd___ggd___power_density{T}() where T @@ -3799,8 +3799,8 @@ mutable struct wall__description_ggd___ggd___phi_potential{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___phi_potential} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___phi_potential} + _parent::WeakRef end function wall__description_ggd___ggd___phi_potential{T}() where T @@ -3818,8 +3818,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__neutral___state___ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___state___neutral_type} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__neutral___state___neutral_type{T}() where T @@ -3840,8 +3840,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__neutral___state___ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___state___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___state___incident} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__neutral___state___incident{T}() where T @@ -3862,8 +3862,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__neutral___state___ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___state___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___state___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__neutral___state___emitted{T}() where T @@ -3875,10 +3875,10 @@ wall__description_ggd___ggd___particle_fluxes__neutral___state___emitted() = wal mutable struct wall__description_ggd___ggd___particle_fluxes__neutral___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"emitted" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___state___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___state___incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___state___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___state___incident{T}} var"label" :: String - var"neutral_type" :: wall__description_ggd___ggd___particle_fluxes__neutral___state___neutral_type{T} + var"neutral_type"::wall__description_ggd___ggd___particle_fluxes__neutral___state___neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -3886,8 +3886,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__neutral___state{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___state} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__neutral___state{T}() where T @@ -3911,8 +3911,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__neutral___incident _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___incident} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__neutral___incident{T}() where T @@ -3933,8 +3933,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__neutral___emitted{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__neutral___emitted{T}() where T @@ -3954,8 +3954,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__neutral___element{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral___element} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__neutral___element{T}() where T @@ -3966,19 +3966,19 @@ end wall__description_ggd___ggd___particle_fluxes__neutral___element() = wall__description_ggd___ggd___particle_fluxes__neutral___element{Float64}() mutable struct wall__description_ggd___ggd___particle_fluxes__neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___element{T}} - var"emitted" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___incident{T}} + var"element"::IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___element{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___incident{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int - var"state" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___state{T}} + var"state"::IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__neutral} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__neutral{T}() where T @@ -4003,8 +4003,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__ion___state___inci _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___state___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___state___incident} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__ion___state___incident{T}() where T @@ -4025,8 +4025,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__ion___state___emit _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___state___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___state___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__ion___state___emitted{T}() where T @@ -4038,8 +4038,8 @@ wall__description_ggd___ggd___particle_fluxes__ion___state___emitted() = wall__d mutable struct wall__description_ggd___ggd___particle_fluxes__ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"emitted" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___state___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___state___incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___state___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___state___incident{T}} var"label" :: String var"vibrational_level" :: T var"vibrational_level_σ" :: T @@ -4052,8 +4052,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__ion___state{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___state} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__ion___state{T}() where T @@ -4076,8 +4076,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__ion___incident{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___incident} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__ion___incident{T}() where T @@ -4098,8 +4098,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__ion___emitted{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__ion___emitted{T}() where T @@ -4119,8 +4119,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__ion___element{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion___element} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__ion___element{T}() where T @@ -4131,21 +4131,21 @@ end wall__description_ggd___ggd___particle_fluxes__ion___element() = wall__description_ggd___ggd___particle_fluxes__ion___element{Float64}() mutable struct wall__description_ggd___ggd___particle_fluxes__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___element{T}} - var"emitted" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___incident{T}} + var"element"::IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___element{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___incident{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"state" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___state{T}} + var"state"::IDSvector{wall__description_ggd___ggd___particle_fluxes__ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__ion} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__ion{T}() where T @@ -4170,8 +4170,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__electrons__inciden _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__electrons__incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__electrons__incident} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__electrons__incident{T}() where T @@ -4192,8 +4192,8 @@ mutable struct wall__description_ggd___ggd___particle_fluxes__electrons__emitted _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__electrons__emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__electrons__emitted} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__electrons__emitted{T}() where T @@ -4204,14 +4204,14 @@ end wall__description_ggd___ggd___particle_fluxes__electrons__emitted() = wall__description_ggd___ggd___particle_fluxes__electrons__emitted{Float64}() mutable struct wall__description_ggd___ggd___particle_fluxes__electrons{T} <: IDS{T} - var"emitted" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__electrons__emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__electrons__incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___particle_fluxes__electrons__emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___particle_fluxes__electrons__incident{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes__electrons} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes__electrons} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes__electrons{T}() where T @@ -4224,15 +4224,15 @@ end wall__description_ggd___ggd___particle_fluxes__electrons() = wall__description_ggd___ggd___particle_fluxes__electrons{Float64}() mutable struct wall__description_ggd___ggd___particle_fluxes{T} <: IDS{T} - var"electrons" :: wall__description_ggd___ggd___particle_fluxes__electrons{T} - var"ion" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__ion{T}} - var"neutral" :: IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral{T}} + var"electrons"::wall__description_ggd___ggd___particle_fluxes__electrons{T} + var"ion"::IDSvector{wall__description_ggd___ggd___particle_fluxes__ion{T}} + var"neutral"::IDSvector{wall__description_ggd___ggd___particle_fluxes__neutral{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___particle_fluxes} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___particle_fluxes} + _parent::WeakRef end function wall__description_ggd___ggd___particle_fluxes{T}() where T @@ -4264,8 +4264,8 @@ mutable struct wall__description_ggd___ggd___j_total{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___j_total} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___j_total} + _parent::WeakRef end function wall__description_ggd___ggd___j_total{T}() where T @@ -4283,8 +4283,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___neutral_type} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___neutral_type{T}() where T @@ -4305,8 +4305,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___incident{T}() where T @@ -4327,8 +4327,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___emitted{T}() where T @@ -4340,10 +4340,10 @@ wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___em mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___incident{T}} var"label" :: String - var"neutral_type" :: wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___neutral_type{T} + var"neutral_type"::wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state___neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -4351,8 +4351,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state{T}() where T @@ -4376,8 +4376,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__neutral___incident{T}() where T @@ -4398,8 +4398,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__neutral___emitted{T}() where T @@ -4419,8 +4419,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral___element} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__neutral___element{T}() where T @@ -4431,19 +4431,19 @@ end wall__description_ggd___ggd___energy_fluxes__recombination__neutral___element() = wall__description_ggd___ggd___energy_fluxes__recombination__neutral___element{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___element{T}} - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___incident{T}} + var"element"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___element{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___incident{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int - var"state" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state{T}} + var"state"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__neutral} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__neutral{T}() where T @@ -4468,8 +4468,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__ion__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___incident{T}() where T @@ -4490,8 +4490,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__ion__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___emitted{T}() where T @@ -4503,8 +4503,8 @@ wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___emitte mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___state___incident{T}} var"label" :: String var"vibrational_level" :: T var"vibrational_level_σ" :: T @@ -4517,8 +4517,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__ion__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___state} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__ion___state{T}() where T @@ -4541,8 +4541,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__ion__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__ion___incident{T}() where T @@ -4563,8 +4563,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__ion__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__ion___emitted{T}() where T @@ -4584,8 +4584,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__ion__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion___element} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__ion___element{T}() where T @@ -4596,21 +4596,21 @@ end wall__description_ggd___ggd___energy_fluxes__recombination__ion___element() = wall__description_ggd___ggd___energy_fluxes__recombination__ion___element{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__recombination__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___element{T}} - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___incident{T}} + var"element"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___element{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___incident{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"state" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___state{T}} + var"state"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination__ion} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination__ion{T}() where T @@ -4625,14 +4625,14 @@ end wall__description_ggd___ggd___energy_fluxes__recombination__ion() = wall__description_ggd___ggd___energy_fluxes__recombination__ion{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__recombination{T} <: IDS{T} - var"ion" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion{T}} - var"neutral" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral{T}} + var"ion"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__ion{T}} + var"neutral"::IDSvector{wall__description_ggd___ggd___energy_fluxes__recombination__neutral{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__recombination} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__recombination{T}() where T @@ -4655,8 +4655,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__radiation__incident{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__radiation__incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__radiation__incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__radiation__incident{T}() where T @@ -4677,8 +4677,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__radiation__emitted{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__radiation__emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__radiation__emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__radiation__emitted{T}() where T @@ -4689,14 +4689,14 @@ end wall__description_ggd___ggd___energy_fluxes__radiation__emitted() = wall__description_ggd___ggd___energy_fluxes__radiation__emitted{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__radiation{T} <: IDS{T} - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__radiation__emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__radiation__incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__radiation__emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__radiation__incident{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__radiation} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__radiation} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__radiation{T}() where T @@ -4716,8 +4716,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___neutral_type} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___neutral_type{T}() where T @@ -4738,8 +4738,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___incident{T}() where T @@ -4760,8 +4760,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___emitted{T}() where T @@ -4773,10 +4773,10 @@ wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___emitted( mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___incident{T}} var"label" :: String - var"neutral_type" :: wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___neutral_type{T} + var"neutral_type"::wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state___neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -4784,8 +4784,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state{T}() where T @@ -4809,8 +4809,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___i _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___incident{T}() where T @@ -4831,8 +4831,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___e _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___emitted{T}() where T @@ -4852,8 +4852,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___e _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___element} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___element{T}() where T @@ -4864,19 +4864,19 @@ end wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___element() = wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___element{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___element{T}} - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___incident{T}} + var"element"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___element{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___incident{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int - var"state" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state{T}} + var"state"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__neutral} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__neutral{T}() where T @@ -4901,8 +4901,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___incident{T}() where T @@ -4923,8 +4923,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___emitted{T}() where T @@ -4936,8 +4936,8 @@ wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___emitted() = mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state___incident{T}} var"label" :: String var"vibrational_level" :: T var"vibrational_level_σ" :: T @@ -4950,8 +4950,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state{T}() where T @@ -4974,8 +4974,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__ion___incid _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__ion___incident{T}() where T @@ -4996,8 +4996,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__ion___emitt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__ion___emitted{T}() where T @@ -5017,8 +5017,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__ion___eleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion___element} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__ion___element{T}() where T @@ -5029,21 +5029,21 @@ end wall__description_ggd___ggd___energy_fluxes__kinetic__ion___element() = wall__description_ggd___ggd___energy_fluxes__kinetic__ion___element{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___element{T}} - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___incident{T}} + var"element"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___element{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___incident{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"state" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state{T}} + var"state"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__ion} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__ion{T}() where T @@ -5068,8 +5068,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__incident{T}() where T @@ -5090,8 +5090,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__emitted{T}() where T @@ -5102,14 +5102,14 @@ end wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__emitted() = wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__emitted{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic__electrons{T} <: IDS{T} - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__electrons__incident{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__electrons} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic__electrons} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic__electrons{T}() where T @@ -5122,15 +5122,15 @@ end wall__description_ggd___ggd___energy_fluxes__kinetic__electrons() = wall__description_ggd___ggd___energy_fluxes__kinetic__electrons{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__kinetic{T} <: IDS{T} - var"electrons" :: wall__description_ggd___ggd___energy_fluxes__kinetic__electrons{T} - var"ion" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion{T}} - var"neutral" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral{T}} + var"electrons"::wall__description_ggd___ggd___energy_fluxes__kinetic__electrons{T} + var"ion"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__ion{T}} + var"neutral"::IDSvector{wall__description_ggd___ggd___energy_fluxes__kinetic__neutral{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__kinetic} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__kinetic{T}() where T @@ -5154,8 +5154,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__current__incident{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__current__incident} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__current__incident} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__current__incident{T}() where T @@ -5176,8 +5176,8 @@ mutable struct wall__description_ggd___ggd___energy_fluxes__current__emitted{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__current__emitted} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__current__emitted} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__current__emitted{T}() where T @@ -5188,14 +5188,14 @@ end wall__description_ggd___ggd___energy_fluxes__current__emitted() = wall__description_ggd___ggd___energy_fluxes__current__emitted{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes__current{T} <: IDS{T} - var"emitted" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__current__emitted{T}} - var"incident" :: IDSvector{wall__description_ggd___ggd___energy_fluxes__current__incident{T}} + var"emitted"::IDSvector{wall__description_ggd___ggd___energy_fluxes__current__emitted{T}} + var"incident"::IDSvector{wall__description_ggd___ggd___energy_fluxes__current__incident{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes__current} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes__current} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes__current{T}() where T @@ -5208,16 +5208,16 @@ end wall__description_ggd___ggd___energy_fluxes__current() = wall__description_ggd___ggd___energy_fluxes__current{Float64}() mutable struct wall__description_ggd___ggd___energy_fluxes{T} <: IDS{T} - var"current" :: wall__description_ggd___ggd___energy_fluxes__current{T} - var"kinetic" :: wall__description_ggd___ggd___energy_fluxes__kinetic{T} - var"radiation" :: wall__description_ggd___ggd___energy_fluxes__radiation{T} - var"recombination" :: wall__description_ggd___ggd___energy_fluxes__recombination{T} + var"current"::wall__description_ggd___ggd___energy_fluxes__current{T} + var"kinetic"::wall__description_ggd___ggd___energy_fluxes__kinetic{T} + var"radiation"::wall__description_ggd___ggd___energy_fluxes__radiation{T} + var"recombination"::wall__description_ggd___ggd___energy_fluxes__recombination{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___energy_fluxes} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___energy_fluxes} + _parent::WeakRef end function wall__description_ggd___ggd___energy_fluxes{T}() where T @@ -5250,8 +5250,8 @@ mutable struct wall__description_ggd___ggd___e_field{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___e_field} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___e_field} + _parent::WeakRef end function wall__description_ggd___ggd___e_field{T}() where T @@ -5280,8 +5280,8 @@ mutable struct wall__description_ggd___ggd___a_field{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd___a_field} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd___a_field} + _parent::WeakRef end function wall__description_ggd___ggd___a_field{T}() where T @@ -5292,25 +5292,25 @@ end wall__description_ggd___ggd___a_field() = wall__description_ggd___ggd___a_field{Float64}() mutable struct wall__description_ggd___ggd{T} <: IDSvectorTimeElement{T} - var"a_field" :: IDSvector{wall__description_ggd___ggd___a_field{T}} - var"e_field" :: IDSvector{wall__description_ggd___ggd___e_field{T}} - var"energy_fluxes" :: wall__description_ggd___ggd___energy_fluxes{T} - var"j_total" :: IDSvector{wall__description_ggd___ggd___j_total{T}} - var"particle_fluxes" :: wall__description_ggd___ggd___particle_fluxes{T} - var"phi_potential" :: IDSvector{wall__description_ggd___ggd___phi_potential{T}} - var"power_density" :: IDSvector{wall__description_ggd___ggd___power_density{T}} - var"psi" :: IDSvector{wall__description_ggd___ggd___psi{T}} - var"recycling" :: wall__description_ggd___ggd___recycling{T} - var"resistivity" :: IDSvector{wall__description_ggd___ggd___resistivity{T}} - var"temperature" :: IDSvector{wall__description_ggd___ggd___temperature{T}} + var"a_field"::IDSvector{wall__description_ggd___ggd___a_field{T}} + var"e_field"::IDSvector{wall__description_ggd___ggd___e_field{T}} + var"energy_fluxes"::wall__description_ggd___ggd___energy_fluxes{T} + var"j_total"::IDSvector{wall__description_ggd___ggd___j_total{T}} + var"particle_fluxes"::wall__description_ggd___ggd___particle_fluxes{T} + var"phi_potential"::IDSvector{wall__description_ggd___ggd___phi_potential{T}} + var"power_density"::IDSvector{wall__description_ggd___ggd___power_density{T}} + var"psi"::IDSvector{wall__description_ggd___ggd___psi{T}} + var"recycling"::wall__description_ggd___ggd___recycling{T} + var"resistivity"::IDSvector{wall__description_ggd___ggd___resistivity{T}} + var"temperature"::IDSvector{wall__description_ggd___ggd___temperature{T}} var"time" :: Float64 - var"v_biasing" :: IDSvector{wall__description_ggd___ggd___v_biasing{T}} + var"v_biasing"::IDSvector{wall__description_ggd___ggd___v_biasing{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___ggd} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___ggd} + _parent::WeakRef end function wall__description_ggd___ggd{T}() where T @@ -5340,8 +5340,8 @@ mutable struct wall__description_ggd___component___type___identifier{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___component___type___identifier} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___component___type___identifier} + _parent::WeakRef end function wall__description_ggd___component___type___identifier{T}() where T @@ -5354,13 +5354,13 @@ wall__description_ggd___component___type___identifier() = wall__description_ggd_ mutable struct wall__description_ggd___component___type{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: wall__description_ggd___component___type___identifier{T} + var"identifier"::wall__description_ggd___component___type___identifier{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___component___type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___component___type} + _parent::WeakRef end function wall__description_ggd___component___type{T}() where T @@ -5374,13 +5374,13 @@ wall__description_ggd___component___type() = wall__description_ggd___component__ mutable struct wall__description_ggd___component{T} <: IDSvectorTimeElement{T} var"identifiers" :: Vector{String} var"time" :: Float64 - var"type" :: IDSvector{wall__description_ggd___component___type{T}} + var"type"::IDSvector{wall__description_ggd___component___type{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd___component} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd___component} + _parent::WeakRef end function wall__description_ggd___component{T}() where T @@ -5392,18 +5392,18 @@ end wall__description_ggd___component() = wall__description_ggd___component{Float64}() mutable struct wall__description_ggd{T} <: IDSvectorStaticElement{T} - var"component" :: IDSvector{wall__description_ggd___component{T}} - var"ggd" :: IDSvector{wall__description_ggd___ggd{T}} - var"grid_ggd" :: IDSvector{wall__description_ggd___grid_ggd{T}} - var"material" :: IDSvector{wall__description_ggd___material{T}} - var"thickness" :: IDSvector{wall__description_ggd___thickness{T}} - var"type" :: wall__description_ggd___type{T} + var"component"::IDSvector{wall__description_ggd___component{T}} + var"ggd"::IDSvector{wall__description_ggd___ggd{T}} + var"grid_ggd"::IDSvector{wall__description_ggd___grid_ggd{T}} + var"material"::IDSvector{wall__description_ggd___material{T}} + var"thickness"::IDSvector{wall__description_ggd___thickness{T}} + var"type"::wall__description_ggd___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_ggd} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_ggd} + _parent::WeakRef end function wall__description_ggd{T}() where T @@ -5429,8 +5429,8 @@ mutable struct wall__description_2d___vessel__unit___element___outline{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__unit___element___outline} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__unit___element___outline} + _parent::WeakRef end function wall__description_2d___vessel__unit___element___outline{T}() where T @@ -5448,8 +5448,8 @@ mutable struct wall__description_2d___vessel__unit___element___j_tor{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__unit___element___j_tor} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__unit___element___j_tor} + _parent::WeakRef end function wall__description_2d___vessel__unit___element___j_tor{T}() where T @@ -5460,9 +5460,9 @@ end wall__description_2d___vessel__unit___element___j_tor() = wall__description_2d___vessel__unit___element___j_tor{Float64}() mutable struct wall__description_2d___vessel__unit___element{T} <: IDSvectorStaticElement{T} - var"j_tor" :: wall__description_2d___vessel__unit___element___j_tor{T} + var"j_tor"::wall__description_2d___vessel__unit___element___j_tor{T} var"name" :: String - var"outline" :: wall__description_2d___vessel__unit___element___outline{T} + var"outline"::wall__description_2d___vessel__unit___element___outline{T} var"resistance" :: T var"resistance_σ" :: T var"resistivity" :: T @@ -5471,8 +5471,8 @@ mutable struct wall__description_2d___vessel__unit___element{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__unit___element} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__unit___element} + _parent::WeakRef end function wall__description_2d___vessel__unit___element{T}() where T @@ -5494,8 +5494,8 @@ mutable struct wall__description_2d___vessel__unit___annular__outline_outer{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__unit___annular__outline_outer} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__unit___annular__outline_outer} + _parent::WeakRef end function wall__description_2d___vessel__unit___annular__outline_outer{T}() where T @@ -5515,8 +5515,8 @@ mutable struct wall__description_2d___vessel__unit___annular__outline_inner{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__unit___annular__outline_inner} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__unit___annular__outline_inner} + _parent::WeakRef end function wall__description_2d___vessel__unit___annular__outline_inner{T}() where T @@ -5536,8 +5536,8 @@ mutable struct wall__description_2d___vessel__unit___annular__centreline{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__unit___annular__centreline} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__unit___annular__centreline} + _parent::WeakRef end function wall__description_2d___vessel__unit___annular__centreline{T}() where T @@ -5548,9 +5548,9 @@ end wall__description_2d___vessel__unit___annular__centreline() = wall__description_2d___vessel__unit___annular__centreline{Float64}() mutable struct wall__description_2d___vessel__unit___annular{T} <: IDS{T} - var"centreline" :: wall__description_2d___vessel__unit___annular__centreline{T} - var"outline_inner" :: wall__description_2d___vessel__unit___annular__outline_inner{T} - var"outline_outer" :: wall__description_2d___vessel__unit___annular__outline_outer{T} + var"centreline"::wall__description_2d___vessel__unit___annular__centreline{T} + var"outline_inner"::wall__description_2d___vessel__unit___annular__outline_inner{T} + var"outline_outer"::wall__description_2d___vessel__unit___annular__outline_outer{T} var"resistivity" :: T var"resistivity_σ" :: T var"thickness" :: Vector{<:T} @@ -5559,8 +5559,8 @@ mutable struct wall__description_2d___vessel__unit___annular{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__unit___annular} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__unit___annular} + _parent::WeakRef end function wall__description_2d___vessel__unit___annular{T}() where T @@ -5574,16 +5574,16 @@ end wall__description_2d___vessel__unit___annular() = wall__description_2d___vessel__unit___annular{Float64}() mutable struct wall__description_2d___vessel__unit{T} <: IDSvectorStaticElement{T} - var"annular" :: wall__description_2d___vessel__unit___annular{T} - var"element" :: IDSvector{wall__description_2d___vessel__unit___element{T}} + var"annular"::wall__description_2d___vessel__unit___annular{T} + var"element"::IDSvector{wall__description_2d___vessel__unit___element{T}} var"identifier" :: String var"name" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__unit} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__unit} + _parent::WeakRef end function wall__description_2d___vessel__unit{T}() where T @@ -5603,8 +5603,8 @@ mutable struct wall__description_2d___vessel__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel__type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel__type} + _parent::WeakRef end function wall__description_2d___vessel__type{T}() where T @@ -5615,14 +5615,14 @@ end wall__description_2d___vessel__type() = wall__description_2d___vessel__type{Float64}() mutable struct wall__description_2d___vessel{T} <: IDS{T} - var"type" :: wall__description_2d___vessel__type{T} - var"unit" :: IDSvector{wall__description_2d___vessel__unit{T}} + var"type"::wall__description_2d___vessel__type{T} + var"unit"::IDSvector{wall__description_2d___vessel__unit{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___vessel} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___vessel} + _parent::WeakRef end function wall__description_2d___vessel{T}() where T @@ -5642,8 +5642,8 @@ mutable struct wall__description_2d___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___type} + _parent::WeakRef end function wall__description_2d___type{T}() where T @@ -5663,8 +5663,8 @@ mutable struct wall__description_2d___mobile__unit___outline{T} <: IDSvectorTime _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___mobile__unit___outline} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___mobile__unit___outline} + _parent::WeakRef end function wall__description_2d___mobile__unit___outline{T}() where T @@ -5677,7 +5677,7 @@ wall__description_2d___mobile__unit___outline() = wall__description_2d___mobile_ mutable struct wall__description_2d___mobile__unit{T} <: IDSvectorStaticElement{T} var"closed" :: Int var"name" :: String - var"outline" :: IDSvector{wall__description_2d___mobile__unit___outline{T}} + var"outline"::IDSvector{wall__description_2d___mobile__unit___outline{T}} var"phi_extensions" :: Matrix{<:T} var"phi_extensions_σ" :: Matrix{<:T} var"resistivity" :: T @@ -5686,8 +5686,8 @@ mutable struct wall__description_2d___mobile__unit{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___mobile__unit} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___mobile__unit} + _parent::WeakRef end function wall__description_2d___mobile__unit{T}() where T @@ -5706,8 +5706,8 @@ mutable struct wall__description_2d___mobile__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___mobile__type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___mobile__type} + _parent::WeakRef end function wall__description_2d___mobile__type{T}() where T @@ -5718,14 +5718,14 @@ end wall__description_2d___mobile__type() = wall__description_2d___mobile__type{Float64}() mutable struct wall__description_2d___mobile{T} <: IDS{T} - var"type" :: wall__description_2d___mobile__type{T} - var"unit" :: IDSvector{wall__description_2d___mobile__unit{T}} + var"type"::wall__description_2d___mobile__type{T} + var"unit"::IDSvector{wall__description_2d___mobile__unit{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___mobile} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___mobile} + _parent::WeakRef end function wall__description_2d___mobile{T}() where T @@ -5746,8 +5746,8 @@ mutable struct wall__description_2d___limiter__unit___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___limiter__unit___outline} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___limiter__unit___outline} + _parent::WeakRef end function wall__description_2d___limiter__unit___outline{T}() where T @@ -5765,8 +5765,8 @@ mutable struct wall__description_2d___limiter__unit___component_type{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___limiter__unit___component_type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___limiter__unit___component_type} + _parent::WeakRef end function wall__description_2d___limiter__unit___component_type{T}() where T @@ -5778,10 +5778,10 @@ wall__description_2d___limiter__unit___component_type() = wall__description_2d__ mutable struct wall__description_2d___limiter__unit{T} <: IDSvectorStaticElement{T} var"closed" :: Int - var"component_type" :: wall__description_2d___limiter__unit___component_type{T} + var"component_type"::wall__description_2d___limiter__unit___component_type{T} var"identifier" :: String var"name" :: String - var"outline" :: wall__description_2d___limiter__unit___outline{T} + var"outline"::wall__description_2d___limiter__unit___outline{T} var"phi_extensions" :: Matrix{<:T} var"phi_extensions_σ" :: Matrix{<:T} var"resistivity" :: T @@ -5790,8 +5790,8 @@ mutable struct wall__description_2d___limiter__unit{T} <: IDSvectorStaticElement _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___limiter__unit} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___limiter__unit} + _parent::WeakRef end function wall__description_2d___limiter__unit{T}() where T @@ -5811,8 +5811,8 @@ mutable struct wall__description_2d___limiter__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___limiter__type} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___limiter__type} + _parent::WeakRef end function wall__description_2d___limiter__type{T}() where T @@ -5823,14 +5823,14 @@ end wall__description_2d___limiter__type() = wall__description_2d___limiter__type{Float64}() mutable struct wall__description_2d___limiter{T} <: IDS{T} - var"type" :: wall__description_2d___limiter__type{T} - var"unit" :: IDSvector{wall__description_2d___limiter__unit{T}} + var"type"::wall__description_2d___limiter__type{T} + var"unit"::IDSvector{wall__description_2d___limiter__unit{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d___limiter} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d___limiter} + _parent::WeakRef end function wall__description_2d___limiter{T}() where T @@ -5843,16 +5843,16 @@ end wall__description_2d___limiter() = wall__description_2d___limiter{Float64}() mutable struct wall__description_2d{T} <: IDSvectorStaticElement{T} - var"limiter" :: wall__description_2d___limiter{T} - var"mobile" :: wall__description_2d___mobile{T} - var"type" :: wall__description_2d___type{T} - var"vessel" :: wall__description_2d___vessel{T} + var"limiter"::wall__description_2d___limiter{T} + var"mobile"::wall__description_2d___mobile{T} + var"type"::wall__description_2d___type{T} + var"vessel"::wall__description_2d___vessel{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__description_2d} - _parent :: WeakRef + _ref::Union{Nothing,wall__description_2d} + _parent::WeakRef end function wall__description_2d{T}() where T @@ -5877,8 +5877,8 @@ mutable struct wall__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__code__library} - _parent :: WeakRef + _ref::Union{Nothing,wall__code__library} + _parent::WeakRef end function wall__code__library{T}() where T @@ -5891,7 +5891,7 @@ wall__code__library() = wall__code__library{Float64}() mutable struct wall__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{wall__code__library{T}} + var"library"::IDSvector{wall__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -5901,8 +5901,8 @@ mutable struct wall__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall__code} - _parent :: WeakRef + _ref::Union{Nothing,wall__code} + _parent::WeakRef end function wall__code{T}() where T @@ -5914,24 +5914,24 @@ end wall__code() = wall__code{Float64}() mutable struct wall{T} <: IDStop{T} - var"code" :: wall__code{T} - var"description_2d" :: IDSvector{wall__description_2d{T}} - var"description_ggd" :: IDSvector{wall__description_ggd{T}} + var"code"::wall__code{T} + var"description_2d"::IDSvector{wall__description_2d{T}} + var"description_ggd"::IDSvector{wall__description_ggd{T}} var"first_wall_enclosed_volume" :: T var"first_wall_enclosed_volume_σ" :: T - var"first_wall_power_flux_peak" :: wall__first_wall_power_flux_peak{T} + var"first_wall_power_flux_peak"::wall__first_wall_power_flux_peak{T} var"first_wall_surface_area" :: T var"first_wall_surface_area_σ" :: T - var"global_quantities" :: wall__global_quantities{T} - var"ids_properties" :: wall__ids_properties{T} - var"temperature_reference" :: wall__temperature_reference{T} + var"global_quantities"::wall__global_quantities{T} + var"ids_properties"::wall__ids_properties{T} + var"temperature_reference"::wall__temperature_reference{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,wall} - _parent :: WeakRef + _ref::Union{Nothing,wall} + _parent::WeakRef end function wall{T}() where T @@ -5958,8 +5958,8 @@ mutable struct turbulence__profiles_2d___neutral___element{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__profiles_2d___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__profiles_2d___neutral___element} + _parent::WeakRef end function turbulence__profiles_2d___neutral___element{T}() where T @@ -5974,7 +5974,7 @@ mutable struct turbulence__profiles_2d___neutral{T} <: IDSvectorStaticElement{T} var"density_σ" :: Matrix{<:T} var"density_thermal" :: Matrix{<:T} var"density_thermal_σ" :: Matrix{<:T} - var"element" :: IDSvector{turbulence__profiles_2d___neutral___element{T}} + var"element"::IDSvector{turbulence__profiles_2d___neutral___element{T}} var"ion_index" :: Int var"label" :: String var"temperature" :: Matrix{<:T} @@ -5983,8 +5983,8 @@ mutable struct turbulence__profiles_2d___neutral{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__profiles_2d___neutral} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__profiles_2d___neutral} + _parent::WeakRef end function turbulence__profiles_2d___neutral{T}() where T @@ -6005,8 +6005,8 @@ mutable struct turbulence__profiles_2d___ion___element{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__profiles_2d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__profiles_2d___ion___element} + _parent::WeakRef end function turbulence__profiles_2d___ion___element{T}() where T @@ -6021,7 +6021,7 @@ mutable struct turbulence__profiles_2d___ion{T} <: IDSvectorIonElement{T} var"density_σ" :: Matrix{<:T} var"density_thermal" :: Matrix{<:T} var"density_thermal_σ" :: Matrix{<:T} - var"element" :: IDSvector{turbulence__profiles_2d___ion___element{T}} + var"element"::IDSvector{turbulence__profiles_2d___ion___element{T}} var"label" :: String var"neutral_index" :: Int var"temperature" :: Matrix{<:T} @@ -6032,8 +6032,8 @@ mutable struct turbulence__profiles_2d___ion{T} <: IDSvectorIonElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__profiles_2d___ion} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__profiles_2d___ion} + _parent::WeakRef end function turbulence__profiles_2d___ion{T}() where T @@ -6055,8 +6055,8 @@ mutable struct turbulence__profiles_2d___electrons{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__profiles_2d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__profiles_2d___electrons} + _parent::WeakRef end function turbulence__profiles_2d___electrons{T}() where T @@ -6067,16 +6067,16 @@ end turbulence__profiles_2d___electrons() = turbulence__profiles_2d___electrons{Float64}() mutable struct turbulence__profiles_2d{T} <: IDSvectorTimeElement{T} - var"electrons" :: turbulence__profiles_2d___electrons{T} - var"ion" :: IDSvector{turbulence__profiles_2d___ion{T}} - var"neutral" :: IDSvector{turbulence__profiles_2d___neutral{T}} + var"electrons"::turbulence__profiles_2d___electrons{T} + var"ion"::IDSvector{turbulence__profiles_2d___ion{T}} + var"neutral"::IDSvector{turbulence__profiles_2d___neutral{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__profiles_2d} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__profiles_2d} + _parent::WeakRef end function turbulence__profiles_2d{T}() where T @@ -6097,8 +6097,8 @@ mutable struct turbulence__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__version_put} + _parent::WeakRef end function turbulence__ids_properties__version_put{T}() where T @@ -6115,8 +6115,8 @@ mutable struct turbulence__ids_properties__provenance__node{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__provenance__node} + _parent::WeakRef end function turbulence__ids_properties__provenance__node{T}() where T @@ -6127,13 +6127,13 @@ end turbulence__ids_properties__provenance__node() = turbulence__ids_properties__provenance__node{Float64}() mutable struct turbulence__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{turbulence__ids_properties__provenance__node{T}} + var"node"::IDSvector{turbulence__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__provenance} + _parent::WeakRef end function turbulence__ids_properties__provenance{T}() where T @@ -6155,8 +6155,8 @@ mutable struct turbulence__ids_properties__plugins__node___readback{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__plugins__node___readback} + _parent::WeakRef end function turbulence__ids_properties__plugins__node___readback{T}() where T @@ -6177,8 +6177,8 @@ mutable struct turbulence__ids_properties__plugins__node___put_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function turbulence__ids_properties__plugins__node___put_operation{T}() where T @@ -6199,8 +6199,8 @@ mutable struct turbulence__ids_properties__plugins__node___get_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function turbulence__ids_properties__plugins__node___get_operation{T}() where T @@ -6211,16 +6211,16 @@ end turbulence__ids_properties__plugins__node___get_operation() = turbulence__ids_properties__plugins__node___get_operation{Float64}() mutable struct turbulence__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{turbulence__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{turbulence__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{turbulence__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{turbulence__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{turbulence__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{turbulence__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__plugins__node} + _parent::WeakRef end function turbulence__ids_properties__plugins__node{T}() where T @@ -6243,8 +6243,8 @@ mutable struct turbulence__ids_properties__plugins__infrastructure_put{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function turbulence__ids_properties__plugins__infrastructure_put{T}() where T @@ -6264,8 +6264,8 @@ mutable struct turbulence__ids_properties__plugins__infrastructure_get{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function turbulence__ids_properties__plugins__infrastructure_get{T}() where T @@ -6276,15 +6276,15 @@ end turbulence__ids_properties__plugins__infrastructure_get() = turbulence__ids_properties__plugins__infrastructure_get{Float64}() mutable struct turbulence__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: turbulence__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: turbulence__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{turbulence__ids_properties__plugins__node{T}} + var"infrastructure_get"::turbulence__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::turbulence__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{turbulence__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__plugins} + _parent::WeakRef end function turbulence__ids_properties__plugins{T}() where T @@ -6305,8 +6305,8 @@ mutable struct turbulence__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties__occurrence_type} + _parent::WeakRef end function turbulence__ids_properties__occurrence_type{T}() where T @@ -6322,17 +6322,17 @@ mutable struct turbulence__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: turbulence__ids_properties__occurrence_type{T} - var"plugins" :: turbulence__ids_properties__plugins{T} - var"provenance" :: turbulence__ids_properties__provenance{T} + var"occurrence_type"::turbulence__ids_properties__occurrence_type{T} + var"plugins"::turbulence__ids_properties__plugins{T} + var"provenance"::turbulence__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: turbulence__ids_properties__version_put{T} + var"version_put"::turbulence__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__ids_properties} + _parent::WeakRef end function turbulence__ids_properties{T}() where T @@ -6354,8 +6354,8 @@ mutable struct turbulence__grid_2d_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__grid_2d_type} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__grid_2d_type} + _parent::WeakRef end function turbulence__grid_2d_type{T}() where T @@ -6375,8 +6375,8 @@ mutable struct turbulence__grid_2d{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__grid_2d} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__grid_2d} + _parent::WeakRef end function turbulence__grid_2d{T}() where T @@ -6397,8 +6397,8 @@ mutable struct turbulence__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__code__library} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__code__library} + _parent::WeakRef end function turbulence__code__library{T}() where T @@ -6411,7 +6411,7 @@ turbulence__code__library() = turbulence__code__library{Float64}() mutable struct turbulence__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{turbulence__code__library{T}} + var"library"::IDSvector{turbulence__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -6421,8 +6421,8 @@ mutable struct turbulence__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence__code} - _parent :: WeakRef + _ref::Union{Nothing,turbulence__code} + _parent::WeakRef end function turbulence__code{T}() where T @@ -6434,18 +6434,18 @@ end turbulence__code() = turbulence__code{Float64}() mutable struct turbulence{T} <: IDStop{T} - var"code" :: turbulence__code{T} - var"grid_2d" :: IDSvector{turbulence__grid_2d{T}} - var"grid_2d_type" :: turbulence__grid_2d_type{T} - var"ids_properties" :: turbulence__ids_properties{T} - var"profiles_2d" :: IDSvector{turbulence__profiles_2d{T}} + var"code"::turbulence__code{T} + var"grid_2d"::IDSvector{turbulence__grid_2d{T}} + var"grid_2d_type"::turbulence__grid_2d_type{T} + var"ids_properties"::turbulence__ids_properties{T} + var"profiles_2d"::IDSvector{turbulence__profiles_2d{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,turbulence} - _parent :: WeakRef + _ref::Union{Nothing,turbulence} + _parent::WeakRef end function turbulence{T}() where T @@ -6469,8 +6469,8 @@ mutable struct transport_solver_numerics__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__vacuum_toroidal_field} + _parent::WeakRef end function transport_solver_numerics__vacuum_toroidal_field{T}() where T @@ -6488,8 +6488,8 @@ mutable struct transport_solver_numerics__time_step_min{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__time_step_min} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__time_step_min} + _parent::WeakRef end function transport_solver_numerics__time_step_min{T}() where T @@ -6507,8 +6507,8 @@ mutable struct transport_solver_numerics__time_step_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__time_step_average} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__time_step_average} + _parent::WeakRef end function transport_solver_numerics__time_step_average{T}() where T @@ -6526,8 +6526,8 @@ mutable struct transport_solver_numerics__time_step{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__time_step} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__time_step} + _parent::WeakRef end function transport_solver_numerics__time_step{T}() where T @@ -6560,8 +6560,8 @@ mutable struct transport_solver_numerics__solver_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___grid} + _parent::WeakRef end function transport_solver_numerics__solver_1d___grid{T}() where T @@ -6579,8 +6579,8 @@ mutable struct transport_solver_numerics__solver_1d___equation___primary_quantit _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation___primary_quantity__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation___primary_quantity__identifier} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation___primary_quantity__identifier{T}() where T @@ -6601,7 +6601,7 @@ mutable struct transport_solver_numerics__solver_1d___equation___primary_quantit var"d_dt_cphi_σ" :: Vector{<:T} var"d_dt_cr" :: Vector{<:T} var"d_dt_cr_σ" :: Vector{<:T} - var"identifier" :: transport_solver_numerics__solver_1d___equation___primary_quantity__identifier{T} + var"identifier"::transport_solver_numerics__solver_1d___equation___primary_quantity__identifier{T} var"ion_index" :: Int var"neutral_index" :: Int var"profile" :: Vector{<:T} @@ -6611,8 +6611,8 @@ mutable struct transport_solver_numerics__solver_1d___equation___primary_quantit _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation___primary_quantity} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation___primary_quantity} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation___primary_quantity{T}() where T @@ -6631,8 +6631,8 @@ mutable struct transport_solver_numerics__solver_1d___equation___convergence__de _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation___convergence__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation___convergence__delta_relative} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation___convergence__delta_relative{T}() where T @@ -6643,14 +6643,14 @@ end transport_solver_numerics__solver_1d___equation___convergence__delta_relative() = transport_solver_numerics__solver_1d___equation___convergence__delta_relative{Float64}() mutable struct transport_solver_numerics__solver_1d___equation___convergence{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__solver_1d___equation___convergence__delta_relative{T} + var"delta_relative"::transport_solver_numerics__solver_1d___equation___convergence__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation___convergence} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation___convergence} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation___convergence{T}() where T @@ -6669,8 +6669,8 @@ mutable struct transport_solver_numerics__solver_1d___equation___computation_mod _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation___computation_mode} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation___computation_mode} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation___computation_mode{T}() where T @@ -6687,8 +6687,8 @@ mutable struct transport_solver_numerics__solver_1d___equation___coefficient{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation___coefficient} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation___coefficient} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation___coefficient{T}() where T @@ -6706,8 +6706,8 @@ mutable struct transport_solver_numerics__solver_1d___equation___boundary_condit _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation___boundary_condition___type} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation___boundary_condition___type} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation___boundary_condition___type{T}() where T @@ -6720,15 +6720,15 @@ transport_solver_numerics__solver_1d___equation___boundary_condition___type() = mutable struct transport_solver_numerics__solver_1d___equation___boundary_condition{T} <: IDSvectorStaticElement{T} var"position" :: T var"position_σ" :: T - var"type" :: transport_solver_numerics__solver_1d___equation___boundary_condition___type{T} + var"type"::transport_solver_numerics__solver_1d___equation___boundary_condition___type{T} var"value" :: Vector{<:T} var"value_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation___boundary_condition} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation___boundary_condition} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation___boundary_condition{T}() where T @@ -6740,17 +6740,17 @@ end transport_solver_numerics__solver_1d___equation___boundary_condition() = transport_solver_numerics__solver_1d___equation___boundary_condition{Float64}() mutable struct transport_solver_numerics__solver_1d___equation{T} <: IDSvectorStaticElement{T} - var"boundary_condition" :: IDSvector{transport_solver_numerics__solver_1d___equation___boundary_condition{T}} - var"coefficient" :: IDSvector{transport_solver_numerics__solver_1d___equation___coefficient{T}} - var"computation_mode" :: transport_solver_numerics__solver_1d___equation___computation_mode{T} - var"convergence" :: transport_solver_numerics__solver_1d___equation___convergence{T} - var"primary_quantity" :: transport_solver_numerics__solver_1d___equation___primary_quantity{T} + var"boundary_condition"::IDSvector{transport_solver_numerics__solver_1d___equation___boundary_condition{T}} + var"coefficient"::IDSvector{transport_solver_numerics__solver_1d___equation___coefficient{T}} + var"computation_mode"::transport_solver_numerics__solver_1d___equation___computation_mode{T} + var"convergence"::transport_solver_numerics__solver_1d___equation___convergence{T} + var"primary_quantity"::transport_solver_numerics__solver_1d___equation___primary_quantity{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___equation} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___equation} + _parent::WeakRef end function transport_solver_numerics__solver_1d___equation{T}() where T @@ -6773,8 +6773,8 @@ mutable struct transport_solver_numerics__solver_1d___control_parameters__real0d _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___control_parameters__real0d} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___control_parameters__real0d} + _parent::WeakRef end function transport_solver_numerics__solver_1d___control_parameters__real0d{T}() where T @@ -6791,8 +6791,8 @@ mutable struct transport_solver_numerics__solver_1d___control_parameters__intege _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___control_parameters__integer0d} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___control_parameters__integer0d} + _parent::WeakRef end function transport_solver_numerics__solver_1d___control_parameters__integer0d{T}() where T @@ -6803,14 +6803,14 @@ end transport_solver_numerics__solver_1d___control_parameters__integer0d() = transport_solver_numerics__solver_1d___control_parameters__integer0d{Float64}() mutable struct transport_solver_numerics__solver_1d___control_parameters{T} <: IDS{T} - var"integer0d" :: IDSvector{transport_solver_numerics__solver_1d___control_parameters__integer0d{T}} - var"real0d" :: IDSvector{transport_solver_numerics__solver_1d___control_parameters__real0d{T}} + var"integer0d"::IDSvector{transport_solver_numerics__solver_1d___control_parameters__integer0d{T}} + var"real0d"::IDSvector{transport_solver_numerics__solver_1d___control_parameters__real0d{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d___control_parameters} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d___control_parameters} + _parent::WeakRef end function transport_solver_numerics__solver_1d___control_parameters{T}() where T @@ -6823,20 +6823,20 @@ end transport_solver_numerics__solver_1d___control_parameters() = transport_solver_numerics__solver_1d___control_parameters{Float64}() mutable struct transport_solver_numerics__solver_1d{T} <: IDSvectorTimeElement{T} - var"control_parameters" :: transport_solver_numerics__solver_1d___control_parameters{T} + var"control_parameters"::transport_solver_numerics__solver_1d___control_parameters{T} var"d_dvolume_drho_tor_dt" :: Vector{<:T} var"d_dvolume_drho_tor_dt_σ" :: Vector{<:T} var"drho_tor_dt" :: Vector{<:T} var"drho_tor_dt_σ" :: Vector{<:T} - var"equation" :: IDSvector{transport_solver_numerics__solver_1d___equation{T}} - var"grid" :: transport_solver_numerics__solver_1d___grid{T} + var"equation"::IDSvector{transport_solver_numerics__solver_1d___equation{T}} + var"grid"::transport_solver_numerics__solver_1d___grid{T} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver_1d} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver_1d} + _parent::WeakRef end function transport_solver_numerics__solver_1d{T}() where T @@ -6857,8 +6857,8 @@ mutable struct transport_solver_numerics__solver{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__solver} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__solver} + _parent::WeakRef end function transport_solver_numerics__solver{T}() where T @@ -6876,8 +6876,8 @@ mutable struct transport_solver_numerics__restart_files{T} <: IDSvectorTimeEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__restart_files} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__restart_files} + _parent::WeakRef end function transport_solver_numerics__restart_files{T}() where T @@ -6895,8 +6895,8 @@ mutable struct transport_solver_numerics__primary_coordinate{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__primary_coordinate} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__primary_coordinate} + _parent::WeakRef end function transport_solver_numerics__primary_coordinate{T}() where T @@ -6914,8 +6914,8 @@ mutable struct transport_solver_numerics__ids_properties__version_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__version_put} + _parent::WeakRef end function transport_solver_numerics__ids_properties__version_put{T}() where T @@ -6932,8 +6932,8 @@ mutable struct transport_solver_numerics__ids_properties__provenance__node{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__provenance__node} + _parent::WeakRef end function transport_solver_numerics__ids_properties__provenance__node{T}() where T @@ -6944,13 +6944,13 @@ end transport_solver_numerics__ids_properties__provenance__node() = transport_solver_numerics__ids_properties__provenance__node{Float64}() mutable struct transport_solver_numerics__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{transport_solver_numerics__ids_properties__provenance__node{T}} + var"node"::IDSvector{transport_solver_numerics__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__provenance} + _parent::WeakRef end function transport_solver_numerics__ids_properties__provenance{T}() where T @@ -6972,8 +6972,8 @@ mutable struct transport_solver_numerics__ids_properties__plugins__node___readba _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__plugins__node___readback} + _parent::WeakRef end function transport_solver_numerics__ids_properties__plugins__node___readback{T}() where T @@ -6994,8 +6994,8 @@ mutable struct transport_solver_numerics__ids_properties__plugins__node___put_op _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function transport_solver_numerics__ids_properties__plugins__node___put_operation{T}() where T @@ -7016,8 +7016,8 @@ mutable struct transport_solver_numerics__ids_properties__plugins__node___get_op _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function transport_solver_numerics__ids_properties__plugins__node___get_operation{T}() where T @@ -7028,16 +7028,16 @@ end transport_solver_numerics__ids_properties__plugins__node___get_operation() = transport_solver_numerics__ids_properties__plugins__node___get_operation{Float64}() mutable struct transport_solver_numerics__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{transport_solver_numerics__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{transport_solver_numerics__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{transport_solver_numerics__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{transport_solver_numerics__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{transport_solver_numerics__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{transport_solver_numerics__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__plugins__node} + _parent::WeakRef end function transport_solver_numerics__ids_properties__plugins__node{T}() where T @@ -7060,8 +7060,8 @@ mutable struct transport_solver_numerics__ids_properties__plugins__infrastructur _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function transport_solver_numerics__ids_properties__plugins__infrastructure_put{T}() where T @@ -7081,8 +7081,8 @@ mutable struct transport_solver_numerics__ids_properties__plugins__infrastructur _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function transport_solver_numerics__ids_properties__plugins__infrastructure_get{T}() where T @@ -7093,15 +7093,15 @@ end transport_solver_numerics__ids_properties__plugins__infrastructure_get() = transport_solver_numerics__ids_properties__plugins__infrastructure_get{Float64}() mutable struct transport_solver_numerics__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: transport_solver_numerics__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: transport_solver_numerics__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{transport_solver_numerics__ids_properties__plugins__node{T}} + var"infrastructure_get"::transport_solver_numerics__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::transport_solver_numerics__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{transport_solver_numerics__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__plugins} + _parent::WeakRef end function transport_solver_numerics__ids_properties__plugins{T}() where T @@ -7122,8 +7122,8 @@ mutable struct transport_solver_numerics__ids_properties__occurrence_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties__occurrence_type} + _parent::WeakRef end function transport_solver_numerics__ids_properties__occurrence_type{T}() where T @@ -7139,17 +7139,17 @@ mutable struct transport_solver_numerics__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: transport_solver_numerics__ids_properties__occurrence_type{T} - var"plugins" :: transport_solver_numerics__ids_properties__plugins{T} - var"provenance" :: transport_solver_numerics__ids_properties__provenance{T} + var"occurrence_type"::transport_solver_numerics__ids_properties__occurrence_type{T} + var"plugins"::transport_solver_numerics__ids_properties__plugins{T} + var"provenance"::transport_solver_numerics__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: transport_solver_numerics__ids_properties__version_put{T} + var"version_put"::transport_solver_numerics__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__ids_properties} + _parent::WeakRef end function transport_solver_numerics__ids_properties{T}() where T @@ -7171,8 +7171,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion___state___neutral _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state___neutral_type} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion___state___neutral_type{T}() where T @@ -7203,8 +7203,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion___state___d_dt{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state___d_dt} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state___d_dt} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion___state___d_dt{T}() where T @@ -7235,8 +7235,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion___state___d_drho_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state___d_drho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state___d_drho_tor_norm} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion___state___d_drho_tor_norm{T}() where T @@ -7267,8 +7267,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion___state___d2_drho _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state___d2_drho_tor_norm2} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state___d2_drho_tor_norm2} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion___state___d2_drho_tor_norm2{T}() where T @@ -7279,13 +7279,13 @@ end transport_solver_numerics__derivatives_1d___ion___state___d2_drho_tor_norm2() = transport_solver_numerics__derivatives_1d___ion___state___d2_drho_tor_norm2{Float64}() mutable struct transport_solver_numerics__derivatives_1d___ion___state{T} <: IDSvectorStaticElement{T} - var"d2_drho_tor_norm2" :: transport_solver_numerics__derivatives_1d___ion___state___d2_drho_tor_norm2{T} - var"d_drho_tor_norm" :: transport_solver_numerics__derivatives_1d___ion___state___d_drho_tor_norm{T} - var"d_dt" :: transport_solver_numerics__derivatives_1d___ion___state___d_dt{T} + var"d2_drho_tor_norm2"::transport_solver_numerics__derivatives_1d___ion___state___d2_drho_tor_norm2{T} + var"d_drho_tor_norm"::transport_solver_numerics__derivatives_1d___ion___state___d_drho_tor_norm{T} + var"d_dt"::transport_solver_numerics__derivatives_1d___ion___state___d_dt{T} var"electron_configuration" :: String var"is_neutral" :: Int var"label" :: String - var"neutral_type" :: transport_solver_numerics__derivatives_1d___ion___state___neutral_type{T} + var"neutral_type"::transport_solver_numerics__derivatives_1d___ion___state___neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -7297,8 +7297,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion___state{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion___state} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion___state{T}() where T @@ -7333,8 +7333,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion___d_dt{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion___d_dt} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion___d_dt} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion___d_dt{T}() where T @@ -7365,8 +7365,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion___d_drho_tor_norm _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion___d_drho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion___d_drho_tor_norm} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion___d_drho_tor_norm{T}() where T @@ -7397,8 +7397,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion___d2_drho_tor_nor _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion___d2_drho_tor_norm2} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion___d2_drho_tor_norm2} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion___d2_drho_tor_norm2{T}() where T @@ -7411,12 +7411,12 @@ transport_solver_numerics__derivatives_1d___ion___d2_drho_tor_norm2() = transpor mutable struct transport_solver_numerics__derivatives_1d___ion{T} <: IDSvectorIonElement{T} var"a" :: T var"a_σ" :: T - var"d2_drho_tor_norm2" :: transport_solver_numerics__derivatives_1d___ion___d2_drho_tor_norm2{T} - var"d_drho_tor_norm" :: transport_solver_numerics__derivatives_1d___ion___d_drho_tor_norm{T} - var"d_dt" :: transport_solver_numerics__derivatives_1d___ion___d_dt{T} + var"d2_drho_tor_norm2"::transport_solver_numerics__derivatives_1d___ion___d2_drho_tor_norm2{T} + var"d_drho_tor_norm"::transport_solver_numerics__derivatives_1d___ion___d_drho_tor_norm{T} + var"d_dt"::transport_solver_numerics__derivatives_1d___ion___d_dt{T} var"label" :: String var"multiple_states_flag" :: Int - var"state" :: IDSvector{transport_solver_numerics__derivatives_1d___ion___state{T}} + var"state"::IDSvector{transport_solver_numerics__derivatives_1d___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T var"z_n" :: T @@ -7425,8 +7425,8 @@ mutable struct transport_solver_numerics__derivatives_1d___ion{T} <: IDSvectorIo _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___ion} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___ion{T}() where T @@ -7463,8 +7463,8 @@ mutable struct transport_solver_numerics__derivatives_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___grid} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___grid{T}() where T @@ -7495,8 +7495,8 @@ mutable struct transport_solver_numerics__derivatives_1d___electrons__d_dt{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___electrons__d_dt} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___electrons__d_dt} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___electrons__d_dt{T}() where T @@ -7527,8 +7527,8 @@ mutable struct transport_solver_numerics__derivatives_1d___electrons__d_drho_tor _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___electrons__d_drho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___electrons__d_drho_tor_norm} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___electrons__d_drho_tor_norm{T}() where T @@ -7559,8 +7559,8 @@ mutable struct transport_solver_numerics__derivatives_1d___electrons__d2_drho_to _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___electrons__d2_drho_tor_norm2} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___electrons__d2_drho_tor_norm2} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___electrons__d2_drho_tor_norm2{T}() where T @@ -7571,15 +7571,15 @@ end transport_solver_numerics__derivatives_1d___electrons__d2_drho_tor_norm2() = transport_solver_numerics__derivatives_1d___electrons__d2_drho_tor_norm2{Float64}() mutable struct transport_solver_numerics__derivatives_1d___electrons{T} <: IDS{T} - var"d2_drho_tor_norm2" :: transport_solver_numerics__derivatives_1d___electrons__d2_drho_tor_norm2{T} - var"d_drho_tor_norm" :: transport_solver_numerics__derivatives_1d___electrons__d_drho_tor_norm{T} - var"d_dt" :: transport_solver_numerics__derivatives_1d___electrons__d_dt{T} + var"d2_drho_tor_norm2"::transport_solver_numerics__derivatives_1d___electrons__d2_drho_tor_norm2{T} + var"d_drho_tor_norm"::transport_solver_numerics__derivatives_1d___electrons__d_drho_tor_norm{T} + var"d_dt"::transport_solver_numerics__derivatives_1d___electrons__d_dt{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___electrons} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___electrons{T}() where T @@ -7601,8 +7601,8 @@ mutable struct transport_solver_numerics__derivatives_1d___d_dt{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___d_dt} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___d_dt} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___d_dt{T}() where T @@ -7621,8 +7621,8 @@ mutable struct transport_solver_numerics__derivatives_1d___d_drho_tor_norm{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___d_drho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___d_drho_tor_norm} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___d_drho_tor_norm{T}() where T @@ -7641,8 +7641,8 @@ mutable struct transport_solver_numerics__derivatives_1d___d2_drho_tor_norm2{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d___d2_drho_tor_norm2} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d___d2_drho_tor_norm2} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d___d2_drho_tor_norm2{T}() where T @@ -7653,11 +7653,11 @@ end transport_solver_numerics__derivatives_1d___d2_drho_tor_norm2() = transport_solver_numerics__derivatives_1d___d2_drho_tor_norm2{Float64}() mutable struct transport_solver_numerics__derivatives_1d{T} <: IDSvectorTimeElement{T} - var"d2_drho_tor_norm2" :: transport_solver_numerics__derivatives_1d___d2_drho_tor_norm2{T} + var"d2_drho_tor_norm2"::transport_solver_numerics__derivatives_1d___d2_drho_tor_norm2{T} var"d2psi_drho_tor2" :: Vector{<:T} var"d2psi_drho_tor2_σ" :: Vector{<:T} - var"d_drho_tor_norm" :: transport_solver_numerics__derivatives_1d___d_drho_tor_norm{T} - var"d_dt" :: transport_solver_numerics__derivatives_1d___d_dt{T} + var"d_drho_tor_norm"::transport_solver_numerics__derivatives_1d___d_drho_tor_norm{T} + var"d_dt"::transport_solver_numerics__derivatives_1d___d_dt{T} var"d_dvolume_drho_tor_dt" :: Vector{<:T} var"d_dvolume_drho_tor_dt_σ" :: Vector{<:T} var"dpsi_drho_tor" :: Vector{<:T} @@ -7670,16 +7670,16 @@ mutable struct transport_solver_numerics__derivatives_1d{T} <: IDSvectorTimeElem var"dpsi_dt_crho_tor_norm_σ" :: Vector{<:T} var"drho_tor_dt" :: Vector{<:T} var"drho_tor_dt_σ" :: Vector{<:T} - var"electrons" :: transport_solver_numerics__derivatives_1d___electrons{T} - var"grid" :: transport_solver_numerics__derivatives_1d___grid{T} - var"ion" :: IDSvector{transport_solver_numerics__derivatives_1d___ion{T}} + var"electrons"::transport_solver_numerics__derivatives_1d___electrons{T} + var"grid"::transport_solver_numerics__derivatives_1d___grid{T} + var"ion"::IDSvector{transport_solver_numerics__derivatives_1d___ion{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__derivatives_1d} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__derivatives_1d} + _parent::WeakRef end function transport_solver_numerics__derivatives_1d{T}() where T @@ -7703,8 +7703,8 @@ mutable struct transport_solver_numerics__convergence__time_step{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__time_step} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__time_step} + _parent::WeakRef end function transport_solver_numerics__convergence__time_step{T}() where T @@ -7722,8 +7722,8 @@ mutable struct transport_solver_numerics__convergence__equations___ion___state__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___particles__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___particles__delta_relative} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___state___particles__delta_relative{T}() where T @@ -7734,14 +7734,14 @@ end transport_solver_numerics__convergence__equations___ion___state___particles__delta_relative() = transport_solver_numerics__convergence__equations___ion___state___particles__delta_relative{Float64}() mutable struct transport_solver_numerics__convergence__equations___ion___state___particles{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__convergence__equations___ion___state___particles__delta_relative{T} + var"delta_relative"::transport_solver_numerics__convergence__equations___ion___state___particles__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___particles} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___state___particles{T}() where T @@ -7760,8 +7760,8 @@ mutable struct transport_solver_numerics__convergence__equations___ion___state__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___neutral_type} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___state___neutral_type{T}() where T @@ -7779,8 +7779,8 @@ mutable struct transport_solver_numerics__convergence__equations___ion___state__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___energy__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___energy__delta_relative} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___state___energy__delta_relative{T}() where T @@ -7791,14 +7791,14 @@ end transport_solver_numerics__convergence__equations___ion___state___energy__delta_relative() = transport_solver_numerics__convergence__equations___ion___state___energy__delta_relative{Float64}() mutable struct transport_solver_numerics__convergence__equations___ion___state___energy{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__convergence__equations___ion___state___energy__delta_relative{T} + var"delta_relative"::transport_solver_numerics__convergence__equations___ion___state___energy__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___state___energy} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___state___energy{T}() where T @@ -7811,11 +7811,11 @@ transport_solver_numerics__convergence__equations___ion___state___energy() = tra mutable struct transport_solver_numerics__convergence__equations___ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: transport_solver_numerics__convergence__equations___ion___state___energy{T} + var"energy"::transport_solver_numerics__convergence__equations___ion___state___energy{T} var"is_neutral" :: Int var"label" :: String - var"neutral_type" :: transport_solver_numerics__convergence__equations___ion___state___neutral_type{T} - var"particles" :: transport_solver_numerics__convergence__equations___ion___state___particles{T} + var"neutral_type"::transport_solver_numerics__convergence__equations___ion___state___neutral_type{T} + var"particles"::transport_solver_numerics__convergence__equations___ion___state___particles{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -7827,8 +7827,8 @@ mutable struct transport_solver_numerics__convergence__equations___ion___state{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___state} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___state{T}() where T @@ -7849,8 +7849,8 @@ mutable struct transport_solver_numerics__convergence__equations___ion___particl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___particles__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___particles__delta_relative} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___particles__delta_relative{T}() where T @@ -7861,14 +7861,14 @@ end transport_solver_numerics__convergence__equations___ion___particles__delta_relative() = transport_solver_numerics__convergence__equations___ion___particles__delta_relative{Float64}() mutable struct transport_solver_numerics__convergence__equations___ion___particles{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__convergence__equations___ion___particles__delta_relative{T} + var"delta_relative"::transport_solver_numerics__convergence__equations___ion___particles__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___particles} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___particles{T}() where T @@ -7887,8 +7887,8 @@ mutable struct transport_solver_numerics__convergence__equations___ion___energy_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___energy__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___energy__delta_relative} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___energy__delta_relative{T}() where T @@ -7899,14 +7899,14 @@ end transport_solver_numerics__convergence__equations___ion___energy__delta_relative() = transport_solver_numerics__convergence__equations___ion___energy__delta_relative{Float64}() mutable struct transport_solver_numerics__convergence__equations___ion___energy{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__convergence__equations___ion___energy__delta_relative{T} + var"delta_relative"::transport_solver_numerics__convergence__equations___ion___energy__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion___energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion___energy} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion___energy{T}() where T @@ -7920,11 +7920,11 @@ transport_solver_numerics__convergence__equations___ion___energy() = transport_s mutable struct transport_solver_numerics__convergence__equations___ion{T} <: IDSvectorIonElement{T} var"a" :: T var"a_σ" :: T - var"energy" :: transport_solver_numerics__convergence__equations___ion___energy{T} + var"energy"::transport_solver_numerics__convergence__equations___ion___energy{T} var"label" :: String var"multiple_states_flag" :: Int - var"particles" :: transport_solver_numerics__convergence__equations___ion___particles{T} - var"state" :: IDSvector{transport_solver_numerics__convergence__equations___ion___state{T}} + var"particles"::transport_solver_numerics__convergence__equations___ion___particles{T} + var"state"::IDSvector{transport_solver_numerics__convergence__equations___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T var"z_n" :: T @@ -7933,8 +7933,8 @@ mutable struct transport_solver_numerics__convergence__equations___ion{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___ion} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___ion} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___ion{T}() where T @@ -7955,8 +7955,8 @@ mutable struct transport_solver_numerics__convergence__equations___energy_ion_to _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___energy_ion_total__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___energy_ion_total__delta_relative} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___energy_ion_total__delta_relative{T}() where T @@ -7967,14 +7967,14 @@ end transport_solver_numerics__convergence__equations___energy_ion_total__delta_relative() = transport_solver_numerics__convergence__equations___energy_ion_total__delta_relative{Float64}() mutable struct transport_solver_numerics__convergence__equations___energy_ion_total{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__convergence__equations___energy_ion_total__delta_relative{T} + var"delta_relative"::transport_solver_numerics__convergence__equations___energy_ion_total__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___energy_ion_total} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___energy_ion_total} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___energy_ion_total{T}() where T @@ -7993,8 +7993,8 @@ mutable struct transport_solver_numerics__convergence__equations___electrons__pa _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___electrons__particles__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___electrons__particles__delta_relative} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___electrons__particles__delta_relative{T}() where T @@ -8005,14 +8005,14 @@ end transport_solver_numerics__convergence__equations___electrons__particles__delta_relative() = transport_solver_numerics__convergence__equations___electrons__particles__delta_relative{Float64}() mutable struct transport_solver_numerics__convergence__equations___electrons__particles{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__convergence__equations___electrons__particles__delta_relative{T} + var"delta_relative"::transport_solver_numerics__convergence__equations___electrons__particles__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___electrons__particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___electrons__particles} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___electrons__particles{T}() where T @@ -8031,8 +8031,8 @@ mutable struct transport_solver_numerics__convergence__equations___electrons__en _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___electrons__energy__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___electrons__energy__delta_relative} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___electrons__energy__delta_relative{T}() where T @@ -8043,14 +8043,14 @@ end transport_solver_numerics__convergence__equations___electrons__energy__delta_relative() = transport_solver_numerics__convergence__equations___electrons__energy__delta_relative{Float64}() mutable struct transport_solver_numerics__convergence__equations___electrons__energy{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__convergence__equations___electrons__energy__delta_relative{T} + var"delta_relative"::transport_solver_numerics__convergence__equations___electrons__energy__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___electrons__energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___electrons__energy} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___electrons__energy{T}() where T @@ -8062,14 +8062,14 @@ end transport_solver_numerics__convergence__equations___electrons__energy() = transport_solver_numerics__convergence__equations___electrons__energy{Float64}() mutable struct transport_solver_numerics__convergence__equations___electrons{T} <: IDS{T} - var"energy" :: transport_solver_numerics__convergence__equations___electrons__energy{T} - var"particles" :: transport_solver_numerics__convergence__equations___electrons__particles{T} + var"energy"::transport_solver_numerics__convergence__equations___electrons__energy{T} + var"particles"::transport_solver_numerics__convergence__equations___electrons__particles{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___electrons} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___electrons} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___electrons{T}() where T @@ -8089,8 +8089,8 @@ mutable struct transport_solver_numerics__convergence__equations___current__delt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___current__delta_relative} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___current__delta_relative} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___current__delta_relative{T}() where T @@ -8101,14 +8101,14 @@ end transport_solver_numerics__convergence__equations___current__delta_relative() = transport_solver_numerics__convergence__equations___current__delta_relative{Float64}() mutable struct transport_solver_numerics__convergence__equations___current{T} <: IDS{T} - var"delta_relative" :: transport_solver_numerics__convergence__equations___current__delta_relative{T} + var"delta_relative"::transport_solver_numerics__convergence__equations___current__delta_relative{T} var"iterations_n" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations___current} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations___current} + _parent::WeakRef end function transport_solver_numerics__convergence__equations___current{T}() where T @@ -8120,17 +8120,17 @@ end transport_solver_numerics__convergence__equations___current() = transport_solver_numerics__convergence__equations___current{Float64}() mutable struct transport_solver_numerics__convergence__equations{T} <: IDSvectorTimeElement{T} - var"current" :: transport_solver_numerics__convergence__equations___current{T} - var"electrons" :: transport_solver_numerics__convergence__equations___electrons{T} - var"energy_ion_total" :: transport_solver_numerics__convergence__equations___energy_ion_total{T} - var"ion" :: IDSvector{transport_solver_numerics__convergence__equations___ion{T}} + var"current"::transport_solver_numerics__convergence__equations___current{T} + var"electrons"::transport_solver_numerics__convergence__equations___electrons{T} + var"energy_ion_total"::transport_solver_numerics__convergence__equations___energy_ion_total{T} + var"ion"::IDSvector{transport_solver_numerics__convergence__equations___ion{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence__equations} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence__equations} + _parent::WeakRef end function transport_solver_numerics__convergence__equations{T}() where T @@ -8145,14 +8145,14 @@ end transport_solver_numerics__convergence__equations() = transport_solver_numerics__convergence__equations{Float64}() mutable struct transport_solver_numerics__convergence{T} <: IDS{T} - var"equations" :: IDSvector{transport_solver_numerics__convergence__equations{T}} - var"time_step" :: transport_solver_numerics__convergence__time_step{T} + var"equations"::IDSvector{transport_solver_numerics__convergence__equations{T}} + var"time_step"::transport_solver_numerics__convergence__time_step{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__convergence} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__convergence} + _parent::WeakRef end function transport_solver_numerics__convergence{T}() where T @@ -8175,8 +8175,8 @@ mutable struct transport_solver_numerics__code__library{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__code__library} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__code__library} + _parent::WeakRef end function transport_solver_numerics__code__library{T}() where T @@ -8189,7 +8189,7 @@ transport_solver_numerics__code__library() = transport_solver_numerics__code__li mutable struct transport_solver_numerics__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{transport_solver_numerics__code__library{T}} + var"library"::IDSvector{transport_solver_numerics__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -8199,8 +8199,8 @@ mutable struct transport_solver_numerics__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__code} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__code} + _parent::WeakRef end function transport_solver_numerics__code{T}() where T @@ -8219,8 +8219,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___state_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___particles___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___particles___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___state___particles___identifier{T}() where T @@ -8233,15 +8233,15 @@ transport_solver_numerics__boundary_conditions_ggd___ion___state___particles___i mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___state___particles{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___ion___state___particles___identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___ion___state___particles___identifier{T} var"values" :: Matrix{<:T} var"values_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___particles} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___state___particles{T}() where T @@ -8260,8 +8260,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___state_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___neutral_type} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___state___neutral_type{T}() where T @@ -8279,8 +8279,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___state_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___energy___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___energy___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___state___energy___identifier{T}() where T @@ -8293,15 +8293,15 @@ transport_solver_numerics__boundary_conditions_ggd___ion___state___energy___iden mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___state___energy{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___ion___state___energy___identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___ion___state___energy___identifier{T} var"values" :: Matrix{<:T} var"values_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state___energy} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___state___energy{T}() where T @@ -8314,11 +8314,11 @@ transport_solver_numerics__boundary_conditions_ggd___ion___state___energy() = tr mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___state___energy{T}} + var"energy"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___state___energy{T}} var"is_neutral" :: Int var"label" :: String - var"neutral_type" :: transport_solver_numerics__boundary_conditions_ggd___ion___state___neutral_type{T} - var"particles" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___state___particles{T}} + var"neutral_type"::transport_solver_numerics__boundary_conditions_ggd___ion___state___neutral_type{T} + var"particles"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___state___particles{T}} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -8330,8 +8330,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___state{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___state} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___state{T}() where T @@ -8352,8 +8352,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___partic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___particles___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___particles___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___particles___identifier{T}() where T @@ -8366,15 +8366,15 @@ transport_solver_numerics__boundary_conditions_ggd___ion___particles___identifie mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___particles{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___ion___particles___identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___ion___particles___identifier{T} var"values" :: Matrix{<:T} var"values_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___particles} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___particles{T}() where T @@ -8393,8 +8393,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___energy _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___energy___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___energy___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___energy___identifier{T}() where T @@ -8407,15 +8407,15 @@ transport_solver_numerics__boundary_conditions_ggd___ion___energy___identifier() mutable struct transport_solver_numerics__boundary_conditions_ggd___ion___energy{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___ion___energy___identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___ion___energy___identifier{T} var"values" :: Matrix{<:T} var"values_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion___energy} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion___energy{T}() where T @@ -8429,11 +8429,11 @@ transport_solver_numerics__boundary_conditions_ggd___ion___energy() = transport_ mutable struct transport_solver_numerics__boundary_conditions_ggd___ion{T} <: IDSvectorIonElement{T} var"a" :: T var"a_σ" :: T - var"energy" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___energy{T}} + var"energy"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___energy{T}} var"label" :: String var"multiple_states_flag" :: Int - var"particles" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___particles{T}} - var"state" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___state{T}} + var"particles"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___particles{T}} + var"state"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T var"z_n" :: T @@ -8442,8 +8442,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___ion{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___ion} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___ion{T}() where T @@ -8463,8 +8463,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__space_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object___boundary} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object___boundary{T}() where T @@ -8475,7 +8475,7 @@ end transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object___boundary() = transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object___boundary{Float64}() mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object{T} <: IDSvectorStaticElement{T} - var"boundary" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -8487,8 +8487,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__space_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object{T}() where T @@ -8507,8 +8507,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__space_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___geometry_content} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___geometry_content{T}() where T @@ -8519,14 +8519,14 @@ end transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___geometry_content() = transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___geometry_content{Float64}() mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension{T} <: IDSvectorStaticElement{T} - var"geometry_content" :: transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object{T}} + var"geometry_content"::transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension{T}() where T @@ -8546,8 +8546,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__space_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__space___identifier{T}() where T @@ -8565,8 +8565,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__space_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space___geometry_type} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__space___geometry_type{T}() where T @@ -8578,15 +8578,15 @@ transport_solver_numerics__boundary_conditions_ggd___grid__space___geometry_type mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__space{T} <: IDSvectorStaticElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: transport_solver_numerics__boundary_conditions_ggd___grid__space___geometry_type{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___grid__space___identifier{T} - var"objects_per_dimension" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension{T}} + var"geometry_type"::transport_solver_numerics__boundary_conditions_ggd___grid__space___geometry_type{T} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___grid__space___identifier{T} + var"objects_per_dimension"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__space} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__space{T}() where T @@ -8607,8 +8607,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__identi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__identifier{T}() where T @@ -8629,8 +8629,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__grid_s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___metric} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___metric{T}() where T @@ -8648,8 +8648,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__grid_s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___identifier{T}() where T @@ -8667,8 +8667,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__grid_s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element___object} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element___object{T}() where T @@ -8679,13 +8679,13 @@ end transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element___object() = transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element___object{Float64}() mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element{T} <: IDSvectorStaticElement{T} - var"object" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element___object{T}} + var"object"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element{T}() where T @@ -8707,8 +8707,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__grid_s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___base} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___base{T}() where T @@ -8719,17 +8719,17 @@ end transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___base() = transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___base{Float64}() mutable struct transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset{T} <: IDSvectorStaticElement{T} - var"base" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___base{T}} + var"base"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element{T}} - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___identifier{T} - var"metric" :: transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___metric{T} + var"element"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___element{T}} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___identifier{T} + var"metric"::transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset{T}() where T @@ -8744,16 +8744,16 @@ end transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset() = transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset{Float64}() mutable struct transport_solver_numerics__boundary_conditions_ggd___grid{T} <: IDS{T} - var"grid_subset" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset{T}} - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___grid__identifier{T} + var"grid_subset"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__grid_subset{T}} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___grid__identifier{T} var"path" :: String - var"space" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__space{T}} + var"space"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___grid__space{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___grid} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___grid{T}() where T @@ -8774,8 +8774,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___electrons__p _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons__particles___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons__particles___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___electrons__particles___identifier{T}() where T @@ -8788,15 +8788,15 @@ transport_solver_numerics__boundary_conditions_ggd___electrons__particles___iden mutable struct transport_solver_numerics__boundary_conditions_ggd___electrons__particles{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___electrons__particles___identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___electrons__particles___identifier{T} var"values" :: Matrix{<:T} var"values_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons__particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons__particles} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___electrons__particles{T}() where T @@ -8815,8 +8815,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___electrons__e _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons__energy___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons__energy___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___electrons__energy___identifier{T}() where T @@ -8829,15 +8829,15 @@ transport_solver_numerics__boundary_conditions_ggd___electrons__energy___identif mutable struct transport_solver_numerics__boundary_conditions_ggd___electrons__energy{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___electrons__energy___identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___electrons__energy___identifier{T} var"values" :: Matrix{<:T} var"values_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons__energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons__energy} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___electrons__energy{T}() where T @@ -8849,14 +8849,14 @@ end transport_solver_numerics__boundary_conditions_ggd___electrons__energy() = transport_solver_numerics__boundary_conditions_ggd___electrons__energy{Float64}() mutable struct transport_solver_numerics__boundary_conditions_ggd___electrons{T} <: IDS{T} - var"energy" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___electrons__energy{T}} - var"particles" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___electrons__particles{T}} + var"energy"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___electrons__energy{T}} + var"particles"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___electrons__particles{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___electrons} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___electrons{T}() where T @@ -8876,8 +8876,8 @@ mutable struct transport_solver_numerics__boundary_conditions_ggd___current___id _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___current___identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___current___identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___current___identifier{T}() where T @@ -8890,15 +8890,15 @@ transport_solver_numerics__boundary_conditions_ggd___current___identifier() = tr mutable struct transport_solver_numerics__boundary_conditions_ggd___current{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: transport_solver_numerics__boundary_conditions_ggd___current___identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_ggd___current___identifier{T} var"values" :: Matrix{<:T} var"values_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___current} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd___current} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd___current{T}() where T @@ -8910,17 +8910,17 @@ end transport_solver_numerics__boundary_conditions_ggd___current() = transport_solver_numerics__boundary_conditions_ggd___current{Float64}() mutable struct transport_solver_numerics__boundary_conditions_ggd{T} <: IDSvectorTimeElement{T} - var"current" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___current{T}} - var"electrons" :: transport_solver_numerics__boundary_conditions_ggd___electrons{T} - var"grid" :: transport_solver_numerics__boundary_conditions_ggd___grid{T} - var"ion" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion{T}} + var"current"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___current{T}} + var"electrons"::transport_solver_numerics__boundary_conditions_ggd___electrons{T} + var"grid"::transport_solver_numerics__boundary_conditions_ggd___grid{T} + var"ion"::IDSvector{transport_solver_numerics__boundary_conditions_ggd___ion{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_ggd} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_ggd} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_ggd{T}() where T @@ -8942,8 +8942,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___momentum_tor_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___momentum_tor__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___momentum_tor__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___momentum_tor__identifier{T}() where T @@ -8954,7 +8954,7 @@ end transport_solver_numerics__boundary_conditions_1d___momentum_tor__identifier() = transport_solver_numerics__boundary_conditions_1d___momentum_tor__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___momentum_tor{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___momentum_tor__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___momentum_tor__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -8963,8 +8963,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___momentum_tor{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___momentum_tor} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___momentum_tor} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___momentum_tor{T}() where T @@ -8983,8 +8983,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___particles__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___particles__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___state___particles__identifier{T}() where T @@ -8995,7 +8995,7 @@ end transport_solver_numerics__boundary_conditions_1d___ion___state___particles__identifier() = transport_solver_numerics__boundary_conditions_1d___ion___state___particles__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state___particles{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___ion___state___particles__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___ion___state___particles__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -9004,8 +9004,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___particles} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___state___particles{T}() where T @@ -9024,8 +9024,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___neutral_type} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___state___neutral_type{T}() where T @@ -9043,8 +9043,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___energy__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___energy__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___state___energy__identifier{T}() where T @@ -9055,7 +9055,7 @@ end transport_solver_numerics__boundary_conditions_1d___ion___state___energy__identifier() = transport_solver_numerics__boundary_conditions_1d___ion___state___energy__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state___energy{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___ion___state___energy__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___ion___state___energy__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -9064,8 +9064,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state___energy} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___state___energy{T}() where T @@ -9078,11 +9078,11 @@ transport_solver_numerics__boundary_conditions_1d___ion___state___energy() = tra mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: transport_solver_numerics__boundary_conditions_1d___ion___state___energy{T} + var"energy"::transport_solver_numerics__boundary_conditions_1d___ion___state___energy{T} var"is_neutral" :: Int var"label" :: String - var"neutral_type" :: transport_solver_numerics__boundary_conditions_1d___ion___state___neutral_type{T} - var"particles" :: transport_solver_numerics__boundary_conditions_1d___ion___state___particles{T} + var"neutral_type"::transport_solver_numerics__boundary_conditions_1d___ion___state___neutral_type{T} + var"particles"::transport_solver_numerics__boundary_conditions_1d___ion___state___particles{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -9094,8 +9094,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___state{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___state} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___state{T}() where T @@ -9116,8 +9116,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___particl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___particles__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___particles__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___particles__identifier{T}() where T @@ -9128,7 +9128,7 @@ end transport_solver_numerics__boundary_conditions_1d___ion___particles__identifier() = transport_solver_numerics__boundary_conditions_1d___ion___particles__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___ion___particles{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___ion___particles__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___ion___particles__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -9137,8 +9137,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___particl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___particles} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___particles{T}() where T @@ -9157,8 +9157,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___energy_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___energy__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___energy__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___energy__identifier{T}() where T @@ -9169,7 +9169,7 @@ end transport_solver_numerics__boundary_conditions_1d___ion___energy__identifier() = transport_solver_numerics__boundary_conditions_1d___ion___energy__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___ion___energy{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___ion___energy__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___ion___energy__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -9178,8 +9178,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion___energy{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion___energy} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion___energy{T}() where T @@ -9193,11 +9193,11 @@ transport_solver_numerics__boundary_conditions_1d___ion___energy() = transport_s mutable struct transport_solver_numerics__boundary_conditions_1d___ion{T} <: IDSvectorIonElement{T} var"a" :: T var"a_σ" :: T - var"energy" :: transport_solver_numerics__boundary_conditions_1d___ion___energy{T} + var"energy"::transport_solver_numerics__boundary_conditions_1d___ion___energy{T} var"label" :: String var"multiple_states_flag" :: Int - var"particles" :: transport_solver_numerics__boundary_conditions_1d___ion___particles{T} - var"state" :: IDSvector{transport_solver_numerics__boundary_conditions_1d___ion___state{T}} + var"particles"::transport_solver_numerics__boundary_conditions_1d___ion___particles{T} + var"state"::IDSvector{transport_solver_numerics__boundary_conditions_1d___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T var"z_n" :: T @@ -9206,8 +9206,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___ion{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___ion} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___ion{T}() where T @@ -9228,8 +9228,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___energy_ion_to _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___energy_ion_total__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___energy_ion_total__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___energy_ion_total__identifier{T}() where T @@ -9240,7 +9240,7 @@ end transport_solver_numerics__boundary_conditions_1d___energy_ion_total__identifier() = transport_solver_numerics__boundary_conditions_1d___energy_ion_total__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___energy_ion_total{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___energy_ion_total__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___energy_ion_total__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -9249,8 +9249,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___energy_ion_to _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___energy_ion_total} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___energy_ion_total} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___energy_ion_total{T}() where T @@ -9269,8 +9269,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___electrons__pa _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons__particles__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons__particles__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___electrons__particles__identifier{T}() where T @@ -9281,7 +9281,7 @@ end transport_solver_numerics__boundary_conditions_1d___electrons__particles__identifier() = transport_solver_numerics__boundary_conditions_1d___electrons__particles__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___electrons__particles{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___electrons__particles__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___electrons__particles__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -9290,8 +9290,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___electrons__pa _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons__particles} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons__particles} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___electrons__particles{T}() where T @@ -9310,8 +9310,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___electrons__en _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons__energy__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons__energy__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___electrons__energy__identifier{T}() where T @@ -9322,7 +9322,7 @@ end transport_solver_numerics__boundary_conditions_1d___electrons__energy__identifier() = transport_solver_numerics__boundary_conditions_1d___electrons__energy__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___electrons__energy{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___electrons__energy__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___electrons__energy__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -9331,8 +9331,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___electrons__en _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons__energy} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons__energy} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___electrons__energy{T}() where T @@ -9344,14 +9344,14 @@ end transport_solver_numerics__boundary_conditions_1d___electrons__energy() = transport_solver_numerics__boundary_conditions_1d___electrons__energy{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___electrons{T} <: IDS{T} - var"energy" :: transport_solver_numerics__boundary_conditions_1d___electrons__energy{T} - var"particles" :: transport_solver_numerics__boundary_conditions_1d___electrons__particles{T} + var"energy"::transport_solver_numerics__boundary_conditions_1d___electrons__energy{T} + var"particles"::transport_solver_numerics__boundary_conditions_1d___electrons__particles{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___electrons} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___electrons{T}() where T @@ -9371,8 +9371,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___current__iden _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___current__identifier} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___current__identifier} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___current__identifier{T}() where T @@ -9383,7 +9383,7 @@ end transport_solver_numerics__boundary_conditions_1d___current__identifier() = transport_solver_numerics__boundary_conditions_1d___current__identifier{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d___current{T} <: IDS{T} - var"identifier" :: transport_solver_numerics__boundary_conditions_1d___current__identifier{T} + var"identifier"::transport_solver_numerics__boundary_conditions_1d___current__identifier{T} var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T var"value" :: Vector{<:T} @@ -9392,8 +9392,8 @@ mutable struct transport_solver_numerics__boundary_conditions_1d___current{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d___current} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d___current} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d___current{T}() where T @@ -9405,18 +9405,18 @@ end transport_solver_numerics__boundary_conditions_1d___current() = transport_solver_numerics__boundary_conditions_1d___current{Float64}() mutable struct transport_solver_numerics__boundary_conditions_1d{T} <: IDSvectorTimeElement{T} - var"current" :: transport_solver_numerics__boundary_conditions_1d___current{T} - var"electrons" :: transport_solver_numerics__boundary_conditions_1d___electrons{T} - var"energy_ion_total" :: transport_solver_numerics__boundary_conditions_1d___energy_ion_total{T} - var"ion" :: IDSvector{transport_solver_numerics__boundary_conditions_1d___ion{T}} - var"momentum_tor" :: transport_solver_numerics__boundary_conditions_1d___momentum_tor{T} + var"current"::transport_solver_numerics__boundary_conditions_1d___current{T} + var"electrons"::transport_solver_numerics__boundary_conditions_1d___electrons{T} + var"energy_ion_total"::transport_solver_numerics__boundary_conditions_1d___energy_ion_total{T} + var"ion"::IDSvector{transport_solver_numerics__boundary_conditions_1d___ion{T}} + var"momentum_tor"::transport_solver_numerics__boundary_conditions_1d___momentum_tor{T} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics__boundary_conditions_1d} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics__boundary_conditions_1d} + _parent::WeakRef end function transport_solver_numerics__boundary_conditions_1d{T}() where T @@ -9432,27 +9432,27 @@ end transport_solver_numerics__boundary_conditions_1d() = transport_solver_numerics__boundary_conditions_1d{Float64}() mutable struct transport_solver_numerics{T} <: IDStop{T} - var"boundary_conditions_1d" :: IDSvector{transport_solver_numerics__boundary_conditions_1d{T}} - var"boundary_conditions_ggd" :: IDSvector{transport_solver_numerics__boundary_conditions_ggd{T}} - var"code" :: transport_solver_numerics__code{T} - var"convergence" :: transport_solver_numerics__convergence{T} - var"derivatives_1d" :: IDSvector{transport_solver_numerics__derivatives_1d{T}} - var"ids_properties" :: transport_solver_numerics__ids_properties{T} - var"primary_coordinate" :: transport_solver_numerics__primary_coordinate{T} - var"restart_files" :: IDSvector{transport_solver_numerics__restart_files{T}} - var"solver" :: transport_solver_numerics__solver{T} - var"solver_1d" :: IDSvector{transport_solver_numerics__solver_1d{T}} + var"boundary_conditions_1d"::IDSvector{transport_solver_numerics__boundary_conditions_1d{T}} + var"boundary_conditions_ggd"::IDSvector{transport_solver_numerics__boundary_conditions_ggd{T}} + var"code"::transport_solver_numerics__code{T} + var"convergence"::transport_solver_numerics__convergence{T} + var"derivatives_1d"::IDSvector{transport_solver_numerics__derivatives_1d{T}} + var"ids_properties"::transport_solver_numerics__ids_properties{T} + var"primary_coordinate"::transport_solver_numerics__primary_coordinate{T} + var"restart_files"::IDSvector{transport_solver_numerics__restart_files{T}} + var"solver"::transport_solver_numerics__solver{T} + var"solver_1d"::IDSvector{transport_solver_numerics__solver_1d{T}} var"time" :: Vector{Float64} - var"time_step" :: transport_solver_numerics__time_step{T} - var"time_step_average" :: transport_solver_numerics__time_step_average{T} - var"time_step_min" :: transport_solver_numerics__time_step_min{T} - var"vacuum_toroidal_field" :: transport_solver_numerics__vacuum_toroidal_field{T} + var"time_step"::transport_solver_numerics__time_step{T} + var"time_step_average"::transport_solver_numerics__time_step_average{T} + var"time_step_min"::transport_solver_numerics__time_step_min{T} + var"vacuum_toroidal_field"::transport_solver_numerics__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,transport_solver_numerics} - _parent :: WeakRef + _ref::Union{Nothing,transport_solver_numerics} + _parent::WeakRef end function transport_solver_numerics{T}() where T @@ -9484,8 +9484,8 @@ mutable struct thomson_scattering__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__midplane} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__midplane} + _parent::WeakRef end function thomson_scattering__midplane{T}() where T @@ -9503,8 +9503,8 @@ mutable struct thomson_scattering__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__version_put} + _parent::WeakRef end function thomson_scattering__ids_properties__version_put{T}() where T @@ -9521,8 +9521,8 @@ mutable struct thomson_scattering__ids_properties__provenance__node{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__provenance__node} + _parent::WeakRef end function thomson_scattering__ids_properties__provenance__node{T}() where T @@ -9533,13 +9533,13 @@ end thomson_scattering__ids_properties__provenance__node() = thomson_scattering__ids_properties__provenance__node{Float64}() mutable struct thomson_scattering__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{thomson_scattering__ids_properties__provenance__node{T}} + var"node"::IDSvector{thomson_scattering__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__provenance} + _parent::WeakRef end function thomson_scattering__ids_properties__provenance{T}() where T @@ -9561,8 +9561,8 @@ mutable struct thomson_scattering__ids_properties__plugins__node___readback{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__plugins__node___readback} + _parent::WeakRef end function thomson_scattering__ids_properties__plugins__node___readback{T}() where T @@ -9583,8 +9583,8 @@ mutable struct thomson_scattering__ids_properties__plugins__node___put_operation _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function thomson_scattering__ids_properties__plugins__node___put_operation{T}() where T @@ -9605,8 +9605,8 @@ mutable struct thomson_scattering__ids_properties__plugins__node___get_operation _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function thomson_scattering__ids_properties__plugins__node___get_operation{T}() where T @@ -9617,16 +9617,16 @@ end thomson_scattering__ids_properties__plugins__node___get_operation() = thomson_scattering__ids_properties__plugins__node___get_operation{Float64}() mutable struct thomson_scattering__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{thomson_scattering__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{thomson_scattering__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{thomson_scattering__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{thomson_scattering__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{thomson_scattering__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{thomson_scattering__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__plugins__node} + _parent::WeakRef end function thomson_scattering__ids_properties__plugins__node{T}() where T @@ -9649,8 +9649,8 @@ mutable struct thomson_scattering__ids_properties__plugins__infrastructure_put{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function thomson_scattering__ids_properties__plugins__infrastructure_put{T}() where T @@ -9670,8 +9670,8 @@ mutable struct thomson_scattering__ids_properties__plugins__infrastructure_get{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function thomson_scattering__ids_properties__plugins__infrastructure_get{T}() where T @@ -9682,15 +9682,15 @@ end thomson_scattering__ids_properties__plugins__infrastructure_get() = thomson_scattering__ids_properties__plugins__infrastructure_get{Float64}() mutable struct thomson_scattering__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: thomson_scattering__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: thomson_scattering__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{thomson_scattering__ids_properties__plugins__node{T}} + var"infrastructure_get"::thomson_scattering__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::thomson_scattering__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{thomson_scattering__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__plugins} + _parent::WeakRef end function thomson_scattering__ids_properties__plugins{T}() where T @@ -9711,8 +9711,8 @@ mutable struct thomson_scattering__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties__occurrence_type} + _parent::WeakRef end function thomson_scattering__ids_properties__occurrence_type{T}() where T @@ -9728,17 +9728,17 @@ mutable struct thomson_scattering__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: thomson_scattering__ids_properties__occurrence_type{T} - var"plugins" :: thomson_scattering__ids_properties__plugins{T} - var"provenance" :: thomson_scattering__ids_properties__provenance{T} + var"occurrence_type"::thomson_scattering__ids_properties__occurrence_type{T} + var"plugins"::thomson_scattering__ids_properties__plugins{T} + var"provenance"::thomson_scattering__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: thomson_scattering__ids_properties__version_put{T} + var"version_put"::thomson_scattering__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__ids_properties} + _parent::WeakRef end function thomson_scattering__ids_properties{T}() where T @@ -9762,8 +9762,8 @@ mutable struct thomson_scattering__equilibrium_id__data_entry{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__equilibrium_id__data_entry} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__equilibrium_id__data_entry} + _parent::WeakRef end function thomson_scattering__equilibrium_id__data_entry{T}() where T @@ -9774,15 +9774,15 @@ end thomson_scattering__equilibrium_id__data_entry() = thomson_scattering__equilibrium_id__data_entry{Float64}() mutable struct thomson_scattering__equilibrium_id{T} <: IDS{T} - var"data_entry" :: thomson_scattering__equilibrium_id__data_entry{T} + var"data_entry"::thomson_scattering__equilibrium_id__data_entry{T} var"name" :: String var"occurrence" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__equilibrium_id} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__equilibrium_id} + _parent::WeakRef end function thomson_scattering__equilibrium_id{T}() where T @@ -9804,8 +9804,8 @@ mutable struct thomson_scattering__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__code__library} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__code__library} + _parent::WeakRef end function thomson_scattering__code__library{T}() where T @@ -9818,7 +9818,7 @@ thomson_scattering__code__library() = thomson_scattering__code__library{Float64} mutable struct thomson_scattering__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{thomson_scattering__code__library{T}} + var"library"::IDSvector{thomson_scattering__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -9828,8 +9828,8 @@ mutable struct thomson_scattering__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__code} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__code} + _parent::WeakRef end function thomson_scattering__code{T}() where T @@ -9848,8 +9848,8 @@ mutable struct thomson_scattering__channel___t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__channel___t_e} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__channel___t_e} + _parent::WeakRef end function thomson_scattering__channel___t_e{T}() where T @@ -9870,8 +9870,8 @@ mutable struct thomson_scattering__channel___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__channel___position} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__channel___position} + _parent::WeakRef end function thomson_scattering__channel___position{T}() where T @@ -9889,8 +9889,8 @@ mutable struct thomson_scattering__channel___n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__channel___n_e} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__channel___n_e} + _parent::WeakRef end function thomson_scattering__channel___n_e{T}() where T @@ -9908,8 +9908,8 @@ mutable struct thomson_scattering__channel___distance_separatrix_midplane{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__channel___distance_separatrix_midplane} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__channel___distance_separatrix_midplane} + _parent::WeakRef end function thomson_scattering__channel___distance_separatrix_midplane{T}() where T @@ -9931,8 +9931,8 @@ mutable struct thomson_scattering__channel___delta_position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__channel___delta_position} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__channel___delta_position} + _parent::WeakRef end function thomson_scattering__channel___delta_position{T}() where T @@ -9943,19 +9943,19 @@ end thomson_scattering__channel___delta_position() = thomson_scattering__channel___delta_position{Float64}() mutable struct thomson_scattering__channel{T} <: IDSvectorStaticElement{T} - var"delta_position" :: thomson_scattering__channel___delta_position{T} - var"distance_separatrix_midplane" :: thomson_scattering__channel___distance_separatrix_midplane{T} + var"delta_position"::thomson_scattering__channel___delta_position{T} + var"distance_separatrix_midplane"::thomson_scattering__channel___distance_separatrix_midplane{T} var"identifier" :: String - var"n_e" :: thomson_scattering__channel___n_e{T} + var"n_e"::thomson_scattering__channel___n_e{T} var"name" :: String - var"position" :: thomson_scattering__channel___position{T} - var"t_e" :: thomson_scattering__channel___t_e{T} + var"position"::thomson_scattering__channel___position{T} + var"t_e"::thomson_scattering__channel___t_e{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering__channel} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering__channel} + _parent::WeakRef end function thomson_scattering__channel{T}() where T @@ -9971,20 +9971,20 @@ end thomson_scattering__channel() = thomson_scattering__channel{Float64}() mutable struct thomson_scattering{T} <: IDStop{T} - var"channel" :: IDSvector{thomson_scattering__channel{T}} - var"code" :: thomson_scattering__code{T} - var"equilibrium_id" :: thomson_scattering__equilibrium_id{T} - var"ids_properties" :: thomson_scattering__ids_properties{T} + var"channel"::IDSvector{thomson_scattering__channel{T}} + var"code"::thomson_scattering__code{T} + var"equilibrium_id"::thomson_scattering__equilibrium_id{T} + var"ids_properties"::thomson_scattering__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"midplane" :: thomson_scattering__midplane{T} + var"midplane"::thomson_scattering__midplane{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,thomson_scattering} - _parent :: WeakRef + _ref::Union{Nothing,thomson_scattering} + _parent::WeakRef end function thomson_scattering{T}() where T @@ -10007,8 +10007,8 @@ mutable struct tf__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__version_put} + _parent::WeakRef end function tf__ids_properties__version_put{T}() where T @@ -10025,8 +10025,8 @@ mutable struct tf__ids_properties__provenance__node{T} <: IDSvectorStaticElement _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__provenance__node} + _parent::WeakRef end function tf__ids_properties__provenance__node{T}() where T @@ -10037,13 +10037,13 @@ end tf__ids_properties__provenance__node() = tf__ids_properties__provenance__node{Float64}() mutable struct tf__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{tf__ids_properties__provenance__node{T}} + var"node"::IDSvector{tf__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__provenance} + _parent::WeakRef end function tf__ids_properties__provenance{T}() where T @@ -10065,8 +10065,8 @@ mutable struct tf__ids_properties__plugins__node___readback{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__plugins__node___readback} + _parent::WeakRef end function tf__ids_properties__plugins__node___readback{T}() where T @@ -10087,8 +10087,8 @@ mutable struct tf__ids_properties__plugins__node___put_operation{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function tf__ids_properties__plugins__node___put_operation{T}() where T @@ -10109,8 +10109,8 @@ mutable struct tf__ids_properties__plugins__node___get_operation{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function tf__ids_properties__plugins__node___get_operation{T}() where T @@ -10121,16 +10121,16 @@ end tf__ids_properties__plugins__node___get_operation() = tf__ids_properties__plugins__node___get_operation{Float64}() mutable struct tf__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{tf__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{tf__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{tf__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{tf__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{tf__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{tf__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__plugins__node} + _parent::WeakRef end function tf__ids_properties__plugins__node{T}() where T @@ -10153,8 +10153,8 @@ mutable struct tf__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function tf__ids_properties__plugins__infrastructure_put{T}() where T @@ -10174,8 +10174,8 @@ mutable struct tf__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function tf__ids_properties__plugins__infrastructure_get{T}() where T @@ -10186,15 +10186,15 @@ end tf__ids_properties__plugins__infrastructure_get() = tf__ids_properties__plugins__infrastructure_get{Float64}() mutable struct tf__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: tf__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: tf__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{tf__ids_properties__plugins__node{T}} + var"infrastructure_get"::tf__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::tf__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{tf__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__plugins} + _parent::WeakRef end function tf__ids_properties__plugins{T}() where T @@ -10215,8 +10215,8 @@ mutable struct tf__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties__occurrence_type} + _parent::WeakRef end function tf__ids_properties__occurrence_type{T}() where T @@ -10232,17 +10232,17 @@ mutable struct tf__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: tf__ids_properties__occurrence_type{T} - var"plugins" :: tf__ids_properties__plugins{T} - var"provenance" :: tf__ids_properties__provenance{T} + var"occurrence_type"::tf__ids_properties__occurrence_type{T} + var"plugins"::tf__ids_properties__plugins{T} + var"provenance"::tf__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: tf__ids_properties__version_put{T} + var"version_put"::tf__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,tf__ids_properties} + _parent::WeakRef end function tf__ids_properties{T}() where T @@ -10263,8 +10263,8 @@ mutable struct tf__field_map___grid__space___objects_per_dimension___object___bo _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__space___objects_per_dimension___object___boundary} + _parent::WeakRef end function tf__field_map___grid__space___objects_per_dimension___object___boundary{T}() where T @@ -10275,7 +10275,7 @@ end tf__field_map___grid__space___objects_per_dimension___object___boundary() = tf__field_map___grid__space___objects_per_dimension___object___boundary{Float64}() mutable struct tf__field_map___grid__space___objects_per_dimension___object{T} <: IDSvectorStaticElement{T} - var"boundary" :: IDSvector{tf__field_map___grid__space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{tf__field_map___grid__space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -10287,8 +10287,8 @@ mutable struct tf__field_map___grid__space___objects_per_dimension___object{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__space___objects_per_dimension___object} + _parent::WeakRef end function tf__field_map___grid__space___objects_per_dimension___object{T}() where T @@ -10307,8 +10307,8 @@ mutable struct tf__field_map___grid__space___objects_per_dimension___geometry_co _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__space___objects_per_dimension___geometry_content} + _parent::WeakRef end function tf__field_map___grid__space___objects_per_dimension___geometry_content{T}() where T @@ -10319,14 +10319,14 @@ end tf__field_map___grid__space___objects_per_dimension___geometry_content() = tf__field_map___grid__space___objects_per_dimension___geometry_content{Float64}() mutable struct tf__field_map___grid__space___objects_per_dimension{T} <: IDSvectorStaticElement{T} - var"geometry_content" :: tf__field_map___grid__space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{tf__field_map___grid__space___objects_per_dimension___object{T}} + var"geometry_content"::tf__field_map___grid__space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{tf__field_map___grid__space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__space___objects_per_dimension} + _parent::WeakRef end function tf__field_map___grid__space___objects_per_dimension{T}() where T @@ -10346,8 +10346,8 @@ mutable struct tf__field_map___grid__space___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__space___identifier} + _parent::WeakRef end function tf__field_map___grid__space___identifier{T}() where T @@ -10365,8 +10365,8 @@ mutable struct tf__field_map___grid__space___geometry_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__space___geometry_type} + _parent::WeakRef end function tf__field_map___grid__space___geometry_type{T}() where T @@ -10378,15 +10378,15 @@ tf__field_map___grid__space___geometry_type() = tf__field_map___grid__space___ge mutable struct tf__field_map___grid__space{T} <: IDSvectorStaticElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: tf__field_map___grid__space___geometry_type{T} - var"identifier" :: tf__field_map___grid__space___identifier{T} - var"objects_per_dimension" :: IDSvector{tf__field_map___grid__space___objects_per_dimension{T}} + var"geometry_type"::tf__field_map___grid__space___geometry_type{T} + var"identifier"::tf__field_map___grid__space___identifier{T} + var"objects_per_dimension"::IDSvector{tf__field_map___grid__space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__space} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__space} + _parent::WeakRef end function tf__field_map___grid__space{T}() where T @@ -10407,8 +10407,8 @@ mutable struct tf__field_map___grid__identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__identifier} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__identifier} + _parent::WeakRef end function tf__field_map___grid__identifier{T}() where T @@ -10429,8 +10429,8 @@ mutable struct tf__field_map___grid__grid_subset___metric{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__grid_subset___metric} + _parent::WeakRef end function tf__field_map___grid__grid_subset___metric{T}() where T @@ -10448,8 +10448,8 @@ mutable struct tf__field_map___grid__grid_subset___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__grid_subset___identifier} + _parent::WeakRef end function tf__field_map___grid__grid_subset___identifier{T}() where T @@ -10467,8 +10467,8 @@ mutable struct tf__field_map___grid__grid_subset___element___object{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__grid_subset___element___object} + _parent::WeakRef end function tf__field_map___grid__grid_subset___element___object{T}() where T @@ -10479,13 +10479,13 @@ end tf__field_map___grid__grid_subset___element___object() = tf__field_map___grid__grid_subset___element___object{Float64}() mutable struct tf__field_map___grid__grid_subset___element{T} <: IDSvectorStaticElement{T} - var"object" :: IDSvector{tf__field_map___grid__grid_subset___element___object{T}} + var"object"::IDSvector{tf__field_map___grid__grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__grid_subset___element} + _parent::WeakRef end function tf__field_map___grid__grid_subset___element{T}() where T @@ -10507,8 +10507,8 @@ mutable struct tf__field_map___grid__grid_subset___base{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__grid_subset___base} + _parent::WeakRef end function tf__field_map___grid__grid_subset___base{T}() where T @@ -10519,17 +10519,17 @@ end tf__field_map___grid__grid_subset___base() = tf__field_map___grid__grid_subset___base{Float64}() mutable struct tf__field_map___grid__grid_subset{T} <: IDSvectorStaticElement{T} - var"base" :: IDSvector{tf__field_map___grid__grid_subset___base{T}} + var"base"::IDSvector{tf__field_map___grid__grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{tf__field_map___grid__grid_subset___element{T}} - var"identifier" :: tf__field_map___grid__grid_subset___identifier{T} - var"metric" :: tf__field_map___grid__grid_subset___metric{T} + var"element"::IDSvector{tf__field_map___grid__grid_subset___element{T}} + var"identifier"::tf__field_map___grid__grid_subset___identifier{T} + var"metric"::tf__field_map___grid__grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid__grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid__grid_subset} + _parent::WeakRef end function tf__field_map___grid__grid_subset{T}() where T @@ -10544,16 +10544,16 @@ end tf__field_map___grid__grid_subset() = tf__field_map___grid__grid_subset{Float64}() mutable struct tf__field_map___grid{T} <: IDS{T} - var"grid_subset" :: IDSvector{tf__field_map___grid__grid_subset{T}} - var"identifier" :: tf__field_map___grid__identifier{T} + var"grid_subset"::IDSvector{tf__field_map___grid__grid_subset{T}} + var"identifier"::tf__field_map___grid__identifier{T} var"path" :: String - var"space" :: IDSvector{tf__field_map___grid__space{T}} + var"space"::IDSvector{tf__field_map___grid__space{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___grid} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___grid} + _parent::WeakRef end function tf__field_map___grid{T}() where T @@ -10577,8 +10577,8 @@ mutable struct tf__field_map___b_field_z{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___b_field_z} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___b_field_z} + _parent::WeakRef end function tf__field_map___b_field_z{T}() where T @@ -10599,8 +10599,8 @@ mutable struct tf__field_map___b_field_tor{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___b_field_tor} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___b_field_tor} + _parent::WeakRef end function tf__field_map___b_field_tor{T}() where T @@ -10621,8 +10621,8 @@ mutable struct tf__field_map___b_field_r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___b_field_r} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___b_field_r} + _parent::WeakRef end function tf__field_map___b_field_r{T}() where T @@ -10643,8 +10643,8 @@ mutable struct tf__field_map___a_field_z{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___a_field_z} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___a_field_z} + _parent::WeakRef end function tf__field_map___a_field_z{T}() where T @@ -10665,8 +10665,8 @@ mutable struct tf__field_map___a_field_tor{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___a_field_tor} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___a_field_tor} + _parent::WeakRef end function tf__field_map___a_field_tor{T}() where T @@ -10687,8 +10687,8 @@ mutable struct tf__field_map___a_field_r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map___a_field_r} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map___a_field_r} + _parent::WeakRef end function tf__field_map___a_field_r{T}() where T @@ -10699,20 +10699,20 @@ end tf__field_map___a_field_r() = tf__field_map___a_field_r{Float64}() mutable struct tf__field_map{T} <: IDSvectorTimeElement{T} - var"a_field_r" :: IDSvector{tf__field_map___a_field_r{T}} - var"a_field_tor" :: IDSvector{tf__field_map___a_field_tor{T}} - var"a_field_z" :: IDSvector{tf__field_map___a_field_z{T}} - var"b_field_r" :: IDSvector{tf__field_map___b_field_r{T}} - var"b_field_tor" :: IDSvector{tf__field_map___b_field_tor{T}} - var"b_field_z" :: IDSvector{tf__field_map___b_field_z{T}} - var"grid" :: tf__field_map___grid{T} + var"a_field_r"::IDSvector{tf__field_map___a_field_r{T}} + var"a_field_tor"::IDSvector{tf__field_map___a_field_tor{T}} + var"a_field_z"::IDSvector{tf__field_map___a_field_z{T}} + var"b_field_r"::IDSvector{tf__field_map___b_field_r{T}} + var"b_field_tor"::IDSvector{tf__field_map___b_field_tor{T}} + var"b_field_z"::IDSvector{tf__field_map___b_field_z{T}} + var"grid"::tf__field_map___grid{T} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__field_map} - _parent :: WeakRef + _ref::Union{Nothing,tf__field_map} + _parent::WeakRef end function tf__field_map{T}() where T @@ -10737,8 +10737,8 @@ mutable struct tf__delta_b_field_tor_vacuum_r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__delta_b_field_tor_vacuum_r} - _parent :: WeakRef + _ref::Union{Nothing,tf__delta_b_field_tor_vacuum_r} + _parent::WeakRef end function tf__delta_b_field_tor_vacuum_r{T}() where T @@ -10756,8 +10756,8 @@ mutable struct tf__coil___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___voltage} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___voltage} + _parent::WeakRef end function tf__coil___voltage{T}() where T @@ -10775,8 +10775,8 @@ mutable struct tf__coil___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___current} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___current} + _parent::WeakRef end function tf__coil___current{T}() where T @@ -10794,8 +10794,8 @@ mutable struct tf__coil___conductor___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor___voltage} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor___voltage} + _parent::WeakRef end function tf__coil___conductor___voltage{T}() where T @@ -10816,8 +10816,8 @@ mutable struct tf__coil___conductor___elements__start_points{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor___elements__start_points} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor___elements__start_points} + _parent::WeakRef end function tf__coil___conductor___elements__start_points{T}() where T @@ -10838,8 +10838,8 @@ mutable struct tf__coil___conductor___elements__intermediate_points{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor___elements__intermediate_points} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor___elements__intermediate_points} + _parent::WeakRef end function tf__coil___conductor___elements__intermediate_points{T}() where T @@ -10860,8 +10860,8 @@ mutable struct tf__coil___conductor___elements__end_points{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor___elements__end_points} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor___elements__end_points} + _parent::WeakRef end function tf__coil___conductor___elements__end_points{T}() where T @@ -10882,8 +10882,8 @@ mutable struct tf__coil___conductor___elements__centres{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor___elements__centres} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor___elements__centres} + _parent::WeakRef end function tf__coil___conductor___elements__centres{T}() where T @@ -10894,18 +10894,18 @@ end tf__coil___conductor___elements__centres() = tf__coil___conductor___elements__centres{Float64}() mutable struct tf__coil___conductor___elements{T} <: IDS{T} - var"centres" :: tf__coil___conductor___elements__centres{T} - var"end_points" :: tf__coil___conductor___elements__end_points{T} - var"intermediate_points" :: tf__coil___conductor___elements__intermediate_points{T} + var"centres"::tf__coil___conductor___elements__centres{T} + var"end_points"::tf__coil___conductor___elements__end_points{T} + var"intermediate_points"::tf__coil___conductor___elements__intermediate_points{T} var"names" :: Vector{String} - var"start_points" :: tf__coil___conductor___elements__start_points{T} + var"start_points"::tf__coil___conductor___elements__start_points{T} var"types" :: Vector{Int} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor___elements} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor___elements} + _parent::WeakRef end function tf__coil___conductor___elements{T}() where T @@ -10927,8 +10927,8 @@ mutable struct tf__coil___conductor___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor___current} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor___current} + _parent::WeakRef end function tf__coil___conductor___current{T}() where T @@ -10949,8 +10949,8 @@ mutable struct tf__coil___conductor___cross_section{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor___cross_section} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor___cross_section} + _parent::WeakRef end function tf__coil___conductor___cross_section{T}() where T @@ -10961,18 +10961,18 @@ end tf__coil___conductor___cross_section() = tf__coil___conductor___cross_section{Float64}() mutable struct tf__coil___conductor{T} <: IDSvectorStaticElement{T} - var"cross_section" :: tf__coil___conductor___cross_section{T} - var"current" :: tf__coil___conductor___current{T} - var"elements" :: tf__coil___conductor___elements{T} + var"cross_section"::tf__coil___conductor___cross_section{T} + var"current"::tf__coil___conductor___current{T} + var"elements"::tf__coil___conductor___elements{T} var"resistance" :: T var"resistance_σ" :: T - var"voltage" :: tf__coil___conductor___voltage{T} + var"voltage"::tf__coil___conductor___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil___conductor} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil___conductor} + _parent::WeakRef end function tf__coil___conductor{T}() where T @@ -10987,21 +10987,21 @@ end tf__coil___conductor() = tf__coil___conductor{Float64}() mutable struct tf__coil{T} <: IDSvectorStaticElement{T} - var"conductor" :: IDSvector{tf__coil___conductor{T}} - var"current" :: tf__coil___current{T} + var"conductor"::IDSvector{tf__coil___conductor{T}} + var"current"::tf__coil___current{T} var"identifier" :: String var"name" :: String var"resistance" :: T var"resistance_σ" :: T var"turns" :: T var"turns_σ" :: T - var"voltage" :: tf__coil___voltage{T} + var"voltage"::tf__coil___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__coil} - _parent :: WeakRef + _ref::Union{Nothing,tf__coil} + _parent::WeakRef end function tf__coil{T}() where T @@ -11025,8 +11025,8 @@ mutable struct tf__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__code__library} - _parent :: WeakRef + _ref::Union{Nothing,tf__code__library} + _parent::WeakRef end function tf__code__library{T}() where T @@ -11039,7 +11039,7 @@ tf__code__library() = tf__code__library{Float64}() mutable struct tf__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{tf__code__library{T}} + var"library"::IDSvector{tf__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -11049,8 +11049,8 @@ mutable struct tf__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__code} - _parent :: WeakRef + _ref::Union{Nothing,tf__code} + _parent::WeakRef end function tf__code{T}() where T @@ -11069,8 +11069,8 @@ mutable struct tf__b_field_tor_vacuum_r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf__b_field_tor_vacuum_r} - _parent :: WeakRef + _ref::Union{Nothing,tf__b_field_tor_vacuum_r} + _parent::WeakRef end function tf__b_field_tor_vacuum_r{T}() where T @@ -11081,13 +11081,13 @@ end tf__b_field_tor_vacuum_r() = tf__b_field_tor_vacuum_r{Float64}() mutable struct tf{T} <: IDStop{T} - var"b_field_tor_vacuum_r" :: tf__b_field_tor_vacuum_r{T} - var"code" :: tf__code{T} - var"coil" :: IDSvector{tf__coil{T}} + var"b_field_tor_vacuum_r"::tf__b_field_tor_vacuum_r{T} + var"code"::tf__code{T} + var"coil"::IDSvector{tf__coil{T}} var"coils_n" :: Int - var"delta_b_field_tor_vacuum_r" :: tf__delta_b_field_tor_vacuum_r{T} - var"field_map" :: IDSvector{tf__field_map{T}} - var"ids_properties" :: tf__ids_properties{T} + var"delta_b_field_tor_vacuum_r"::tf__delta_b_field_tor_vacuum_r{T} + var"field_map"::IDSvector{tf__field_map{T}} + var"ids_properties"::tf__ids_properties{T} var"is_periodic" :: Int var"latency" :: T var"latency_σ" :: T @@ -11098,8 +11098,8 @@ mutable struct tf{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,tf} - _parent :: WeakRef + _ref::Union{Nothing,tf} + _parent::WeakRef end function tf{T}() where T @@ -11123,8 +11123,8 @@ mutable struct temporary__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__version_put} + _parent::WeakRef end function temporary__ids_properties__version_put{T}() where T @@ -11141,8 +11141,8 @@ mutable struct temporary__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__provenance__node} + _parent::WeakRef end function temporary__ids_properties__provenance__node{T}() where T @@ -11153,13 +11153,13 @@ end temporary__ids_properties__provenance__node() = temporary__ids_properties__provenance__node{Float64}() mutable struct temporary__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{temporary__ids_properties__provenance__node{T}} + var"node"::IDSvector{temporary__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__provenance} + _parent::WeakRef end function temporary__ids_properties__provenance{T}() where T @@ -11181,8 +11181,8 @@ mutable struct temporary__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__plugins__node___readback} + _parent::WeakRef end function temporary__ids_properties__plugins__node___readback{T}() where T @@ -11203,8 +11203,8 @@ mutable struct temporary__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function temporary__ids_properties__plugins__node___put_operation{T}() where T @@ -11225,8 +11225,8 @@ mutable struct temporary__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function temporary__ids_properties__plugins__node___get_operation{T}() where T @@ -11237,16 +11237,16 @@ end temporary__ids_properties__plugins__node___get_operation() = temporary__ids_properties__plugins__node___get_operation{Float64}() mutable struct temporary__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{temporary__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{temporary__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{temporary__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{temporary__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{temporary__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{temporary__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__plugins__node} + _parent::WeakRef end function temporary__ids_properties__plugins__node{T}() where T @@ -11269,8 +11269,8 @@ mutable struct temporary__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function temporary__ids_properties__plugins__infrastructure_put{T}() where T @@ -11290,8 +11290,8 @@ mutable struct temporary__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function temporary__ids_properties__plugins__infrastructure_get{T}() where T @@ -11302,15 +11302,15 @@ end temporary__ids_properties__plugins__infrastructure_get() = temporary__ids_properties__plugins__infrastructure_get{Float64}() mutable struct temporary__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: temporary__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: temporary__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{temporary__ids_properties__plugins__node{T}} + var"infrastructure_get"::temporary__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::temporary__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{temporary__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__plugins} + _parent::WeakRef end function temporary__ids_properties__plugins{T}() where T @@ -11331,8 +11331,8 @@ mutable struct temporary__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties__occurrence_type} + _parent::WeakRef end function temporary__ids_properties__occurrence_type{T}() where T @@ -11348,17 +11348,17 @@ mutable struct temporary__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: temporary__ids_properties__occurrence_type{T} - var"plugins" :: temporary__ids_properties__plugins{T} - var"provenance" :: temporary__ids_properties__provenance{T} + var"occurrence_type"::temporary__ids_properties__occurrence_type{T} + var"plugins"::temporary__ids_properties__plugins{T} + var"provenance"::temporary__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: temporary__ids_properties__version_put{T} + var"version_put"::temporary__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,temporary__ids_properties} + _parent::WeakRef end function temporary__ids_properties{T}() where T @@ -11379,8 +11379,8 @@ mutable struct temporary__dynamic_integer3d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer3d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer3d___value} + _parent::WeakRef end function temporary__dynamic_integer3d___value{T}() where T @@ -11398,8 +11398,8 @@ mutable struct temporary__dynamic_integer3d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer3d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer3d___identifier} + _parent::WeakRef end function temporary__dynamic_integer3d___identifier{T}() where T @@ -11410,14 +11410,14 @@ end temporary__dynamic_integer3d___identifier() = temporary__dynamic_integer3d___identifier{Float64}() mutable struct temporary__dynamic_integer3d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_integer3d___identifier{T} - var"value" :: temporary__dynamic_integer3d___value{T} + var"identifier"::temporary__dynamic_integer3d___identifier{T} + var"value"::temporary__dynamic_integer3d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer3d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer3d} + _parent::WeakRef end function temporary__dynamic_integer3d{T}() where T @@ -11436,8 +11436,8 @@ mutable struct temporary__dynamic_integer2d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer2d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer2d___value} + _parent::WeakRef end function temporary__dynamic_integer2d___value{T}() where T @@ -11455,8 +11455,8 @@ mutable struct temporary__dynamic_integer2d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer2d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer2d___identifier} + _parent::WeakRef end function temporary__dynamic_integer2d___identifier{T}() where T @@ -11467,14 +11467,14 @@ end temporary__dynamic_integer2d___identifier() = temporary__dynamic_integer2d___identifier{Float64}() mutable struct temporary__dynamic_integer2d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_integer2d___identifier{T} - var"value" :: temporary__dynamic_integer2d___value{T} + var"identifier"::temporary__dynamic_integer2d___identifier{T} + var"value"::temporary__dynamic_integer2d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer2d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer2d} + _parent::WeakRef end function temporary__dynamic_integer2d{T}() where T @@ -11493,8 +11493,8 @@ mutable struct temporary__dynamic_integer1d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer1d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer1d___value} + _parent::WeakRef end function temporary__dynamic_integer1d___value{T}() where T @@ -11512,8 +11512,8 @@ mutable struct temporary__dynamic_integer1d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer1d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer1d___identifier} + _parent::WeakRef end function temporary__dynamic_integer1d___identifier{T}() where T @@ -11524,14 +11524,14 @@ end temporary__dynamic_integer1d___identifier() = temporary__dynamic_integer1d___identifier{Float64}() mutable struct temporary__dynamic_integer1d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_integer1d___identifier{T} - var"value" :: temporary__dynamic_integer1d___value{T} + var"identifier"::temporary__dynamic_integer1d___identifier{T} + var"value"::temporary__dynamic_integer1d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_integer1d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_integer1d} + _parent::WeakRef end function temporary__dynamic_integer1d{T}() where T @@ -11551,8 +11551,8 @@ mutable struct temporary__dynamic_float6d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float6d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float6d___value} + _parent::WeakRef end function temporary__dynamic_float6d___value{T}() where T @@ -11570,8 +11570,8 @@ mutable struct temporary__dynamic_float6d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float6d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float6d___identifier} + _parent::WeakRef end function temporary__dynamic_float6d___identifier{T}() where T @@ -11582,14 +11582,14 @@ end temporary__dynamic_float6d___identifier() = temporary__dynamic_float6d___identifier{Float64}() mutable struct temporary__dynamic_float6d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_float6d___identifier{T} - var"value" :: temporary__dynamic_float6d___value{T} + var"identifier"::temporary__dynamic_float6d___identifier{T} + var"value"::temporary__dynamic_float6d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float6d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float6d} + _parent::WeakRef end function temporary__dynamic_float6d{T}() where T @@ -11609,8 +11609,8 @@ mutable struct temporary__dynamic_float5d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float5d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float5d___value} + _parent::WeakRef end function temporary__dynamic_float5d___value{T}() where T @@ -11628,8 +11628,8 @@ mutable struct temporary__dynamic_float5d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float5d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float5d___identifier} + _parent::WeakRef end function temporary__dynamic_float5d___identifier{T}() where T @@ -11640,14 +11640,14 @@ end temporary__dynamic_float5d___identifier() = temporary__dynamic_float5d___identifier{Float64}() mutable struct temporary__dynamic_float5d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_float5d___identifier{T} - var"value" :: temporary__dynamic_float5d___value{T} + var"identifier"::temporary__dynamic_float5d___identifier{T} + var"value"::temporary__dynamic_float5d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float5d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float5d} + _parent::WeakRef end function temporary__dynamic_float5d{T}() where T @@ -11667,8 +11667,8 @@ mutable struct temporary__dynamic_float4d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float4d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float4d___value} + _parent::WeakRef end function temporary__dynamic_float4d___value{T}() where T @@ -11686,8 +11686,8 @@ mutable struct temporary__dynamic_float4d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float4d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float4d___identifier} + _parent::WeakRef end function temporary__dynamic_float4d___identifier{T}() where T @@ -11698,14 +11698,14 @@ end temporary__dynamic_float4d___identifier() = temporary__dynamic_float4d___identifier{Float64}() mutable struct temporary__dynamic_float4d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_float4d___identifier{T} - var"value" :: temporary__dynamic_float4d___value{T} + var"identifier"::temporary__dynamic_float4d___identifier{T} + var"value"::temporary__dynamic_float4d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float4d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float4d} + _parent::WeakRef end function temporary__dynamic_float4d{T}() where T @@ -11725,8 +11725,8 @@ mutable struct temporary__dynamic_float3d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float3d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float3d___value} + _parent::WeakRef end function temporary__dynamic_float3d___value{T}() where T @@ -11744,8 +11744,8 @@ mutable struct temporary__dynamic_float3d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float3d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float3d___identifier} + _parent::WeakRef end function temporary__dynamic_float3d___identifier{T}() where T @@ -11756,14 +11756,14 @@ end temporary__dynamic_float3d___identifier() = temporary__dynamic_float3d___identifier{Float64}() mutable struct temporary__dynamic_float3d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_float3d___identifier{T} - var"value" :: temporary__dynamic_float3d___value{T} + var"identifier"::temporary__dynamic_float3d___identifier{T} + var"value"::temporary__dynamic_float3d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float3d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float3d} + _parent::WeakRef end function temporary__dynamic_float3d{T}() where T @@ -11783,8 +11783,8 @@ mutable struct temporary__dynamic_float2d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float2d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float2d___value} + _parent::WeakRef end function temporary__dynamic_float2d___value{T}() where T @@ -11802,8 +11802,8 @@ mutable struct temporary__dynamic_float2d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float2d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float2d___identifier} + _parent::WeakRef end function temporary__dynamic_float2d___identifier{T}() where T @@ -11814,14 +11814,14 @@ end temporary__dynamic_float2d___identifier() = temporary__dynamic_float2d___identifier{Float64}() mutable struct temporary__dynamic_float2d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_float2d___identifier{T} - var"value" :: temporary__dynamic_float2d___value{T} + var"identifier"::temporary__dynamic_float2d___identifier{T} + var"value"::temporary__dynamic_float2d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float2d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float2d} + _parent::WeakRef end function temporary__dynamic_float2d{T}() where T @@ -11841,8 +11841,8 @@ mutable struct temporary__dynamic_float1d___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float1d___value} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float1d___value} + _parent::WeakRef end function temporary__dynamic_float1d___value{T}() where T @@ -11860,8 +11860,8 @@ mutable struct temporary__dynamic_float1d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float1d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float1d___identifier} + _parent::WeakRef end function temporary__dynamic_float1d___identifier{T}() where T @@ -11872,14 +11872,14 @@ end temporary__dynamic_float1d___identifier() = temporary__dynamic_float1d___identifier{Float64}() mutable struct temporary__dynamic_float1d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__dynamic_float1d___identifier{T} - var"value" :: temporary__dynamic_float1d___value{T} + var"identifier"::temporary__dynamic_float1d___identifier{T} + var"value"::temporary__dynamic_float1d___value{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__dynamic_float1d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__dynamic_float1d} + _parent::WeakRef end function temporary__dynamic_float1d{T}() where T @@ -11899,8 +11899,8 @@ mutable struct temporary__constant_string1d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_string1d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_string1d___identifier} + _parent::WeakRef end function temporary__constant_string1d___identifier{T}() where T @@ -11911,14 +11911,14 @@ end temporary__constant_string1d___identifier() = temporary__constant_string1d___identifier{Float64}() mutable struct temporary__constant_string1d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_string1d___identifier{T} + var"identifier"::temporary__constant_string1d___identifier{T} var"value" :: Vector{String} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_string1d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_string1d} + _parent::WeakRef end function temporary__constant_string1d{T}() where T @@ -11937,8 +11937,8 @@ mutable struct temporary__constant_string0d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_string0d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_string0d___identifier} + _parent::WeakRef end function temporary__constant_string0d___identifier{T}() where T @@ -11949,14 +11949,14 @@ end temporary__constant_string0d___identifier() = temporary__constant_string0d___identifier{Float64}() mutable struct temporary__constant_string0d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_string0d___identifier{T} + var"identifier"::temporary__constant_string0d___identifier{T} var"value" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_string0d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_string0d} + _parent::WeakRef end function temporary__constant_string0d{T}() where T @@ -11975,8 +11975,8 @@ mutable struct temporary__constant_integer3d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_integer3d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_integer3d___identifier} + _parent::WeakRef end function temporary__constant_integer3d___identifier{T}() where T @@ -11987,14 +11987,14 @@ end temporary__constant_integer3d___identifier() = temporary__constant_integer3d___identifier{Float64}() mutable struct temporary__constant_integer3d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_integer3d___identifier{T} + var"identifier"::temporary__constant_integer3d___identifier{T} var"value" :: Array{Int, 3} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_integer3d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_integer3d} + _parent::WeakRef end function temporary__constant_integer3d{T}() where T @@ -12013,8 +12013,8 @@ mutable struct temporary__constant_integer2d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_integer2d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_integer2d___identifier} + _parent::WeakRef end function temporary__constant_integer2d___identifier{T}() where T @@ -12025,14 +12025,14 @@ end temporary__constant_integer2d___identifier() = temporary__constant_integer2d___identifier{Float64}() mutable struct temporary__constant_integer2d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_integer2d___identifier{T} + var"identifier"::temporary__constant_integer2d___identifier{T} var"value" :: Matrix{Int} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_integer2d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_integer2d} + _parent::WeakRef end function temporary__constant_integer2d{T}() where T @@ -12051,8 +12051,8 @@ mutable struct temporary__constant_integer1d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_integer1d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_integer1d___identifier} + _parent::WeakRef end function temporary__constant_integer1d___identifier{T}() where T @@ -12063,14 +12063,14 @@ end temporary__constant_integer1d___identifier() = temporary__constant_integer1d___identifier{Float64}() mutable struct temporary__constant_integer1d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_integer1d___identifier{T} + var"identifier"::temporary__constant_integer1d___identifier{T} var"value" :: Vector{Int} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_integer1d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_integer1d} + _parent::WeakRef end function temporary__constant_integer1d{T}() where T @@ -12089,8 +12089,8 @@ mutable struct temporary__constant_integer0d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_integer0d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_integer0d___identifier} + _parent::WeakRef end function temporary__constant_integer0d___identifier{T}() where T @@ -12101,14 +12101,14 @@ end temporary__constant_integer0d___identifier() = temporary__constant_integer0d___identifier{Float64}() mutable struct temporary__constant_integer0d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_integer0d___identifier{T} + var"identifier"::temporary__constant_integer0d___identifier{T} var"value" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_integer0d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_integer0d} + _parent::WeakRef end function temporary__constant_integer0d{T}() where T @@ -12127,8 +12127,8 @@ mutable struct temporary__constant_float6d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float6d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float6d___identifier} + _parent::WeakRef end function temporary__constant_float6d___identifier{T}() where T @@ -12139,15 +12139,15 @@ end temporary__constant_float6d___identifier() = temporary__constant_float6d___identifier{Float64}() mutable struct temporary__constant_float6d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_float6d___identifier{T} + var"identifier"::temporary__constant_float6d___identifier{T} var"value" :: Array{<:T, 6} var"value_σ" :: Array{<:T, 6} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float6d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float6d} + _parent::WeakRef end function temporary__constant_float6d{T}() where T @@ -12166,8 +12166,8 @@ mutable struct temporary__constant_float5d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float5d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float5d___identifier} + _parent::WeakRef end function temporary__constant_float5d___identifier{T}() where T @@ -12178,15 +12178,15 @@ end temporary__constant_float5d___identifier() = temporary__constant_float5d___identifier{Float64}() mutable struct temporary__constant_float5d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_float5d___identifier{T} + var"identifier"::temporary__constant_float5d___identifier{T} var"value" :: Array{<:T, 5} var"value_σ" :: Array{<:T, 5} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float5d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float5d} + _parent::WeakRef end function temporary__constant_float5d{T}() where T @@ -12205,8 +12205,8 @@ mutable struct temporary__constant_float4d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float4d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float4d___identifier} + _parent::WeakRef end function temporary__constant_float4d___identifier{T}() where T @@ -12217,15 +12217,15 @@ end temporary__constant_float4d___identifier() = temporary__constant_float4d___identifier{Float64}() mutable struct temporary__constant_float4d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_float4d___identifier{T} + var"identifier"::temporary__constant_float4d___identifier{T} var"value" :: Array{<:T, 4} var"value_σ" :: Array{<:T, 4} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float4d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float4d} + _parent::WeakRef end function temporary__constant_float4d{T}() where T @@ -12244,8 +12244,8 @@ mutable struct temporary__constant_float3d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float3d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float3d___identifier} + _parent::WeakRef end function temporary__constant_float3d___identifier{T}() where T @@ -12256,15 +12256,15 @@ end temporary__constant_float3d___identifier() = temporary__constant_float3d___identifier{Float64}() mutable struct temporary__constant_float3d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_float3d___identifier{T} + var"identifier"::temporary__constant_float3d___identifier{T} var"value" :: Array{<:T, 3} var"value_σ" :: Array{<:T, 3} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float3d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float3d} + _parent::WeakRef end function temporary__constant_float3d{T}() where T @@ -12283,8 +12283,8 @@ mutable struct temporary__constant_float2d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float2d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float2d___identifier} + _parent::WeakRef end function temporary__constant_float2d___identifier{T}() where T @@ -12295,15 +12295,15 @@ end temporary__constant_float2d___identifier() = temporary__constant_float2d___identifier{Float64}() mutable struct temporary__constant_float2d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_float2d___identifier{T} + var"identifier"::temporary__constant_float2d___identifier{T} var"value" :: Matrix{<:T} var"value_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float2d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float2d} + _parent::WeakRef end function temporary__constant_float2d{T}() where T @@ -12322,8 +12322,8 @@ mutable struct temporary__constant_float1d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float1d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float1d___identifier} + _parent::WeakRef end function temporary__constant_float1d___identifier{T}() where T @@ -12334,15 +12334,15 @@ end temporary__constant_float1d___identifier() = temporary__constant_float1d___identifier{Float64}() mutable struct temporary__constant_float1d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_float1d___identifier{T} + var"identifier"::temporary__constant_float1d___identifier{T} var"value" :: Vector{<:T} var"value_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float1d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float1d} + _parent::WeakRef end function temporary__constant_float1d{T}() where T @@ -12361,8 +12361,8 @@ mutable struct temporary__constant_float0d___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float0d___identifier} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float0d___identifier} + _parent::WeakRef end function temporary__constant_float0d___identifier{T}() where T @@ -12373,15 +12373,15 @@ end temporary__constant_float0d___identifier() = temporary__constant_float0d___identifier{Float64}() mutable struct temporary__constant_float0d{T} <: IDSvectorStaticElement{T} - var"identifier" :: temporary__constant_float0d___identifier{T} + var"identifier"::temporary__constant_float0d___identifier{T} var"value" :: T var"value_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__constant_float0d} - _parent :: WeakRef + _ref::Union{Nothing,temporary__constant_float0d} + _parent::WeakRef end function temporary__constant_float0d{T}() where T @@ -12403,8 +12403,8 @@ mutable struct temporary__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__code__library} - _parent :: WeakRef + _ref::Union{Nothing,temporary__code__library} + _parent::WeakRef end function temporary__code__library{T}() where T @@ -12417,7 +12417,7 @@ temporary__code__library() = temporary__code__library{Float64}() mutable struct temporary__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{temporary__code__library{T}} + var"library"::IDSvector{temporary__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -12427,8 +12427,8 @@ mutable struct temporary__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary__code} - _parent :: WeakRef + _ref::Union{Nothing,temporary__code} + _parent::WeakRef end function temporary__code{T}() where T @@ -12440,37 +12440,37 @@ end temporary__code() = temporary__code{Float64}() mutable struct temporary{T} <: IDStop{T} - var"code" :: temporary__code{T} - var"constant_float0d" :: IDSvector{temporary__constant_float0d{T}} - var"constant_float1d" :: IDSvector{temporary__constant_float1d{T}} - var"constant_float2d" :: IDSvector{temporary__constant_float2d{T}} - var"constant_float3d" :: IDSvector{temporary__constant_float3d{T}} - var"constant_float4d" :: IDSvector{temporary__constant_float4d{T}} - var"constant_float5d" :: IDSvector{temporary__constant_float5d{T}} - var"constant_float6d" :: IDSvector{temporary__constant_float6d{T}} - var"constant_integer0d" :: IDSvector{temporary__constant_integer0d{T}} - var"constant_integer1d" :: IDSvector{temporary__constant_integer1d{T}} - var"constant_integer2d" :: IDSvector{temporary__constant_integer2d{T}} - var"constant_integer3d" :: IDSvector{temporary__constant_integer3d{T}} - var"constant_string0d" :: IDSvector{temporary__constant_string0d{T}} - var"constant_string1d" :: IDSvector{temporary__constant_string1d{T}} - var"dynamic_float1d" :: IDSvector{temporary__dynamic_float1d{T}} - var"dynamic_float2d" :: IDSvector{temporary__dynamic_float2d{T}} - var"dynamic_float3d" :: IDSvector{temporary__dynamic_float3d{T}} - var"dynamic_float4d" :: IDSvector{temporary__dynamic_float4d{T}} - var"dynamic_float5d" :: IDSvector{temporary__dynamic_float5d{T}} - var"dynamic_float6d" :: IDSvector{temporary__dynamic_float6d{T}} - var"dynamic_integer1d" :: IDSvector{temporary__dynamic_integer1d{T}} - var"dynamic_integer2d" :: IDSvector{temporary__dynamic_integer2d{T}} - var"dynamic_integer3d" :: IDSvector{temporary__dynamic_integer3d{T}} - var"ids_properties" :: temporary__ids_properties{T} + var"code"::temporary__code{T} + var"constant_float0d"::IDSvector{temporary__constant_float0d{T}} + var"constant_float1d"::IDSvector{temporary__constant_float1d{T}} + var"constant_float2d"::IDSvector{temporary__constant_float2d{T}} + var"constant_float3d"::IDSvector{temporary__constant_float3d{T}} + var"constant_float4d"::IDSvector{temporary__constant_float4d{T}} + var"constant_float5d"::IDSvector{temporary__constant_float5d{T}} + var"constant_float6d"::IDSvector{temporary__constant_float6d{T}} + var"constant_integer0d"::IDSvector{temporary__constant_integer0d{T}} + var"constant_integer1d"::IDSvector{temporary__constant_integer1d{T}} + var"constant_integer2d"::IDSvector{temporary__constant_integer2d{T}} + var"constant_integer3d"::IDSvector{temporary__constant_integer3d{T}} + var"constant_string0d"::IDSvector{temporary__constant_string0d{T}} + var"constant_string1d"::IDSvector{temporary__constant_string1d{T}} + var"dynamic_float1d"::IDSvector{temporary__dynamic_float1d{T}} + var"dynamic_float2d"::IDSvector{temporary__dynamic_float2d{T}} + var"dynamic_float3d"::IDSvector{temporary__dynamic_float3d{T}} + var"dynamic_float4d"::IDSvector{temporary__dynamic_float4d{T}} + var"dynamic_float5d"::IDSvector{temporary__dynamic_float5d{T}} + var"dynamic_float6d"::IDSvector{temporary__dynamic_float6d{T}} + var"dynamic_integer1d"::IDSvector{temporary__dynamic_integer1d{T}} + var"dynamic_integer2d"::IDSvector{temporary__dynamic_integer2d{T}} + var"dynamic_integer3d"::IDSvector{temporary__dynamic_integer3d{T}} + var"ids_properties"::temporary__ids_properties{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,temporary} - _parent :: WeakRef + _ref::Union{Nothing,temporary} + _parent::WeakRef end function temporary{T}() where T @@ -12512,8 +12512,8 @@ mutable struct summary__wall__material{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__wall__material} - _parent :: WeakRef + _ref::Union{Nothing,summary__wall__material} + _parent::WeakRef end function summary__wall__material{T}() where T @@ -12530,8 +12530,8 @@ mutable struct summary__wall__evaporation{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__wall__evaporation} - _parent :: WeakRef + _ref::Union{Nothing,summary__wall__evaporation} + _parent::WeakRef end function summary__wall__evaporation{T}() where T @@ -12542,14 +12542,14 @@ end summary__wall__evaporation() = summary__wall__evaporation{Float64}() mutable struct summary__wall{T} <: IDS{T} - var"evaporation" :: summary__wall__evaporation{T} - var"material" :: summary__wall__material{T} + var"evaporation"::summary__wall__evaporation{T} + var"material"::summary__wall__material{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__wall} - _parent :: WeakRef + _ref::Union{Nothing,summary__wall} + _parent::WeakRef end function summary__wall{T}() where T @@ -12569,8 +12569,8 @@ mutable struct summary__volume_average__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__zeff} + _parent::WeakRef end function summary__volume_average__zeff{T}() where T @@ -12588,8 +12588,8 @@ mutable struct summary__volume_average__t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__t_i_average} + _parent::WeakRef end function summary__volume_average__t_i_average{T}() where T @@ -12607,8 +12607,8 @@ mutable struct summary__volume_average__t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__t_e} + _parent::WeakRef end function summary__volume_average__t_e{T}() where T @@ -12626,8 +12626,8 @@ mutable struct summary__volume_average__n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i_total} + _parent::WeakRef end function summary__volume_average__n_i_total{T}() where T @@ -12645,8 +12645,8 @@ mutable struct summary__volume_average__n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__xenon} + _parent::WeakRef end function summary__volume_average__n_i__xenon{T}() where T @@ -12664,8 +12664,8 @@ mutable struct summary__volume_average__n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__tungsten} + _parent::WeakRef end function summary__volume_average__n_i__tungsten{T}() where T @@ -12683,8 +12683,8 @@ mutable struct summary__volume_average__n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__tritium} + _parent::WeakRef end function summary__volume_average__n_i__tritium{T}() where T @@ -12702,8 +12702,8 @@ mutable struct summary__volume_average__n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__oxygen} + _parent::WeakRef end function summary__volume_average__n_i__oxygen{T}() where T @@ -12721,8 +12721,8 @@ mutable struct summary__volume_average__n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__nitrogen} + _parent::WeakRef end function summary__volume_average__n_i__nitrogen{T}() where T @@ -12740,8 +12740,8 @@ mutable struct summary__volume_average__n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__neon} + _parent::WeakRef end function summary__volume_average__n_i__neon{T}() where T @@ -12759,8 +12759,8 @@ mutable struct summary__volume_average__n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__lithium} + _parent::WeakRef end function summary__volume_average__n_i__lithium{T}() where T @@ -12778,8 +12778,8 @@ mutable struct summary__volume_average__n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__krypton} + _parent::WeakRef end function summary__volume_average__n_i__krypton{T}() where T @@ -12797,8 +12797,8 @@ mutable struct summary__volume_average__n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__iron} + _parent::WeakRef end function summary__volume_average__n_i__iron{T}() where T @@ -12816,8 +12816,8 @@ mutable struct summary__volume_average__n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__hydrogen} + _parent::WeakRef end function summary__volume_average__n_i__hydrogen{T}() where T @@ -12835,8 +12835,8 @@ mutable struct summary__volume_average__n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__helium_4} + _parent::WeakRef end function summary__volume_average__n_i__helium_4{T}() where T @@ -12854,8 +12854,8 @@ mutable struct summary__volume_average__n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__helium_3} + _parent::WeakRef end function summary__volume_average__n_i__helium_3{T}() where T @@ -12873,8 +12873,8 @@ mutable struct summary__volume_average__n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__deuterium} + _parent::WeakRef end function summary__volume_average__n_i__deuterium{T}() where T @@ -12892,8 +12892,8 @@ mutable struct summary__volume_average__n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__carbon} + _parent::WeakRef end function summary__volume_average__n_i__carbon{T}() where T @@ -12911,8 +12911,8 @@ mutable struct summary__volume_average__n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__beryllium} + _parent::WeakRef end function summary__volume_average__n_i__beryllium{T}() where T @@ -12930,8 +12930,8 @@ mutable struct summary__volume_average__n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i__argon} + _parent::WeakRef end function summary__volume_average__n_i__argon{T}() where T @@ -12942,28 +12942,28 @@ end summary__volume_average__n_i__argon() = summary__volume_average__n_i__argon{Float64}() mutable struct summary__volume_average__n_i{T} <: IDS{T} - var"argon" :: summary__volume_average__n_i__argon{T} - var"beryllium" :: summary__volume_average__n_i__beryllium{T} - var"carbon" :: summary__volume_average__n_i__carbon{T} - var"deuterium" :: summary__volume_average__n_i__deuterium{T} - var"helium_3" :: summary__volume_average__n_i__helium_3{T} - var"helium_4" :: summary__volume_average__n_i__helium_4{T} - var"hydrogen" :: summary__volume_average__n_i__hydrogen{T} - var"iron" :: summary__volume_average__n_i__iron{T} - var"krypton" :: summary__volume_average__n_i__krypton{T} - var"lithium" :: summary__volume_average__n_i__lithium{T} - var"neon" :: summary__volume_average__n_i__neon{T} - var"nitrogen" :: summary__volume_average__n_i__nitrogen{T} - var"oxygen" :: summary__volume_average__n_i__oxygen{T} - var"tritium" :: summary__volume_average__n_i__tritium{T} - var"tungsten" :: summary__volume_average__n_i__tungsten{T} - var"xenon" :: summary__volume_average__n_i__xenon{T} + var"argon"::summary__volume_average__n_i__argon{T} + var"beryllium"::summary__volume_average__n_i__beryllium{T} + var"carbon"::summary__volume_average__n_i__carbon{T} + var"deuterium"::summary__volume_average__n_i__deuterium{T} + var"helium_3"::summary__volume_average__n_i__helium_3{T} + var"helium_4"::summary__volume_average__n_i__helium_4{T} + var"hydrogen"::summary__volume_average__n_i__hydrogen{T} + var"iron"::summary__volume_average__n_i__iron{T} + var"krypton"::summary__volume_average__n_i__krypton{T} + var"lithium"::summary__volume_average__n_i__lithium{T} + var"neon"::summary__volume_average__n_i__neon{T} + var"nitrogen"::summary__volume_average__n_i__nitrogen{T} + var"oxygen"::summary__volume_average__n_i__oxygen{T} + var"tritium"::summary__volume_average__n_i__tritium{T} + var"tungsten"::summary__volume_average__n_i__tungsten{T} + var"xenon"::summary__volume_average__n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_i} + _parent::WeakRef end function summary__volume_average__n_i{T}() where T @@ -12997,8 +12997,8 @@ mutable struct summary__volume_average__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__n_e} + _parent::WeakRef end function summary__volume_average__n_e{T}() where T @@ -13016,8 +13016,8 @@ mutable struct summary__volume_average__meff_hydrogenic{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__meff_hydrogenic} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__meff_hydrogenic} + _parent::WeakRef end function summary__volume_average__meff_hydrogenic{T}() where T @@ -13035,8 +13035,8 @@ mutable struct summary__volume_average__isotope_fraction_hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__isotope_fraction_hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__isotope_fraction_hydrogen} + _parent::WeakRef end function summary__volume_average__isotope_fraction_hydrogen{T}() where T @@ -13054,8 +13054,8 @@ mutable struct summary__volume_average__dn_e_dt{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average__dn_e_dt} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average__dn_e_dt} + _parent::WeakRef end function summary__volume_average__dn_e_dt{T}() where T @@ -13066,21 +13066,21 @@ end summary__volume_average__dn_e_dt() = summary__volume_average__dn_e_dt{Float64}() mutable struct summary__volume_average{T} <: IDS{T} - var"dn_e_dt" :: summary__volume_average__dn_e_dt{T} - var"isotope_fraction_hydrogen" :: summary__volume_average__isotope_fraction_hydrogen{T} - var"meff_hydrogenic" :: summary__volume_average__meff_hydrogenic{T} - var"n_e" :: summary__volume_average__n_e{T} - var"n_i" :: summary__volume_average__n_i{T} - var"n_i_total" :: summary__volume_average__n_i_total{T} - var"t_e" :: summary__volume_average__t_e{T} - var"t_i_average" :: summary__volume_average__t_i_average{T} - var"zeff" :: summary__volume_average__zeff{T} + var"dn_e_dt"::summary__volume_average__dn_e_dt{T} + var"isotope_fraction_hydrogen"::summary__volume_average__isotope_fraction_hydrogen{T} + var"meff_hydrogenic"::summary__volume_average__meff_hydrogenic{T} + var"n_e"::summary__volume_average__n_e{T} + var"n_i"::summary__volume_average__n_i{T} + var"n_i_total"::summary__volume_average__n_i_total{T} + var"t_e"::summary__volume_average__t_e{T} + var"t_i_average"::summary__volume_average__t_i_average{T} + var"zeff"::summary__volume_average__zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__volume_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__volume_average} + _parent::WeakRef end function summary__volume_average{T}() where T @@ -13107,8 +13107,8 @@ mutable struct summary__time_breakdown{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__time_breakdown} - _parent :: WeakRef + _ref::Union{Nothing,summary__time_breakdown} + _parent::WeakRef end function summary__time_breakdown{T}() where T @@ -13125,8 +13125,8 @@ mutable struct summary__tag{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__tag} - _parent :: WeakRef + _ref::Union{Nothing,summary__tag} + _parent::WeakRef end function summary__tag{T}() where T @@ -13143,8 +13143,8 @@ mutable struct summary__stationary_phase_flag{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__stationary_phase_flag} - _parent :: WeakRef + _ref::Union{Nothing,summary__stationary_phase_flag} + _parent::WeakRef end function summary__stationary_phase_flag{T}() where T @@ -13162,8 +13162,8 @@ mutable struct summary__scrape_off_layer__t_i_average_decay_length{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer__t_i_average_decay_length} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer__t_i_average_decay_length} + _parent::WeakRef end function summary__scrape_off_layer__t_i_average_decay_length{T}() where T @@ -13181,8 +13181,8 @@ mutable struct summary__scrape_off_layer__t_e_decay_length{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer__t_e_decay_length} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer__t_e_decay_length} + _parent::WeakRef end function summary__scrape_off_layer__t_e_decay_length{T}() where T @@ -13200,8 +13200,8 @@ mutable struct summary__scrape_off_layer__pressure_neutral{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer__pressure_neutral} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer__pressure_neutral} + _parent::WeakRef end function summary__scrape_off_layer__pressure_neutral{T}() where T @@ -13219,8 +13219,8 @@ mutable struct summary__scrape_off_layer__power_radiated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer__power_radiated} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer__power_radiated} + _parent::WeakRef end function summary__scrape_off_layer__power_radiated{T}() where T @@ -13238,8 +13238,8 @@ mutable struct summary__scrape_off_layer__n_i_total_decay_length{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer__n_i_total_decay_length} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer__n_i_total_decay_length} + _parent::WeakRef end function summary__scrape_off_layer__n_i_total_decay_length{T}() where T @@ -13257,8 +13257,8 @@ mutable struct summary__scrape_off_layer__n_e_decay_length{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer__n_e_decay_length} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer__n_e_decay_length} + _parent::WeakRef end function summary__scrape_off_layer__n_e_decay_length{T}() where T @@ -13276,8 +13276,8 @@ mutable struct summary__scrape_off_layer__heat_flux_i_decay_length{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer__heat_flux_i_decay_length} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer__heat_flux_i_decay_length} + _parent::WeakRef end function summary__scrape_off_layer__heat_flux_i_decay_length{T}() where T @@ -13295,8 +13295,8 @@ mutable struct summary__scrape_off_layer__heat_flux_e_decay_length{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer__heat_flux_e_decay_length} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer__heat_flux_e_decay_length} + _parent::WeakRef end function summary__scrape_off_layer__heat_flux_e_decay_length{T}() where T @@ -13307,20 +13307,20 @@ end summary__scrape_off_layer__heat_flux_e_decay_length() = summary__scrape_off_layer__heat_flux_e_decay_length{Float64}() mutable struct summary__scrape_off_layer{T} <: IDS{T} - var"heat_flux_e_decay_length" :: summary__scrape_off_layer__heat_flux_e_decay_length{T} - var"heat_flux_i_decay_length" :: summary__scrape_off_layer__heat_flux_i_decay_length{T} - var"n_e_decay_length" :: summary__scrape_off_layer__n_e_decay_length{T} - var"n_i_total_decay_length" :: summary__scrape_off_layer__n_i_total_decay_length{T} - var"power_radiated" :: summary__scrape_off_layer__power_radiated{T} - var"pressure_neutral" :: summary__scrape_off_layer__pressure_neutral{T} - var"t_e_decay_length" :: summary__scrape_off_layer__t_e_decay_length{T} - var"t_i_average_decay_length" :: summary__scrape_off_layer__t_i_average_decay_length{T} + var"heat_flux_e_decay_length"::summary__scrape_off_layer__heat_flux_e_decay_length{T} + var"heat_flux_i_decay_length"::summary__scrape_off_layer__heat_flux_i_decay_length{T} + var"n_e_decay_length"::summary__scrape_off_layer__n_e_decay_length{T} + var"n_i_total_decay_length"::summary__scrape_off_layer__n_i_total_decay_length{T} + var"power_radiated"::summary__scrape_off_layer__power_radiated{T} + var"pressure_neutral"::summary__scrape_off_layer__pressure_neutral{T} + var"t_e_decay_length"::summary__scrape_off_layer__t_e_decay_length{T} + var"t_i_average_decay_length"::summary__scrape_off_layer__t_i_average_decay_length{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__scrape_off_layer} - _parent :: WeakRef + _ref::Union{Nothing,summary__scrape_off_layer} + _parent::WeakRef end function summary__scrape_off_layer{T}() where T @@ -13346,8 +13346,8 @@ mutable struct summary__runaways__particles{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__runaways__particles} - _parent :: WeakRef + _ref::Union{Nothing,summary__runaways__particles} + _parent::WeakRef end function summary__runaways__particles{T}() where T @@ -13365,8 +13365,8 @@ mutable struct summary__runaways__current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__runaways__current} - _parent :: WeakRef + _ref::Union{Nothing,summary__runaways__current} + _parent::WeakRef end function summary__runaways__current{T}() where T @@ -13377,14 +13377,14 @@ end summary__runaways__current() = summary__runaways__current{Float64}() mutable struct summary__runaways{T} <: IDS{T} - var"current" :: summary__runaways__current{T} - var"particles" :: summary__runaways__particles{T} + var"current"::summary__runaways__current{T} + var"particles"::summary__runaways__particles{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__runaways} - _parent :: WeakRef + _ref::Union{Nothing,summary__runaways} + _parent::WeakRef end function summary__runaways{T}() where T @@ -13403,8 +13403,8 @@ mutable struct summary__rmps__occurrence{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__rmps__occurrence} - _parent :: WeakRef + _ref::Union{Nothing,summary__rmps__occurrence} + _parent::WeakRef end function summary__rmps__occurrence{T}() where T @@ -13415,13 +13415,13 @@ end summary__rmps__occurrence() = summary__rmps__occurrence{Float64}() mutable struct summary__rmps{T} <: IDS{T} - var"occurrence" :: summary__rmps__occurrence{T} + var"occurrence"::summary__rmps__occurrence{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__rmps} - _parent :: WeakRef + _ref::Union{Nothing,summary__rmps} + _parent::WeakRef end function summary__rmps{T}() where T @@ -13440,8 +13440,8 @@ mutable struct summary__plasma_duration{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__plasma_duration} - _parent :: WeakRef + _ref::Union{Nothing,summary__plasma_duration} + _parent::WeakRef end function summary__plasma_duration{T}() where T @@ -13458,8 +13458,8 @@ mutable struct summary__pellets__occurrence{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pellets__occurrence} - _parent :: WeakRef + _ref::Union{Nothing,summary__pellets__occurrence} + _parent::WeakRef end function summary__pellets__occurrence{T}() where T @@ -13470,13 +13470,13 @@ end summary__pellets__occurrence() = summary__pellets__occurrence{Float64}() mutable struct summary__pellets{T} <: IDS{T} - var"occurrence" :: summary__pellets__occurrence{T} + var"occurrence"::summary__pellets__occurrence{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pellets} - _parent :: WeakRef + _ref::Union{Nothing,summary__pellets} + _parent::WeakRef end function summary__pellets{T}() where T @@ -13495,8 +13495,8 @@ mutable struct summary__pedestal_fits__mtanh__volume_inside_pedestal{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__volume_inside_pedestal} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__volume_inside_pedestal} + _parent::WeakRef end function summary__pedestal_fits__mtanh__volume_inside_pedestal{T}() where T @@ -13514,8 +13514,8 @@ mutable struct summary__pedestal_fits__mtanh__t_e__pedestal_width{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__t_e__pedestal_width} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__t_e__pedestal_width} + _parent::WeakRef end function summary__pedestal_fits__mtanh__t_e__pedestal_width{T}() where T @@ -13533,8 +13533,8 @@ mutable struct summary__pedestal_fits__mtanh__t_e__pedestal_position{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__t_e__pedestal_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__t_e__pedestal_position} + _parent::WeakRef end function summary__pedestal_fits__mtanh__t_e__pedestal_position{T}() where T @@ -13552,8 +13552,8 @@ mutable struct summary__pedestal_fits__mtanh__t_e__pedestal_height{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__t_e__pedestal_height} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__t_e__pedestal_height} + _parent::WeakRef end function summary__pedestal_fits__mtanh__t_e__pedestal_height{T}() where T @@ -13571,8 +13571,8 @@ mutable struct summary__pedestal_fits__mtanh__t_e__offset{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__t_e__offset} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__t_e__offset} + _parent::WeakRef end function summary__pedestal_fits__mtanh__t_e__offset{T}() where T @@ -13590,8 +13590,8 @@ mutable struct summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max_position{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max_position} + _parent::WeakRef end function summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max_position{T}() where T @@ -13609,8 +13609,8 @@ mutable struct summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max} + _parent::WeakRef end function summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max{T}() where T @@ -13628,8 +13628,8 @@ mutable struct summary__pedestal_fits__mtanh__t_e__d_dpsi_norm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__t_e__d_dpsi_norm} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__t_e__d_dpsi_norm} + _parent::WeakRef end function summary__pedestal_fits__mtanh__t_e__d_dpsi_norm{T}() where T @@ -13640,19 +13640,19 @@ end summary__pedestal_fits__mtanh__t_e__d_dpsi_norm() = summary__pedestal_fits__mtanh__t_e__d_dpsi_norm{Float64}() mutable struct summary__pedestal_fits__mtanh__t_e{T} <: IDS{T} - var"d_dpsi_norm" :: summary__pedestal_fits__mtanh__t_e__d_dpsi_norm{T} - var"d_dpsi_norm_max" :: summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max{T} - var"d_dpsi_norm_max_position" :: summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max_position{T} - var"offset" :: summary__pedestal_fits__mtanh__t_e__offset{T} - var"pedestal_height" :: summary__pedestal_fits__mtanh__t_e__pedestal_height{T} - var"pedestal_position" :: summary__pedestal_fits__mtanh__t_e__pedestal_position{T} - var"pedestal_width" :: summary__pedestal_fits__mtanh__t_e__pedestal_width{T} + var"d_dpsi_norm"::summary__pedestal_fits__mtanh__t_e__d_dpsi_norm{T} + var"d_dpsi_norm_max"::summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max{T} + var"d_dpsi_norm_max_position"::summary__pedestal_fits__mtanh__t_e__d_dpsi_norm_max_position{T} + var"offset"::summary__pedestal_fits__mtanh__t_e__offset{T} + var"pedestal_height"::summary__pedestal_fits__mtanh__t_e__pedestal_height{T} + var"pedestal_position"::summary__pedestal_fits__mtanh__t_e__pedestal_position{T} + var"pedestal_width"::summary__pedestal_fits__mtanh__t_e__pedestal_width{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__t_e} + _parent::WeakRef end function summary__pedestal_fits__mtanh__t_e{T}() where T @@ -13677,8 +13677,8 @@ mutable struct summary__pedestal_fits__mtanh__stability__bootstrap_current_saute _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__t_e_pedestal_top_critical} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__t_e_pedestal_top_critical} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__t_e_pedestal_top_critical{T}() where T @@ -13696,8 +13696,8 @@ mutable struct summary__pedestal_fits__mtanh__stability__bootstrap_current_saute _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_ratio} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_ratio} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_ratio{T}() where T @@ -13715,8 +13715,8 @@ mutable struct summary__pedestal_fits__mtanh__stability__bootstrap_current_saute _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_critical} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_critical} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_critical{T}() where T @@ -13727,15 +13727,15 @@ end summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_critical() = summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_critical{Float64}() mutable struct summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter{T} <: IDS{T} - var"alpha_critical" :: summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_critical{T} - var"alpha_ratio" :: summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_ratio{T} - var"t_e_pedestal_top_critical" :: summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__t_e_pedestal_top_critical{T} + var"alpha_critical"::summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_critical{T} + var"alpha_ratio"::summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__alpha_ratio{T} + var"t_e_pedestal_top_critical"::summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter__t_e_pedestal_top_critical{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter{T}() where T @@ -13756,8 +13756,8 @@ mutable struct summary__pedestal_fits__mtanh__stability__bootstrap_current_hager _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__t_e_pedestal_top_critical} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__t_e_pedestal_top_critical} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__t_e_pedestal_top_critical{T}() where T @@ -13775,8 +13775,8 @@ mutable struct summary__pedestal_fits__mtanh__stability__bootstrap_current_hager _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_ratio} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_ratio} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_ratio{T}() where T @@ -13794,8 +13794,8 @@ mutable struct summary__pedestal_fits__mtanh__stability__bootstrap_current_hager _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_critical} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_critical} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_critical{T}() where T @@ -13806,15 +13806,15 @@ end summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_critical() = summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_critical{Float64}() mutable struct summary__pedestal_fits__mtanh__stability__bootstrap_current_hager{T} <: IDS{T} - var"alpha_critical" :: summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_critical{T} - var"alpha_ratio" :: summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_ratio{T} - var"t_e_pedestal_top_critical" :: summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__t_e_pedestal_top_critical{T} + var"alpha_critical"::summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_critical{T} + var"alpha_ratio"::summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__alpha_ratio{T} + var"t_e_pedestal_top_critical"::summary__pedestal_fits__mtanh__stability__bootstrap_current_hager__t_e_pedestal_top_critical{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_hager} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__bootstrap_current_hager} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__bootstrap_current_hager{T}() where T @@ -13835,8 +13835,8 @@ mutable struct summary__pedestal_fits__mtanh__stability__alpha_experimental{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability__alpha_experimental} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability__alpha_experimental} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability__alpha_experimental{T}() where T @@ -13847,15 +13847,15 @@ end summary__pedestal_fits__mtanh__stability__alpha_experimental() = summary__pedestal_fits__mtanh__stability__alpha_experimental{Float64}() mutable struct summary__pedestal_fits__mtanh__stability{T} <: IDS{T} - var"alpha_experimental" :: summary__pedestal_fits__mtanh__stability__alpha_experimental{T} - var"bootstrap_current_hager" :: summary__pedestal_fits__mtanh__stability__bootstrap_current_hager{T} - var"bootstrap_current_sauter" :: summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter{T} + var"alpha_experimental"::summary__pedestal_fits__mtanh__stability__alpha_experimental{T} + var"bootstrap_current_hager"::summary__pedestal_fits__mtanh__stability__bootstrap_current_hager{T} + var"bootstrap_current_sauter"::summary__pedestal_fits__mtanh__stability__bootstrap_current_sauter{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__stability} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__stability} + _parent::WeakRef end function summary__pedestal_fits__mtanh__stability{T}() where T @@ -13876,8 +13876,8 @@ mutable struct summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_magn _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_magnetic_axis} + _parent::WeakRef end function summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_magnetic_axis{T}() where T @@ -13895,8 +13895,8 @@ mutable struct summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_lfs{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_lfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_lfs{T}() where T @@ -13914,8 +13914,8 @@ mutable struct summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_hfs{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_hfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_hfs{T}() where T @@ -13933,8 +13933,8 @@ mutable struct summary__pedestal_fits__mtanh__pressure_electron__separatrix{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__separatrix} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__separatrix} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron__separatrix{T}() where T @@ -13952,8 +13952,8 @@ mutable struct summary__pedestal_fits__mtanh__pressure_electron__pedestal_width{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__pedestal_width} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__pedestal_width} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron__pedestal_width{T}() where T @@ -13971,8 +13971,8 @@ mutable struct summary__pedestal_fits__mtanh__pressure_electron__pedestal_positi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__pedestal_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__pedestal_position} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron__pedestal_position{T}() where T @@ -13990,8 +13990,8 @@ mutable struct summary__pedestal_fits__mtanh__pressure_electron__pedestal_height _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__pedestal_height} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__pedestal_height} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron__pedestal_height{T}() where T @@ -14009,8 +14009,8 @@ mutable struct summary__pedestal_fits__mtanh__pressure_electron__offset{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__offset} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__offset} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron__offset{T}() where T @@ -14028,8 +14028,8 @@ mutable struct summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max_position} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max_position{T}() where T @@ -14047,8 +14047,8 @@ mutable struct summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max{T}() where T @@ -14066,8 +14066,8 @@ mutable struct summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm{T}() where T @@ -14078,20 +14078,20 @@ end summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm() = summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm{Float64}() mutable struct summary__pedestal_fits__mtanh__pressure_electron{T} <: IDS{T} - var"d_dpsi_norm" :: summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm{T} - var"d_dpsi_norm_max" :: summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max{T} - var"d_dpsi_norm_max_position" :: summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max_position{T} - var"offset" :: summary__pedestal_fits__mtanh__pressure_electron__offset{T} - var"pedestal_height" :: summary__pedestal_fits__mtanh__pressure_electron__pedestal_height{T} - var"pedestal_position" :: summary__pedestal_fits__mtanh__pressure_electron__pedestal_position{T} - var"pedestal_width" :: summary__pedestal_fits__mtanh__pressure_electron__pedestal_width{T} - var"separatrix" :: summary__pedestal_fits__mtanh__pressure_electron__separatrix{T} + var"d_dpsi_norm"::summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm{T} + var"d_dpsi_norm_max"::summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max{T} + var"d_dpsi_norm_max_position"::summary__pedestal_fits__mtanh__pressure_electron__d_dpsi_norm_max_position{T} + var"offset"::summary__pedestal_fits__mtanh__pressure_electron__offset{T} + var"pedestal_height"::summary__pedestal_fits__mtanh__pressure_electron__pedestal_height{T} + var"pedestal_position"::summary__pedestal_fits__mtanh__pressure_electron__pedestal_position{T} + var"pedestal_width"::summary__pedestal_fits__mtanh__pressure_electron__pedestal_width{T} + var"separatrix"::summary__pedestal_fits__mtanh__pressure_electron__separatrix{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__pressure_electron} + _parent::WeakRef end function summary__pedestal_fits__mtanh__pressure_electron{T}() where T @@ -14117,8 +14117,8 @@ mutable struct summary__pedestal_fits__mtanh__nustar_pedestal_top_electron{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__nustar_pedestal_top_electron} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__nustar_pedestal_top_electron} + _parent::WeakRef end function summary__pedestal_fits__mtanh__nustar_pedestal_top_electron{T}() where T @@ -14136,8 +14136,8 @@ mutable struct summary__pedestal_fits__mtanh__n_e__separatrix{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e__separatrix} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e__separatrix} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e__separatrix{T}() where T @@ -14155,8 +14155,8 @@ mutable struct summary__pedestal_fits__mtanh__n_e__pedestal_width{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e__pedestal_width} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e__pedestal_width} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e__pedestal_width{T}() where T @@ -14174,8 +14174,8 @@ mutable struct summary__pedestal_fits__mtanh__n_e__pedestal_position{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e__pedestal_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e__pedestal_position} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e__pedestal_position{T}() where T @@ -14193,8 +14193,8 @@ mutable struct summary__pedestal_fits__mtanh__n_e__pedestal_height{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e__pedestal_height} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e__pedestal_height} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e__pedestal_height{T}() where T @@ -14212,8 +14212,8 @@ mutable struct summary__pedestal_fits__mtanh__n_e__offset{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e__offset} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e__offset} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e__offset{T}() where T @@ -14231,8 +14231,8 @@ mutable struct summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max_position{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max_position} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max_position{T}() where T @@ -14250,8 +14250,8 @@ mutable struct summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max{T}() where T @@ -14269,8 +14269,8 @@ mutable struct summary__pedestal_fits__mtanh__n_e__d_dpsi_norm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e__d_dpsi_norm} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e__d_dpsi_norm} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e__d_dpsi_norm{T}() where T @@ -14281,20 +14281,20 @@ end summary__pedestal_fits__mtanh__n_e__d_dpsi_norm() = summary__pedestal_fits__mtanh__n_e__d_dpsi_norm{Float64}() mutable struct summary__pedestal_fits__mtanh__n_e{T} <: IDS{T} - var"d_dpsi_norm" :: summary__pedestal_fits__mtanh__n_e__d_dpsi_norm{T} - var"d_dpsi_norm_max" :: summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max{T} - var"d_dpsi_norm_max_position" :: summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max_position{T} - var"offset" :: summary__pedestal_fits__mtanh__n_e__offset{T} - var"pedestal_height" :: summary__pedestal_fits__mtanh__n_e__pedestal_height{T} - var"pedestal_position" :: summary__pedestal_fits__mtanh__n_e__pedestal_position{T} - var"pedestal_width" :: summary__pedestal_fits__mtanh__n_e__pedestal_width{T} - var"separatrix" :: summary__pedestal_fits__mtanh__n_e__separatrix{T} + var"d_dpsi_norm"::summary__pedestal_fits__mtanh__n_e__d_dpsi_norm{T} + var"d_dpsi_norm_max"::summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max{T} + var"d_dpsi_norm_max_position"::summary__pedestal_fits__mtanh__n_e__d_dpsi_norm_max_position{T} + var"offset"::summary__pedestal_fits__mtanh__n_e__offset{T} + var"pedestal_height"::summary__pedestal_fits__mtanh__n_e__pedestal_height{T} + var"pedestal_position"::summary__pedestal_fits__mtanh__n_e__pedestal_position{T} + var"pedestal_width"::summary__pedestal_fits__mtanh__n_e__pedestal_width{T} + var"separatrix"::summary__pedestal_fits__mtanh__n_e__separatrix{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__n_e} + _parent::WeakRef end function summary__pedestal_fits__mtanh__n_e{T}() where T @@ -14320,8 +14320,8 @@ mutable struct summary__pedestal_fits__mtanh__energy_thermal_pedestal_ion{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__energy_thermal_pedestal_ion} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__energy_thermal_pedestal_ion} + _parent::WeakRef end function summary__pedestal_fits__mtanh__energy_thermal_pedestal_ion{T}() where T @@ -14339,8 +14339,8 @@ mutable struct summary__pedestal_fits__mtanh__energy_thermal_pedestal_electron{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__energy_thermal_pedestal_electron} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__energy_thermal_pedestal_electron} + _parent::WeakRef end function summary__pedestal_fits__mtanh__energy_thermal_pedestal_electron{T}() where T @@ -14358,8 +14358,8 @@ mutable struct summary__pedestal_fits__mtanh__coulomb_factor_pedestal_top{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__coulomb_factor_pedestal_top} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__coulomb_factor_pedestal_top} + _parent::WeakRef end function summary__pedestal_fits__mtanh__coulomb_factor_pedestal_top{T}() where T @@ -14377,8 +14377,8 @@ mutable struct summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_lfs _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_lfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_lfs{T}() where T @@ -14396,8 +14396,8 @@ mutable struct summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_hfs _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_hfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_hfs{T}() where T @@ -14415,8 +14415,8 @@ mutable struct summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_ave _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_average} + _parent::WeakRef end function summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_average{T}() where T @@ -14434,8 +14434,8 @@ mutable struct summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_lfs{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_lfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_lfs{T}() where T @@ -14453,8 +14453,8 @@ mutable struct summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_hfs{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_hfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_hfs{T}() where T @@ -14472,8 +14472,8 @@ mutable struct summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_lfs{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_lfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_lfs{T}() where T @@ -14491,8 +14491,8 @@ mutable struct summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_hfs{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_hfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_hfs{T}() where T @@ -14510,8 +14510,8 @@ mutable struct summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_average{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_average} + _parent::WeakRef end function summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_average{T}() where T @@ -14529,8 +14529,8 @@ mutable struct summary__pedestal_fits__mtanh__b_field_pedestal_top_lfs{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__b_field_pedestal_top_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__b_field_pedestal_top_lfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__b_field_pedestal_top_lfs{T}() where T @@ -14548,8 +14548,8 @@ mutable struct summary__pedestal_fits__mtanh__b_field_pedestal_top_hfs{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__b_field_pedestal_top_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__b_field_pedestal_top_hfs} + _parent::WeakRef end function summary__pedestal_fits__mtanh__b_field_pedestal_top_hfs{T}() where T @@ -14567,8 +14567,8 @@ mutable struct summary__pedestal_fits__mtanh__alpha_electron_pedestal_max_positi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__alpha_electron_pedestal_max_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__alpha_electron_pedestal_max_position} + _parent::WeakRef end function summary__pedestal_fits__mtanh__alpha_electron_pedestal_max_position{T}() where T @@ -14586,8 +14586,8 @@ mutable struct summary__pedestal_fits__mtanh__alpha_electron_pedestal_max{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh__alpha_electron_pedestal_max} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh__alpha_electron_pedestal_max} + _parent::WeakRef end function summary__pedestal_fits__mtanh__alpha_electron_pedestal_max{T}() where T @@ -14598,38 +14598,38 @@ end summary__pedestal_fits__mtanh__alpha_electron_pedestal_max() = summary__pedestal_fits__mtanh__alpha_electron_pedestal_max{Float64}() mutable struct summary__pedestal_fits__mtanh{T} <: IDS{T} - var"alpha_electron_pedestal_max" :: summary__pedestal_fits__mtanh__alpha_electron_pedestal_max{T} - var"alpha_electron_pedestal_max_position" :: summary__pedestal_fits__mtanh__alpha_electron_pedestal_max_position{T} - var"b_field_pedestal_top_hfs" :: summary__pedestal_fits__mtanh__b_field_pedestal_top_hfs{T} - var"b_field_pedestal_top_lfs" :: summary__pedestal_fits__mtanh__b_field_pedestal_top_lfs{T} - var"b_field_pol_pedestal_top_average" :: summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_average{T} - var"b_field_pol_pedestal_top_hfs" :: summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_hfs{T} - var"b_field_pol_pedestal_top_lfs" :: summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_lfs{T} - var"b_field_tor_pedestal_top_hfs" :: summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_hfs{T} - var"b_field_tor_pedestal_top_lfs" :: summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_lfs{T} - var"beta_pol_pedestal_top_electron_average" :: summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_average{T} - var"beta_pol_pedestal_top_electron_hfs" :: summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_hfs{T} - var"beta_pol_pedestal_top_electron_lfs" :: summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_lfs{T} - var"coulomb_factor_pedestal_top" :: summary__pedestal_fits__mtanh__coulomb_factor_pedestal_top{T} - var"energy_thermal_pedestal_electron" :: summary__pedestal_fits__mtanh__energy_thermal_pedestal_electron{T} - var"energy_thermal_pedestal_ion" :: summary__pedestal_fits__mtanh__energy_thermal_pedestal_ion{T} - var"n_e" :: summary__pedestal_fits__mtanh__n_e{T} - var"nustar_pedestal_top_electron" :: summary__pedestal_fits__mtanh__nustar_pedestal_top_electron{T} + var"alpha_electron_pedestal_max"::summary__pedestal_fits__mtanh__alpha_electron_pedestal_max{T} + var"alpha_electron_pedestal_max_position"::summary__pedestal_fits__mtanh__alpha_electron_pedestal_max_position{T} + var"b_field_pedestal_top_hfs"::summary__pedestal_fits__mtanh__b_field_pedestal_top_hfs{T} + var"b_field_pedestal_top_lfs"::summary__pedestal_fits__mtanh__b_field_pedestal_top_lfs{T} + var"b_field_pol_pedestal_top_average"::summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_average{T} + var"b_field_pol_pedestal_top_hfs"::summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_hfs{T} + var"b_field_pol_pedestal_top_lfs"::summary__pedestal_fits__mtanh__b_field_pol_pedestal_top_lfs{T} + var"b_field_tor_pedestal_top_hfs"::summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_hfs{T} + var"b_field_tor_pedestal_top_lfs"::summary__pedestal_fits__mtanh__b_field_tor_pedestal_top_lfs{T} + var"beta_pol_pedestal_top_electron_average"::summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_average{T} + var"beta_pol_pedestal_top_electron_hfs"::summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_hfs{T} + var"beta_pol_pedestal_top_electron_lfs"::summary__pedestal_fits__mtanh__beta_pol_pedestal_top_electron_lfs{T} + var"coulomb_factor_pedestal_top"::summary__pedestal_fits__mtanh__coulomb_factor_pedestal_top{T} + var"energy_thermal_pedestal_electron"::summary__pedestal_fits__mtanh__energy_thermal_pedestal_electron{T} + var"energy_thermal_pedestal_ion"::summary__pedestal_fits__mtanh__energy_thermal_pedestal_ion{T} + var"n_e"::summary__pedestal_fits__mtanh__n_e{T} + var"nustar_pedestal_top_electron"::summary__pedestal_fits__mtanh__nustar_pedestal_top_electron{T} var"parameters" :: Vector{<:T} var"parameters_σ" :: Vector{<:T} - var"pressure_electron" :: summary__pedestal_fits__mtanh__pressure_electron{T} - var"rhostar_pedestal_top_electron_hfs" :: summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_hfs{T} - var"rhostar_pedestal_top_electron_lfs" :: summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_lfs{T} - var"rhostar_pedestal_top_electron_magnetic_axis" :: summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_magnetic_axis{T} - var"stability" :: summary__pedestal_fits__mtanh__stability{T} - var"t_e" :: summary__pedestal_fits__mtanh__t_e{T} - var"volume_inside_pedestal" :: summary__pedestal_fits__mtanh__volume_inside_pedestal{T} + var"pressure_electron"::summary__pedestal_fits__mtanh__pressure_electron{T} + var"rhostar_pedestal_top_electron_hfs"::summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_hfs{T} + var"rhostar_pedestal_top_electron_lfs"::summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_lfs{T} + var"rhostar_pedestal_top_electron_magnetic_axis"::summary__pedestal_fits__mtanh__rhostar_pedestal_top_electron_magnetic_axis{T} + var"stability"::summary__pedestal_fits__mtanh__stability{T} + var"t_e"::summary__pedestal_fits__mtanh__t_e{T} + var"volume_inside_pedestal"::summary__pedestal_fits__mtanh__volume_inside_pedestal{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__mtanh} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__mtanh} + _parent::WeakRef end function summary__pedestal_fits__mtanh{T}() where T @@ -14671,8 +14671,8 @@ mutable struct summary__pedestal_fits__linear__volume_inside_pedestal{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__volume_inside_pedestal} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__volume_inside_pedestal} + _parent::WeakRef end function summary__pedestal_fits__linear__volume_inside_pedestal{T}() where T @@ -14690,8 +14690,8 @@ mutable struct summary__pedestal_fits__linear__t_e__pedestal_width{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__t_e__pedestal_width} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__t_e__pedestal_width} + _parent::WeakRef end function summary__pedestal_fits__linear__t_e__pedestal_width{T}() where T @@ -14709,8 +14709,8 @@ mutable struct summary__pedestal_fits__linear__t_e__pedestal_position{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__t_e__pedestal_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__t_e__pedestal_position} + _parent::WeakRef end function summary__pedestal_fits__linear__t_e__pedestal_position{T}() where T @@ -14728,8 +14728,8 @@ mutable struct summary__pedestal_fits__linear__t_e__pedestal_height{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__t_e__pedestal_height} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__t_e__pedestal_height} + _parent::WeakRef end function summary__pedestal_fits__linear__t_e__pedestal_height{T}() where T @@ -14747,8 +14747,8 @@ mutable struct summary__pedestal_fits__linear__t_e__offset{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__t_e__offset} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__t_e__offset} + _parent::WeakRef end function summary__pedestal_fits__linear__t_e__offset{T}() where T @@ -14766,8 +14766,8 @@ mutable struct summary__pedestal_fits__linear__t_e__d_dpsi_norm_max{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__t_e__d_dpsi_norm_max} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__t_e__d_dpsi_norm_max} + _parent::WeakRef end function summary__pedestal_fits__linear__t_e__d_dpsi_norm_max{T}() where T @@ -14785,8 +14785,8 @@ mutable struct summary__pedestal_fits__linear__t_e__d_dpsi_norm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__t_e__d_dpsi_norm} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__t_e__d_dpsi_norm} + _parent::WeakRef end function summary__pedestal_fits__linear__t_e__d_dpsi_norm{T}() where T @@ -14797,18 +14797,18 @@ end summary__pedestal_fits__linear__t_e__d_dpsi_norm() = summary__pedestal_fits__linear__t_e__d_dpsi_norm{Float64}() mutable struct summary__pedestal_fits__linear__t_e{T} <: IDS{T} - var"d_dpsi_norm" :: summary__pedestal_fits__linear__t_e__d_dpsi_norm{T} - var"d_dpsi_norm_max" :: summary__pedestal_fits__linear__t_e__d_dpsi_norm_max{T} - var"offset" :: summary__pedestal_fits__linear__t_e__offset{T} - var"pedestal_height" :: summary__pedestal_fits__linear__t_e__pedestal_height{T} - var"pedestal_position" :: summary__pedestal_fits__linear__t_e__pedestal_position{T} - var"pedestal_width" :: summary__pedestal_fits__linear__t_e__pedestal_width{T} + var"d_dpsi_norm"::summary__pedestal_fits__linear__t_e__d_dpsi_norm{T} + var"d_dpsi_norm_max"::summary__pedestal_fits__linear__t_e__d_dpsi_norm_max{T} + var"offset"::summary__pedestal_fits__linear__t_e__offset{T} + var"pedestal_height"::summary__pedestal_fits__linear__t_e__pedestal_height{T} + var"pedestal_position"::summary__pedestal_fits__linear__t_e__pedestal_position{T} + var"pedestal_width"::summary__pedestal_fits__linear__t_e__pedestal_width{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__t_e} + _parent::WeakRef end function summary__pedestal_fits__linear__t_e{T}() where T @@ -14832,8 +14832,8 @@ mutable struct summary__pedestal_fits__linear__rhostar_pedestal_top_electron_mag _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__rhostar_pedestal_top_electron_magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__rhostar_pedestal_top_electron_magnetic_axis} + _parent::WeakRef end function summary__pedestal_fits__linear__rhostar_pedestal_top_electron_magnetic_axis{T}() where T @@ -14851,8 +14851,8 @@ mutable struct summary__pedestal_fits__linear__rhostar_pedestal_top_electron_lfs _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__rhostar_pedestal_top_electron_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__rhostar_pedestal_top_electron_lfs} + _parent::WeakRef end function summary__pedestal_fits__linear__rhostar_pedestal_top_electron_lfs{T}() where T @@ -14870,8 +14870,8 @@ mutable struct summary__pedestal_fits__linear__rhostar_pedestal_top_electron_hfs _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__rhostar_pedestal_top_electron_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__rhostar_pedestal_top_electron_hfs} + _parent::WeakRef end function summary__pedestal_fits__linear__rhostar_pedestal_top_electron_hfs{T}() where T @@ -14889,8 +14889,8 @@ mutable struct summary__pedestal_fits__linear__pressure_electron__separatrix{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron__separatrix} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron__separatrix} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron__separatrix{T}() where T @@ -14908,8 +14908,8 @@ mutable struct summary__pedestal_fits__linear__pressure_electron__pedestal_width _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron__pedestal_width} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron__pedestal_width} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron__pedestal_width{T}() where T @@ -14927,8 +14927,8 @@ mutable struct summary__pedestal_fits__linear__pressure_electron__pedestal_posit _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron__pedestal_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron__pedestal_position} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron__pedestal_position{T}() where T @@ -14946,8 +14946,8 @@ mutable struct summary__pedestal_fits__linear__pressure_electron__pedestal_heigh _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron__pedestal_height} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron__pedestal_height} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron__pedestal_height{T}() where T @@ -14965,8 +14965,8 @@ mutable struct summary__pedestal_fits__linear__pressure_electron__offset{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron__offset} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron__offset} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron__offset{T}() where T @@ -14984,8 +14984,8 @@ mutable struct summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_ma _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max_position} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max_position{T}() where T @@ -15003,8 +15003,8 @@ mutable struct summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_ma _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max{T}() where T @@ -15022,8 +15022,8 @@ mutable struct summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm{T}() where T @@ -15034,20 +15034,20 @@ end summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm() = summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm{Float64}() mutable struct summary__pedestal_fits__linear__pressure_electron{T} <: IDS{T} - var"d_dpsi_norm" :: summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm{T} - var"d_dpsi_norm_max" :: summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max{T} - var"d_dpsi_norm_max_position" :: summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max_position{T} - var"offset" :: summary__pedestal_fits__linear__pressure_electron__offset{T} - var"pedestal_height" :: summary__pedestal_fits__linear__pressure_electron__pedestal_height{T} - var"pedestal_position" :: summary__pedestal_fits__linear__pressure_electron__pedestal_position{T} - var"pedestal_width" :: summary__pedestal_fits__linear__pressure_electron__pedestal_width{T} - var"separatrix" :: summary__pedestal_fits__linear__pressure_electron__separatrix{T} + var"d_dpsi_norm"::summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm{T} + var"d_dpsi_norm_max"::summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max{T} + var"d_dpsi_norm_max_position"::summary__pedestal_fits__linear__pressure_electron__d_dpsi_norm_max_position{T} + var"offset"::summary__pedestal_fits__linear__pressure_electron__offset{T} + var"pedestal_height"::summary__pedestal_fits__linear__pressure_electron__pedestal_height{T} + var"pedestal_position"::summary__pedestal_fits__linear__pressure_electron__pedestal_position{T} + var"pedestal_width"::summary__pedestal_fits__linear__pressure_electron__pedestal_width{T} + var"separatrix"::summary__pedestal_fits__linear__pressure_electron__separatrix{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__pressure_electron} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__pressure_electron} + _parent::WeakRef end function summary__pedestal_fits__linear__pressure_electron{T}() where T @@ -15073,8 +15073,8 @@ mutable struct summary__pedestal_fits__linear__nustar_pedestal_top_electron{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__nustar_pedestal_top_electron} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__nustar_pedestal_top_electron} + _parent::WeakRef end function summary__pedestal_fits__linear__nustar_pedestal_top_electron{T}() where T @@ -15092,8 +15092,8 @@ mutable struct summary__pedestal_fits__linear__n_e__separatrix{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__n_e__separatrix} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__n_e__separatrix} + _parent::WeakRef end function summary__pedestal_fits__linear__n_e__separatrix{T}() where T @@ -15111,8 +15111,8 @@ mutable struct summary__pedestal_fits__linear__n_e__pedestal_width{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__n_e__pedestal_width} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__n_e__pedestal_width} + _parent::WeakRef end function summary__pedestal_fits__linear__n_e__pedestal_width{T}() where T @@ -15130,8 +15130,8 @@ mutable struct summary__pedestal_fits__linear__n_e__pedestal_position{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__n_e__pedestal_position} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__n_e__pedestal_position} + _parent::WeakRef end function summary__pedestal_fits__linear__n_e__pedestal_position{T}() where T @@ -15149,8 +15149,8 @@ mutable struct summary__pedestal_fits__linear__n_e__pedestal_height{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__n_e__pedestal_height} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__n_e__pedestal_height} + _parent::WeakRef end function summary__pedestal_fits__linear__n_e__pedestal_height{T}() where T @@ -15168,8 +15168,8 @@ mutable struct summary__pedestal_fits__linear__n_e__offset{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__n_e__offset} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__n_e__offset} + _parent::WeakRef end function summary__pedestal_fits__linear__n_e__offset{T}() where T @@ -15187,8 +15187,8 @@ mutable struct summary__pedestal_fits__linear__n_e__d_dpsi_norm_max{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__n_e__d_dpsi_norm_max} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__n_e__d_dpsi_norm_max} + _parent::WeakRef end function summary__pedestal_fits__linear__n_e__d_dpsi_norm_max{T}() where T @@ -15206,8 +15206,8 @@ mutable struct summary__pedestal_fits__linear__n_e__d_dpsi_norm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__n_e__d_dpsi_norm} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__n_e__d_dpsi_norm} + _parent::WeakRef end function summary__pedestal_fits__linear__n_e__d_dpsi_norm{T}() where T @@ -15218,19 +15218,19 @@ end summary__pedestal_fits__linear__n_e__d_dpsi_norm() = summary__pedestal_fits__linear__n_e__d_dpsi_norm{Float64}() mutable struct summary__pedestal_fits__linear__n_e{T} <: IDS{T} - var"d_dpsi_norm" :: summary__pedestal_fits__linear__n_e__d_dpsi_norm{T} - var"d_dpsi_norm_max" :: summary__pedestal_fits__linear__n_e__d_dpsi_norm_max{T} - var"offset" :: summary__pedestal_fits__linear__n_e__offset{T} - var"pedestal_height" :: summary__pedestal_fits__linear__n_e__pedestal_height{T} - var"pedestal_position" :: summary__pedestal_fits__linear__n_e__pedestal_position{T} - var"pedestal_width" :: summary__pedestal_fits__linear__n_e__pedestal_width{T} - var"separatrix" :: summary__pedestal_fits__linear__n_e__separatrix{T} + var"d_dpsi_norm"::summary__pedestal_fits__linear__n_e__d_dpsi_norm{T} + var"d_dpsi_norm_max"::summary__pedestal_fits__linear__n_e__d_dpsi_norm_max{T} + var"offset"::summary__pedestal_fits__linear__n_e__offset{T} + var"pedestal_height"::summary__pedestal_fits__linear__n_e__pedestal_height{T} + var"pedestal_position"::summary__pedestal_fits__linear__n_e__pedestal_position{T} + var"pedestal_width"::summary__pedestal_fits__linear__n_e__pedestal_width{T} + var"separatrix"::summary__pedestal_fits__linear__n_e__separatrix{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__n_e} + _parent::WeakRef end function summary__pedestal_fits__linear__n_e{T}() where T @@ -15255,8 +15255,8 @@ mutable struct summary__pedestal_fits__linear__energy_thermal_pedestal_ion{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__energy_thermal_pedestal_ion} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__energy_thermal_pedestal_ion} + _parent::WeakRef end function summary__pedestal_fits__linear__energy_thermal_pedestal_ion{T}() where T @@ -15274,8 +15274,8 @@ mutable struct summary__pedestal_fits__linear__energy_thermal_pedestal_electron{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__energy_thermal_pedestal_electron} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__energy_thermal_pedestal_electron} + _parent::WeakRef end function summary__pedestal_fits__linear__energy_thermal_pedestal_electron{T}() where T @@ -15293,8 +15293,8 @@ mutable struct summary__pedestal_fits__linear__coulomb_factor_pedestal_top{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__coulomb_factor_pedestal_top} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__coulomb_factor_pedestal_top} + _parent::WeakRef end function summary__pedestal_fits__linear__coulomb_factor_pedestal_top{T}() where T @@ -15312,8 +15312,8 @@ mutable struct summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_lf _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_lfs} + _parent::WeakRef end function summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_lfs{T}() where T @@ -15331,8 +15331,8 @@ mutable struct summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_hf _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_hfs} + _parent::WeakRef end function summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_hfs{T}() where T @@ -15350,8 +15350,8 @@ mutable struct summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_av _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_average} + _parent::WeakRef end function summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_average{T}() where T @@ -15369,8 +15369,8 @@ mutable struct summary__pedestal_fits__linear__b_field_tor_pedestal_top_lfs{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__b_field_tor_pedestal_top_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__b_field_tor_pedestal_top_lfs} + _parent::WeakRef end function summary__pedestal_fits__linear__b_field_tor_pedestal_top_lfs{T}() where T @@ -15388,8 +15388,8 @@ mutable struct summary__pedestal_fits__linear__b_field_tor_pedestal_top_hfs{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__b_field_tor_pedestal_top_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__b_field_tor_pedestal_top_hfs} + _parent::WeakRef end function summary__pedestal_fits__linear__b_field_tor_pedestal_top_hfs{T}() where T @@ -15407,8 +15407,8 @@ mutable struct summary__pedestal_fits__linear__b_field_pol_pedestal_top_lfs{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__b_field_pol_pedestal_top_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__b_field_pol_pedestal_top_lfs} + _parent::WeakRef end function summary__pedestal_fits__linear__b_field_pol_pedestal_top_lfs{T}() where T @@ -15426,8 +15426,8 @@ mutable struct summary__pedestal_fits__linear__b_field_pol_pedestal_top_hfs{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__b_field_pol_pedestal_top_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__b_field_pol_pedestal_top_hfs} + _parent::WeakRef end function summary__pedestal_fits__linear__b_field_pol_pedestal_top_hfs{T}() where T @@ -15445,8 +15445,8 @@ mutable struct summary__pedestal_fits__linear__b_field_pol_pedestal_top_average{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__b_field_pol_pedestal_top_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__b_field_pol_pedestal_top_average} + _parent::WeakRef end function summary__pedestal_fits__linear__b_field_pol_pedestal_top_average{T}() where T @@ -15464,8 +15464,8 @@ mutable struct summary__pedestal_fits__linear__b_field_pedestal_top_lfs{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__b_field_pedestal_top_lfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__b_field_pedestal_top_lfs} + _parent::WeakRef end function summary__pedestal_fits__linear__b_field_pedestal_top_lfs{T}() where T @@ -15483,8 +15483,8 @@ mutable struct summary__pedestal_fits__linear__b_field_pedestal_top_hfs{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear__b_field_pedestal_top_hfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear__b_field_pedestal_top_hfs} + _parent::WeakRef end function summary__pedestal_fits__linear__b_field_pedestal_top_hfs{T}() where T @@ -15495,35 +15495,35 @@ end summary__pedestal_fits__linear__b_field_pedestal_top_hfs() = summary__pedestal_fits__linear__b_field_pedestal_top_hfs{Float64}() mutable struct summary__pedestal_fits__linear{T} <: IDS{T} - var"b_field_pedestal_top_hfs" :: summary__pedestal_fits__linear__b_field_pedestal_top_hfs{T} - var"b_field_pedestal_top_lfs" :: summary__pedestal_fits__linear__b_field_pedestal_top_lfs{T} - var"b_field_pol_pedestal_top_average" :: summary__pedestal_fits__linear__b_field_pol_pedestal_top_average{T} - var"b_field_pol_pedestal_top_hfs" :: summary__pedestal_fits__linear__b_field_pol_pedestal_top_hfs{T} - var"b_field_pol_pedestal_top_lfs" :: summary__pedestal_fits__linear__b_field_pol_pedestal_top_lfs{T} - var"b_field_tor_pedestal_top_hfs" :: summary__pedestal_fits__linear__b_field_tor_pedestal_top_hfs{T} - var"b_field_tor_pedestal_top_lfs" :: summary__pedestal_fits__linear__b_field_tor_pedestal_top_lfs{T} - var"beta_pol_pedestal_top_electron_average" :: summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_average{T} - var"beta_pol_pedestal_top_electron_hfs" :: summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_hfs{T} - var"beta_pol_pedestal_top_electron_lfs" :: summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_lfs{T} - var"coulomb_factor_pedestal_top" :: summary__pedestal_fits__linear__coulomb_factor_pedestal_top{T} - var"energy_thermal_pedestal_electron" :: summary__pedestal_fits__linear__energy_thermal_pedestal_electron{T} - var"energy_thermal_pedestal_ion" :: summary__pedestal_fits__linear__energy_thermal_pedestal_ion{T} - var"n_e" :: summary__pedestal_fits__linear__n_e{T} - var"nustar_pedestal_top_electron" :: summary__pedestal_fits__linear__nustar_pedestal_top_electron{T} + var"b_field_pedestal_top_hfs"::summary__pedestal_fits__linear__b_field_pedestal_top_hfs{T} + var"b_field_pedestal_top_lfs"::summary__pedestal_fits__linear__b_field_pedestal_top_lfs{T} + var"b_field_pol_pedestal_top_average"::summary__pedestal_fits__linear__b_field_pol_pedestal_top_average{T} + var"b_field_pol_pedestal_top_hfs"::summary__pedestal_fits__linear__b_field_pol_pedestal_top_hfs{T} + var"b_field_pol_pedestal_top_lfs"::summary__pedestal_fits__linear__b_field_pol_pedestal_top_lfs{T} + var"b_field_tor_pedestal_top_hfs"::summary__pedestal_fits__linear__b_field_tor_pedestal_top_hfs{T} + var"b_field_tor_pedestal_top_lfs"::summary__pedestal_fits__linear__b_field_tor_pedestal_top_lfs{T} + var"beta_pol_pedestal_top_electron_average"::summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_average{T} + var"beta_pol_pedestal_top_electron_hfs"::summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_hfs{T} + var"beta_pol_pedestal_top_electron_lfs"::summary__pedestal_fits__linear__beta_pol_pedestal_top_electron_lfs{T} + var"coulomb_factor_pedestal_top"::summary__pedestal_fits__linear__coulomb_factor_pedestal_top{T} + var"energy_thermal_pedestal_electron"::summary__pedestal_fits__linear__energy_thermal_pedestal_electron{T} + var"energy_thermal_pedestal_ion"::summary__pedestal_fits__linear__energy_thermal_pedestal_ion{T} + var"n_e"::summary__pedestal_fits__linear__n_e{T} + var"nustar_pedestal_top_electron"::summary__pedestal_fits__linear__nustar_pedestal_top_electron{T} var"parameters" :: Vector{<:T} var"parameters_σ" :: Vector{<:T} - var"pressure_electron" :: summary__pedestal_fits__linear__pressure_electron{T} - var"rhostar_pedestal_top_electron_hfs" :: summary__pedestal_fits__linear__rhostar_pedestal_top_electron_hfs{T} - var"rhostar_pedestal_top_electron_lfs" :: summary__pedestal_fits__linear__rhostar_pedestal_top_electron_lfs{T} - var"rhostar_pedestal_top_electron_magnetic_axis" :: summary__pedestal_fits__linear__rhostar_pedestal_top_electron_magnetic_axis{T} - var"t_e" :: summary__pedestal_fits__linear__t_e{T} - var"volume_inside_pedestal" :: summary__pedestal_fits__linear__volume_inside_pedestal{T} + var"pressure_electron"::summary__pedestal_fits__linear__pressure_electron{T} + var"rhostar_pedestal_top_electron_hfs"::summary__pedestal_fits__linear__rhostar_pedestal_top_electron_hfs{T} + var"rhostar_pedestal_top_electron_lfs"::summary__pedestal_fits__linear__rhostar_pedestal_top_electron_lfs{T} + var"rhostar_pedestal_top_electron_magnetic_axis"::summary__pedestal_fits__linear__rhostar_pedestal_top_electron_magnetic_axis{T} + var"t_e"::summary__pedestal_fits__linear__t_e{T} + var"volume_inside_pedestal"::summary__pedestal_fits__linear__volume_inside_pedestal{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits__linear} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits__linear} + _parent::WeakRef end function summary__pedestal_fits__linear{T}() where T @@ -15555,14 +15555,14 @@ end summary__pedestal_fits__linear() = summary__pedestal_fits__linear{Float64}() mutable struct summary__pedestal_fits{T} <: IDS{T} - var"linear" :: summary__pedestal_fits__linear{T} - var"mtanh" :: summary__pedestal_fits__mtanh{T} + var"linear"::summary__pedestal_fits__linear{T} + var"mtanh"::summary__pedestal_fits__mtanh{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__pedestal_fits} - _parent :: WeakRef + _ref::Union{Nothing,summary__pedestal_fits} + _parent::WeakRef end function summary__pedestal_fits{T}() where T @@ -15582,8 +15582,8 @@ mutable struct summary__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__midplane} - _parent :: WeakRef + _ref::Union{Nothing,summary__midplane} + _parent::WeakRef end function summary__midplane{T}() where T @@ -15600,8 +15600,8 @@ mutable struct summary__magnetic_shear_flag{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__magnetic_shear_flag} - _parent :: WeakRef + _ref::Union{Nothing,summary__magnetic_shear_flag} + _parent::WeakRef end function summary__magnetic_shear_flag{T}() where T @@ -15619,8 +15619,8 @@ mutable struct summary__local__separatrix_average__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__zeff} + _parent::WeakRef end function summary__local__separatrix_average__zeff{T}() where T @@ -15638,8 +15638,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__xenon{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__xenon} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__xenon{T}() where T @@ -15657,8 +15657,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__tungsten{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__tungsten} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__tungsten{T}() where T @@ -15676,8 +15676,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__tritium{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__tritium} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__tritium{T}() where T @@ -15695,8 +15695,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__oxygen{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__oxygen} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__oxygen{T}() where T @@ -15714,8 +15714,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__nitrogen{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__nitrogen} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__nitrogen{T}() where T @@ -15733,8 +15733,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__neon{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__neon} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__neon{T}() where T @@ -15752,8 +15752,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__lithium{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__lithium} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__lithium{T}() where T @@ -15771,8 +15771,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__krypton{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__krypton} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__krypton{T}() where T @@ -15790,8 +15790,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__iron{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__iron} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__iron{T}() where T @@ -15809,8 +15809,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__hydrogen{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__hydrogen} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__hydrogen{T}() where T @@ -15828,8 +15828,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__helium_4{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__helium_4} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__helium_4{T}() where T @@ -15847,8 +15847,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__helium_3{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__helium_3} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__helium_3{T}() where T @@ -15866,8 +15866,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__deuterium{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__deuterium} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__deuterium{T}() where T @@ -15885,8 +15885,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__carbon{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__carbon} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__carbon{T}() where T @@ -15904,8 +15904,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__beryllium{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__beryllium} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__beryllium{T}() where T @@ -15923,8 +15923,8 @@ mutable struct summary__local__separatrix_average__velocity_tor__argon{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor__argon} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor__argon{T}() where T @@ -15935,28 +15935,28 @@ end summary__local__separatrix_average__velocity_tor__argon() = summary__local__separatrix_average__velocity_tor__argon{Float64}() mutable struct summary__local__separatrix_average__velocity_tor{T} <: IDS{T} - var"argon" :: summary__local__separatrix_average__velocity_tor__argon{T} - var"beryllium" :: summary__local__separatrix_average__velocity_tor__beryllium{T} - var"carbon" :: summary__local__separatrix_average__velocity_tor__carbon{T} - var"deuterium" :: summary__local__separatrix_average__velocity_tor__deuterium{T} - var"helium_3" :: summary__local__separatrix_average__velocity_tor__helium_3{T} - var"helium_4" :: summary__local__separatrix_average__velocity_tor__helium_4{T} - var"hydrogen" :: summary__local__separatrix_average__velocity_tor__hydrogen{T} - var"iron" :: summary__local__separatrix_average__velocity_tor__iron{T} - var"krypton" :: summary__local__separatrix_average__velocity_tor__krypton{T} - var"lithium" :: summary__local__separatrix_average__velocity_tor__lithium{T} - var"neon" :: summary__local__separatrix_average__velocity_tor__neon{T} - var"nitrogen" :: summary__local__separatrix_average__velocity_tor__nitrogen{T} - var"oxygen" :: summary__local__separatrix_average__velocity_tor__oxygen{T} - var"tritium" :: summary__local__separatrix_average__velocity_tor__tritium{T} - var"tungsten" :: summary__local__separatrix_average__velocity_tor__tungsten{T} - var"xenon" :: summary__local__separatrix_average__velocity_tor__xenon{T} + var"argon"::summary__local__separatrix_average__velocity_tor__argon{T} + var"beryllium"::summary__local__separatrix_average__velocity_tor__beryllium{T} + var"carbon"::summary__local__separatrix_average__velocity_tor__carbon{T} + var"deuterium"::summary__local__separatrix_average__velocity_tor__deuterium{T} + var"helium_3"::summary__local__separatrix_average__velocity_tor__helium_3{T} + var"helium_4"::summary__local__separatrix_average__velocity_tor__helium_4{T} + var"hydrogen"::summary__local__separatrix_average__velocity_tor__hydrogen{T} + var"iron"::summary__local__separatrix_average__velocity_tor__iron{T} + var"krypton"::summary__local__separatrix_average__velocity_tor__krypton{T} + var"lithium"::summary__local__separatrix_average__velocity_tor__lithium{T} + var"neon"::summary__local__separatrix_average__velocity_tor__neon{T} + var"nitrogen"::summary__local__separatrix_average__velocity_tor__nitrogen{T} + var"oxygen"::summary__local__separatrix_average__velocity_tor__oxygen{T} + var"tritium"::summary__local__separatrix_average__velocity_tor__tritium{T} + var"tungsten"::summary__local__separatrix_average__velocity_tor__tungsten{T} + var"xenon"::summary__local__separatrix_average__velocity_tor__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__velocity_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__velocity_tor} + _parent::WeakRef end function summary__local__separatrix_average__velocity_tor{T}() where T @@ -15990,8 +15990,8 @@ mutable struct summary__local__separatrix_average__t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__t_i_average} + _parent::WeakRef end function summary__local__separatrix_average__t_i_average{T}() where T @@ -16009,8 +16009,8 @@ mutable struct summary__local__separatrix_average__t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__t_e} + _parent::WeakRef end function summary__local__separatrix_average__t_e{T}() where T @@ -16028,8 +16028,8 @@ mutable struct summary__local__separatrix_average__q{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__q} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__q} + _parent::WeakRef end function summary__local__separatrix_average__q{T}() where T @@ -16050,8 +16050,8 @@ mutable struct summary__local__separatrix_average__position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__position} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__position} + _parent::WeakRef end function summary__local__separatrix_average__position{T}() where T @@ -16069,8 +16069,8 @@ mutable struct summary__local__separatrix_average__n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i_total} + _parent::WeakRef end function summary__local__separatrix_average__n_i_total{T}() where T @@ -16088,8 +16088,8 @@ mutable struct summary__local__separatrix_average__n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__xenon} + _parent::WeakRef end function summary__local__separatrix_average__n_i__xenon{T}() where T @@ -16107,8 +16107,8 @@ mutable struct summary__local__separatrix_average__n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__tungsten} + _parent::WeakRef end function summary__local__separatrix_average__n_i__tungsten{T}() where T @@ -16126,8 +16126,8 @@ mutable struct summary__local__separatrix_average__n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__tritium} + _parent::WeakRef end function summary__local__separatrix_average__n_i__tritium{T}() where T @@ -16145,8 +16145,8 @@ mutable struct summary__local__separatrix_average__n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__oxygen} + _parent::WeakRef end function summary__local__separatrix_average__n_i__oxygen{T}() where T @@ -16164,8 +16164,8 @@ mutable struct summary__local__separatrix_average__n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__nitrogen} + _parent::WeakRef end function summary__local__separatrix_average__n_i__nitrogen{T}() where T @@ -16183,8 +16183,8 @@ mutable struct summary__local__separatrix_average__n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__neon} + _parent::WeakRef end function summary__local__separatrix_average__n_i__neon{T}() where T @@ -16202,8 +16202,8 @@ mutable struct summary__local__separatrix_average__n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__lithium} + _parent::WeakRef end function summary__local__separatrix_average__n_i__lithium{T}() where T @@ -16221,8 +16221,8 @@ mutable struct summary__local__separatrix_average__n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__krypton} + _parent::WeakRef end function summary__local__separatrix_average__n_i__krypton{T}() where T @@ -16240,8 +16240,8 @@ mutable struct summary__local__separatrix_average__n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__iron} + _parent::WeakRef end function summary__local__separatrix_average__n_i__iron{T}() where T @@ -16259,8 +16259,8 @@ mutable struct summary__local__separatrix_average__n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__hydrogen} + _parent::WeakRef end function summary__local__separatrix_average__n_i__hydrogen{T}() where T @@ -16278,8 +16278,8 @@ mutable struct summary__local__separatrix_average__n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__helium_4} + _parent::WeakRef end function summary__local__separatrix_average__n_i__helium_4{T}() where T @@ -16297,8 +16297,8 @@ mutable struct summary__local__separatrix_average__n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__helium_3} + _parent::WeakRef end function summary__local__separatrix_average__n_i__helium_3{T}() where T @@ -16316,8 +16316,8 @@ mutable struct summary__local__separatrix_average__n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__deuterium} + _parent::WeakRef end function summary__local__separatrix_average__n_i__deuterium{T}() where T @@ -16335,8 +16335,8 @@ mutable struct summary__local__separatrix_average__n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__carbon} + _parent::WeakRef end function summary__local__separatrix_average__n_i__carbon{T}() where T @@ -16354,8 +16354,8 @@ mutable struct summary__local__separatrix_average__n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__beryllium} + _parent::WeakRef end function summary__local__separatrix_average__n_i__beryllium{T}() where T @@ -16373,8 +16373,8 @@ mutable struct summary__local__separatrix_average__n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i__argon} + _parent::WeakRef end function summary__local__separatrix_average__n_i__argon{T}() where T @@ -16385,28 +16385,28 @@ end summary__local__separatrix_average__n_i__argon() = summary__local__separatrix_average__n_i__argon{Float64}() mutable struct summary__local__separatrix_average__n_i{T} <: IDS{T} - var"argon" :: summary__local__separatrix_average__n_i__argon{T} - var"beryllium" :: summary__local__separatrix_average__n_i__beryllium{T} - var"carbon" :: summary__local__separatrix_average__n_i__carbon{T} - var"deuterium" :: summary__local__separatrix_average__n_i__deuterium{T} - var"helium_3" :: summary__local__separatrix_average__n_i__helium_3{T} - var"helium_4" :: summary__local__separatrix_average__n_i__helium_4{T} - var"hydrogen" :: summary__local__separatrix_average__n_i__hydrogen{T} - var"iron" :: summary__local__separatrix_average__n_i__iron{T} - var"krypton" :: summary__local__separatrix_average__n_i__krypton{T} - var"lithium" :: summary__local__separatrix_average__n_i__lithium{T} - var"neon" :: summary__local__separatrix_average__n_i__neon{T} - var"nitrogen" :: summary__local__separatrix_average__n_i__nitrogen{T} - var"oxygen" :: summary__local__separatrix_average__n_i__oxygen{T} - var"tritium" :: summary__local__separatrix_average__n_i__tritium{T} - var"tungsten" :: summary__local__separatrix_average__n_i__tungsten{T} - var"xenon" :: summary__local__separatrix_average__n_i__xenon{T} + var"argon"::summary__local__separatrix_average__n_i__argon{T} + var"beryllium"::summary__local__separatrix_average__n_i__beryllium{T} + var"carbon"::summary__local__separatrix_average__n_i__carbon{T} + var"deuterium"::summary__local__separatrix_average__n_i__deuterium{T} + var"helium_3"::summary__local__separatrix_average__n_i__helium_3{T} + var"helium_4"::summary__local__separatrix_average__n_i__helium_4{T} + var"hydrogen"::summary__local__separatrix_average__n_i__hydrogen{T} + var"iron"::summary__local__separatrix_average__n_i__iron{T} + var"krypton"::summary__local__separatrix_average__n_i__krypton{T} + var"lithium"::summary__local__separatrix_average__n_i__lithium{T} + var"neon"::summary__local__separatrix_average__n_i__neon{T} + var"nitrogen"::summary__local__separatrix_average__n_i__nitrogen{T} + var"oxygen"::summary__local__separatrix_average__n_i__oxygen{T} + var"tritium"::summary__local__separatrix_average__n_i__tritium{T} + var"tungsten"::summary__local__separatrix_average__n_i__tungsten{T} + var"xenon"::summary__local__separatrix_average__n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_i} + _parent::WeakRef end function summary__local__separatrix_average__n_i{T}() where T @@ -16440,8 +16440,8 @@ mutable struct summary__local__separatrix_average__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__n_e} + _parent::WeakRef end function summary__local__separatrix_average__n_e{T}() where T @@ -16459,8 +16459,8 @@ mutable struct summary__local__separatrix_average__momentum_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__momentum_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__momentum_tor} + _parent::WeakRef end function summary__local__separatrix_average__momentum_tor{T}() where T @@ -16478,8 +16478,8 @@ mutable struct summary__local__separatrix_average__magnetic_shear{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__magnetic_shear} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__magnetic_shear} + _parent::WeakRef end function summary__local__separatrix_average__magnetic_shear{T}() where T @@ -16497,8 +16497,8 @@ mutable struct summary__local__separatrix_average__e_field_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average__e_field_parallel} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average__e_field_parallel} + _parent::WeakRef end function summary__local__separatrix_average__e_field_parallel{T}() where T @@ -16509,24 +16509,24 @@ end summary__local__separatrix_average__e_field_parallel() = summary__local__separatrix_average__e_field_parallel{Float64}() mutable struct summary__local__separatrix_average{T} <: IDS{T} - var"e_field_parallel" :: summary__local__separatrix_average__e_field_parallel{T} - var"magnetic_shear" :: summary__local__separatrix_average__magnetic_shear{T} - var"momentum_tor" :: summary__local__separatrix_average__momentum_tor{T} - var"n_e" :: summary__local__separatrix_average__n_e{T} - var"n_i" :: summary__local__separatrix_average__n_i{T} - var"n_i_total" :: summary__local__separatrix_average__n_i_total{T} - var"position" :: summary__local__separatrix_average__position{T} - var"q" :: summary__local__separatrix_average__q{T} - var"t_e" :: summary__local__separatrix_average__t_e{T} - var"t_i_average" :: summary__local__separatrix_average__t_i_average{T} - var"velocity_tor" :: summary__local__separatrix_average__velocity_tor{T} - var"zeff" :: summary__local__separatrix_average__zeff{T} + var"e_field_parallel"::summary__local__separatrix_average__e_field_parallel{T} + var"magnetic_shear"::summary__local__separatrix_average__magnetic_shear{T} + var"momentum_tor"::summary__local__separatrix_average__momentum_tor{T} + var"n_e"::summary__local__separatrix_average__n_e{T} + var"n_i"::summary__local__separatrix_average__n_i{T} + var"n_i_total"::summary__local__separatrix_average__n_i_total{T} + var"position"::summary__local__separatrix_average__position{T} + var"q"::summary__local__separatrix_average__q{T} + var"t_e"::summary__local__separatrix_average__t_e{T} + var"t_i_average"::summary__local__separatrix_average__t_i_average{T} + var"velocity_tor"::summary__local__separatrix_average__velocity_tor{T} + var"zeff"::summary__local__separatrix_average__zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix_average} + _parent::WeakRef end function summary__local__separatrix_average{T}() where T @@ -16556,8 +16556,8 @@ mutable struct summary__local__separatrix__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__zeff} + _parent::WeakRef end function summary__local__separatrix__zeff{T}() where T @@ -16575,8 +16575,8 @@ mutable struct summary__local__separatrix__velocity_tor__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__xenon} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__xenon{T}() where T @@ -16594,8 +16594,8 @@ mutable struct summary__local__separatrix__velocity_tor__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__tungsten} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__tungsten{T}() where T @@ -16613,8 +16613,8 @@ mutable struct summary__local__separatrix__velocity_tor__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__tritium} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__tritium{T}() where T @@ -16632,8 +16632,8 @@ mutable struct summary__local__separatrix__velocity_tor__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__oxygen} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__oxygen{T}() where T @@ -16651,8 +16651,8 @@ mutable struct summary__local__separatrix__velocity_tor__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__nitrogen} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__nitrogen{T}() where T @@ -16670,8 +16670,8 @@ mutable struct summary__local__separatrix__velocity_tor__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__neon} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__neon{T}() where T @@ -16689,8 +16689,8 @@ mutable struct summary__local__separatrix__velocity_tor__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__lithium} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__lithium{T}() where T @@ -16708,8 +16708,8 @@ mutable struct summary__local__separatrix__velocity_tor__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__krypton} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__krypton{T}() where T @@ -16727,8 +16727,8 @@ mutable struct summary__local__separatrix__velocity_tor__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__iron} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__iron{T}() where T @@ -16746,8 +16746,8 @@ mutable struct summary__local__separatrix__velocity_tor__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__hydrogen} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__hydrogen{T}() where T @@ -16765,8 +16765,8 @@ mutable struct summary__local__separatrix__velocity_tor__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__helium_4} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__helium_4{T}() where T @@ -16784,8 +16784,8 @@ mutable struct summary__local__separatrix__velocity_tor__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__helium_3} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__helium_3{T}() where T @@ -16803,8 +16803,8 @@ mutable struct summary__local__separatrix__velocity_tor__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__deuterium} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__deuterium{T}() where T @@ -16822,8 +16822,8 @@ mutable struct summary__local__separatrix__velocity_tor__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__carbon} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__carbon{T}() where T @@ -16841,8 +16841,8 @@ mutable struct summary__local__separatrix__velocity_tor__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__beryllium} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__beryllium{T}() where T @@ -16860,8 +16860,8 @@ mutable struct summary__local__separatrix__velocity_tor__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor__argon} + _parent::WeakRef end function summary__local__separatrix__velocity_tor__argon{T}() where T @@ -16872,28 +16872,28 @@ end summary__local__separatrix__velocity_tor__argon() = summary__local__separatrix__velocity_tor__argon{Float64}() mutable struct summary__local__separatrix__velocity_tor{T} <: IDS{T} - var"argon" :: summary__local__separatrix__velocity_tor__argon{T} - var"beryllium" :: summary__local__separatrix__velocity_tor__beryllium{T} - var"carbon" :: summary__local__separatrix__velocity_tor__carbon{T} - var"deuterium" :: summary__local__separatrix__velocity_tor__deuterium{T} - var"helium_3" :: summary__local__separatrix__velocity_tor__helium_3{T} - var"helium_4" :: summary__local__separatrix__velocity_tor__helium_4{T} - var"hydrogen" :: summary__local__separatrix__velocity_tor__hydrogen{T} - var"iron" :: summary__local__separatrix__velocity_tor__iron{T} - var"krypton" :: summary__local__separatrix__velocity_tor__krypton{T} - var"lithium" :: summary__local__separatrix__velocity_tor__lithium{T} - var"neon" :: summary__local__separatrix__velocity_tor__neon{T} - var"nitrogen" :: summary__local__separatrix__velocity_tor__nitrogen{T} - var"oxygen" :: summary__local__separatrix__velocity_tor__oxygen{T} - var"tritium" :: summary__local__separatrix__velocity_tor__tritium{T} - var"tungsten" :: summary__local__separatrix__velocity_tor__tungsten{T} - var"xenon" :: summary__local__separatrix__velocity_tor__xenon{T} + var"argon"::summary__local__separatrix__velocity_tor__argon{T} + var"beryllium"::summary__local__separatrix__velocity_tor__beryllium{T} + var"carbon"::summary__local__separatrix__velocity_tor__carbon{T} + var"deuterium"::summary__local__separatrix__velocity_tor__deuterium{T} + var"helium_3"::summary__local__separatrix__velocity_tor__helium_3{T} + var"helium_4"::summary__local__separatrix__velocity_tor__helium_4{T} + var"hydrogen"::summary__local__separatrix__velocity_tor__hydrogen{T} + var"iron"::summary__local__separatrix__velocity_tor__iron{T} + var"krypton"::summary__local__separatrix__velocity_tor__krypton{T} + var"lithium"::summary__local__separatrix__velocity_tor__lithium{T} + var"neon"::summary__local__separatrix__velocity_tor__neon{T} + var"nitrogen"::summary__local__separatrix__velocity_tor__nitrogen{T} + var"oxygen"::summary__local__separatrix__velocity_tor__oxygen{T} + var"tritium"::summary__local__separatrix__velocity_tor__tritium{T} + var"tungsten"::summary__local__separatrix__velocity_tor__tungsten{T} + var"xenon"::summary__local__separatrix__velocity_tor__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__velocity_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__velocity_tor} + _parent::WeakRef end function summary__local__separatrix__velocity_tor{T}() where T @@ -16927,8 +16927,8 @@ mutable struct summary__local__separatrix__t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__t_i_average} + _parent::WeakRef end function summary__local__separatrix__t_i_average{T}() where T @@ -16946,8 +16946,8 @@ mutable struct summary__local__separatrix__t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__t_e} + _parent::WeakRef end function summary__local__separatrix__t_e{T}() where T @@ -16965,8 +16965,8 @@ mutable struct summary__local__separatrix__q{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__q} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__q} + _parent::WeakRef end function summary__local__separatrix__q{T}() where T @@ -16987,8 +16987,8 @@ mutable struct summary__local__separatrix__position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__position} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__position} + _parent::WeakRef end function summary__local__separatrix__position{T}() where T @@ -17006,8 +17006,8 @@ mutable struct summary__local__separatrix__n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i_total} + _parent::WeakRef end function summary__local__separatrix__n_i_total{T}() where T @@ -17025,8 +17025,8 @@ mutable struct summary__local__separatrix__n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__xenon} + _parent::WeakRef end function summary__local__separatrix__n_i__xenon{T}() where T @@ -17044,8 +17044,8 @@ mutable struct summary__local__separatrix__n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__tungsten} + _parent::WeakRef end function summary__local__separatrix__n_i__tungsten{T}() where T @@ -17063,8 +17063,8 @@ mutable struct summary__local__separatrix__n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__tritium} + _parent::WeakRef end function summary__local__separatrix__n_i__tritium{T}() where T @@ -17082,8 +17082,8 @@ mutable struct summary__local__separatrix__n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__oxygen} + _parent::WeakRef end function summary__local__separatrix__n_i__oxygen{T}() where T @@ -17101,8 +17101,8 @@ mutable struct summary__local__separatrix__n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__nitrogen} + _parent::WeakRef end function summary__local__separatrix__n_i__nitrogen{T}() where T @@ -17120,8 +17120,8 @@ mutable struct summary__local__separatrix__n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__neon} + _parent::WeakRef end function summary__local__separatrix__n_i__neon{T}() where T @@ -17139,8 +17139,8 @@ mutable struct summary__local__separatrix__n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__lithium} + _parent::WeakRef end function summary__local__separatrix__n_i__lithium{T}() where T @@ -17158,8 +17158,8 @@ mutable struct summary__local__separatrix__n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__krypton} + _parent::WeakRef end function summary__local__separatrix__n_i__krypton{T}() where T @@ -17177,8 +17177,8 @@ mutable struct summary__local__separatrix__n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__iron} + _parent::WeakRef end function summary__local__separatrix__n_i__iron{T}() where T @@ -17196,8 +17196,8 @@ mutable struct summary__local__separatrix__n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__hydrogen} + _parent::WeakRef end function summary__local__separatrix__n_i__hydrogen{T}() where T @@ -17215,8 +17215,8 @@ mutable struct summary__local__separatrix__n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__helium_4} + _parent::WeakRef end function summary__local__separatrix__n_i__helium_4{T}() where T @@ -17234,8 +17234,8 @@ mutable struct summary__local__separatrix__n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__helium_3} + _parent::WeakRef end function summary__local__separatrix__n_i__helium_3{T}() where T @@ -17253,8 +17253,8 @@ mutable struct summary__local__separatrix__n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__deuterium} + _parent::WeakRef end function summary__local__separatrix__n_i__deuterium{T}() where T @@ -17272,8 +17272,8 @@ mutable struct summary__local__separatrix__n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__carbon} + _parent::WeakRef end function summary__local__separatrix__n_i__carbon{T}() where T @@ -17291,8 +17291,8 @@ mutable struct summary__local__separatrix__n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__beryllium} + _parent::WeakRef end function summary__local__separatrix__n_i__beryllium{T}() where T @@ -17310,8 +17310,8 @@ mutable struct summary__local__separatrix__n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i__argon} + _parent::WeakRef end function summary__local__separatrix__n_i__argon{T}() where T @@ -17322,28 +17322,28 @@ end summary__local__separatrix__n_i__argon() = summary__local__separatrix__n_i__argon{Float64}() mutable struct summary__local__separatrix__n_i{T} <: IDS{T} - var"argon" :: summary__local__separatrix__n_i__argon{T} - var"beryllium" :: summary__local__separatrix__n_i__beryllium{T} - var"carbon" :: summary__local__separatrix__n_i__carbon{T} - var"deuterium" :: summary__local__separatrix__n_i__deuterium{T} - var"helium_3" :: summary__local__separatrix__n_i__helium_3{T} - var"helium_4" :: summary__local__separatrix__n_i__helium_4{T} - var"hydrogen" :: summary__local__separatrix__n_i__hydrogen{T} - var"iron" :: summary__local__separatrix__n_i__iron{T} - var"krypton" :: summary__local__separatrix__n_i__krypton{T} - var"lithium" :: summary__local__separatrix__n_i__lithium{T} - var"neon" :: summary__local__separatrix__n_i__neon{T} - var"nitrogen" :: summary__local__separatrix__n_i__nitrogen{T} - var"oxygen" :: summary__local__separatrix__n_i__oxygen{T} - var"tritium" :: summary__local__separatrix__n_i__tritium{T} - var"tungsten" :: summary__local__separatrix__n_i__tungsten{T} - var"xenon" :: summary__local__separatrix__n_i__xenon{T} + var"argon"::summary__local__separatrix__n_i__argon{T} + var"beryllium"::summary__local__separatrix__n_i__beryllium{T} + var"carbon"::summary__local__separatrix__n_i__carbon{T} + var"deuterium"::summary__local__separatrix__n_i__deuterium{T} + var"helium_3"::summary__local__separatrix__n_i__helium_3{T} + var"helium_4"::summary__local__separatrix__n_i__helium_4{T} + var"hydrogen"::summary__local__separatrix__n_i__hydrogen{T} + var"iron"::summary__local__separatrix__n_i__iron{T} + var"krypton"::summary__local__separatrix__n_i__krypton{T} + var"lithium"::summary__local__separatrix__n_i__lithium{T} + var"neon"::summary__local__separatrix__n_i__neon{T} + var"nitrogen"::summary__local__separatrix__n_i__nitrogen{T} + var"oxygen"::summary__local__separatrix__n_i__oxygen{T} + var"tritium"::summary__local__separatrix__n_i__tritium{T} + var"tungsten"::summary__local__separatrix__n_i__tungsten{T} + var"xenon"::summary__local__separatrix__n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_i} + _parent::WeakRef end function summary__local__separatrix__n_i{T}() where T @@ -17377,8 +17377,8 @@ mutable struct summary__local__separatrix__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__n_e} + _parent::WeakRef end function summary__local__separatrix__n_e{T}() where T @@ -17396,8 +17396,8 @@ mutable struct summary__local__separatrix__momentum_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__momentum_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__momentum_tor} + _parent::WeakRef end function summary__local__separatrix__momentum_tor{T}() where T @@ -17415,8 +17415,8 @@ mutable struct summary__local__separatrix__magnetic_shear{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__magnetic_shear} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__magnetic_shear} + _parent::WeakRef end function summary__local__separatrix__magnetic_shear{T}() where T @@ -17434,8 +17434,8 @@ mutable struct summary__local__separatrix__e_field_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix__e_field_parallel} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix__e_field_parallel} + _parent::WeakRef end function summary__local__separatrix__e_field_parallel{T}() where T @@ -17446,24 +17446,24 @@ end summary__local__separatrix__e_field_parallel() = summary__local__separatrix__e_field_parallel{Float64}() mutable struct summary__local__separatrix{T} <: IDS{T} - var"e_field_parallel" :: summary__local__separatrix__e_field_parallel{T} - var"magnetic_shear" :: summary__local__separatrix__magnetic_shear{T} - var"momentum_tor" :: summary__local__separatrix__momentum_tor{T} - var"n_e" :: summary__local__separatrix__n_e{T} - var"n_i" :: summary__local__separatrix__n_i{T} - var"n_i_total" :: summary__local__separatrix__n_i_total{T} - var"position" :: summary__local__separatrix__position{T} - var"q" :: summary__local__separatrix__q{T} - var"t_e" :: summary__local__separatrix__t_e{T} - var"t_i_average" :: summary__local__separatrix__t_i_average{T} - var"velocity_tor" :: summary__local__separatrix__velocity_tor{T} - var"zeff" :: summary__local__separatrix__zeff{T} + var"e_field_parallel"::summary__local__separatrix__e_field_parallel{T} + var"magnetic_shear"::summary__local__separatrix__magnetic_shear{T} + var"momentum_tor"::summary__local__separatrix__momentum_tor{T} + var"n_e"::summary__local__separatrix__n_e{T} + var"n_i"::summary__local__separatrix__n_i{T} + var"n_i_total"::summary__local__separatrix__n_i_total{T} + var"position"::summary__local__separatrix__position{T} + var"q"::summary__local__separatrix__q{T} + var"t_e"::summary__local__separatrix__t_e{T} + var"t_i_average"::summary__local__separatrix__t_i_average{T} + var"velocity_tor"::summary__local__separatrix__velocity_tor{T} + var"zeff"::summary__local__separatrix__zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__separatrix} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__separatrix} + _parent::WeakRef end function summary__local__separatrix{T}() where T @@ -17493,8 +17493,8 @@ mutable struct summary__local__r_eff_norm_2_3__plateau_factor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__r_eff_norm_2_3__plateau_factor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__r_eff_norm_2_3__plateau_factor} + _parent::WeakRef end function summary__local__r_eff_norm_2_3__plateau_factor{T}() where T @@ -17512,8 +17512,8 @@ mutable struct summary__local__r_eff_norm_2_3__iota{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__r_eff_norm_2_3__iota} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__r_eff_norm_2_3__iota} + _parent::WeakRef end function summary__local__r_eff_norm_2_3__iota{T}() where T @@ -17531,8 +17531,8 @@ mutable struct summary__local__r_eff_norm_2_3__effective_helical_ripple{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__r_eff_norm_2_3__effective_helical_ripple} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__r_eff_norm_2_3__effective_helical_ripple} + _parent::WeakRef end function summary__local__r_eff_norm_2_3__effective_helical_ripple{T}() where T @@ -17543,15 +17543,15 @@ end summary__local__r_eff_norm_2_3__effective_helical_ripple() = summary__local__r_eff_norm_2_3__effective_helical_ripple{Float64}() mutable struct summary__local__r_eff_norm_2_3{T} <: IDS{T} - var"effective_helical_ripple" :: summary__local__r_eff_norm_2_3__effective_helical_ripple{T} - var"iota" :: summary__local__r_eff_norm_2_3__iota{T} - var"plateau_factor" :: summary__local__r_eff_norm_2_3__plateau_factor{T} + var"effective_helical_ripple"::summary__local__r_eff_norm_2_3__effective_helical_ripple{T} + var"iota"::summary__local__r_eff_norm_2_3__iota{T} + var"plateau_factor"::summary__local__r_eff_norm_2_3__plateau_factor{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__r_eff_norm_2_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__r_eff_norm_2_3} + _parent::WeakRef end function summary__local__r_eff_norm_2_3{T}() where T @@ -17572,8 +17572,8 @@ mutable struct summary__local__pedestal__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__zeff} + _parent::WeakRef end function summary__local__pedestal__zeff{T}() where T @@ -17591,8 +17591,8 @@ mutable struct summary__local__pedestal__velocity_tor__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__xenon} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__xenon{T}() where T @@ -17610,8 +17610,8 @@ mutable struct summary__local__pedestal__velocity_tor__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__tungsten} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__tungsten{T}() where T @@ -17629,8 +17629,8 @@ mutable struct summary__local__pedestal__velocity_tor__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__tritium} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__tritium{T}() where T @@ -17648,8 +17648,8 @@ mutable struct summary__local__pedestal__velocity_tor__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__oxygen} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__oxygen{T}() where T @@ -17667,8 +17667,8 @@ mutable struct summary__local__pedestal__velocity_tor__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__nitrogen} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__nitrogen{T}() where T @@ -17686,8 +17686,8 @@ mutable struct summary__local__pedestal__velocity_tor__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__neon} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__neon{T}() where T @@ -17705,8 +17705,8 @@ mutable struct summary__local__pedestal__velocity_tor__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__lithium} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__lithium{T}() where T @@ -17724,8 +17724,8 @@ mutable struct summary__local__pedestal__velocity_tor__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__krypton} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__krypton{T}() where T @@ -17743,8 +17743,8 @@ mutable struct summary__local__pedestal__velocity_tor__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__iron} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__iron{T}() where T @@ -17762,8 +17762,8 @@ mutable struct summary__local__pedestal__velocity_tor__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__hydrogen} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__hydrogen{T}() where T @@ -17781,8 +17781,8 @@ mutable struct summary__local__pedestal__velocity_tor__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__helium_4} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__helium_4{T}() where T @@ -17800,8 +17800,8 @@ mutable struct summary__local__pedestal__velocity_tor__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__helium_3} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__helium_3{T}() where T @@ -17819,8 +17819,8 @@ mutable struct summary__local__pedestal__velocity_tor__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__deuterium} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__deuterium{T}() where T @@ -17838,8 +17838,8 @@ mutable struct summary__local__pedestal__velocity_tor__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__carbon} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__carbon{T}() where T @@ -17857,8 +17857,8 @@ mutable struct summary__local__pedestal__velocity_tor__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__beryllium} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__beryllium{T}() where T @@ -17876,8 +17876,8 @@ mutable struct summary__local__pedestal__velocity_tor__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor__argon} + _parent::WeakRef end function summary__local__pedestal__velocity_tor__argon{T}() where T @@ -17888,28 +17888,28 @@ end summary__local__pedestal__velocity_tor__argon() = summary__local__pedestal__velocity_tor__argon{Float64}() mutable struct summary__local__pedestal__velocity_tor{T} <: IDS{T} - var"argon" :: summary__local__pedestal__velocity_tor__argon{T} - var"beryllium" :: summary__local__pedestal__velocity_tor__beryllium{T} - var"carbon" :: summary__local__pedestal__velocity_tor__carbon{T} - var"deuterium" :: summary__local__pedestal__velocity_tor__deuterium{T} - var"helium_3" :: summary__local__pedestal__velocity_tor__helium_3{T} - var"helium_4" :: summary__local__pedestal__velocity_tor__helium_4{T} - var"hydrogen" :: summary__local__pedestal__velocity_tor__hydrogen{T} - var"iron" :: summary__local__pedestal__velocity_tor__iron{T} - var"krypton" :: summary__local__pedestal__velocity_tor__krypton{T} - var"lithium" :: summary__local__pedestal__velocity_tor__lithium{T} - var"neon" :: summary__local__pedestal__velocity_tor__neon{T} - var"nitrogen" :: summary__local__pedestal__velocity_tor__nitrogen{T} - var"oxygen" :: summary__local__pedestal__velocity_tor__oxygen{T} - var"tritium" :: summary__local__pedestal__velocity_tor__tritium{T} - var"tungsten" :: summary__local__pedestal__velocity_tor__tungsten{T} - var"xenon" :: summary__local__pedestal__velocity_tor__xenon{T} + var"argon"::summary__local__pedestal__velocity_tor__argon{T} + var"beryllium"::summary__local__pedestal__velocity_tor__beryllium{T} + var"carbon"::summary__local__pedestal__velocity_tor__carbon{T} + var"deuterium"::summary__local__pedestal__velocity_tor__deuterium{T} + var"helium_3"::summary__local__pedestal__velocity_tor__helium_3{T} + var"helium_4"::summary__local__pedestal__velocity_tor__helium_4{T} + var"hydrogen"::summary__local__pedestal__velocity_tor__hydrogen{T} + var"iron"::summary__local__pedestal__velocity_tor__iron{T} + var"krypton"::summary__local__pedestal__velocity_tor__krypton{T} + var"lithium"::summary__local__pedestal__velocity_tor__lithium{T} + var"neon"::summary__local__pedestal__velocity_tor__neon{T} + var"nitrogen"::summary__local__pedestal__velocity_tor__nitrogen{T} + var"oxygen"::summary__local__pedestal__velocity_tor__oxygen{T} + var"tritium"::summary__local__pedestal__velocity_tor__tritium{T} + var"tungsten"::summary__local__pedestal__velocity_tor__tungsten{T} + var"xenon"::summary__local__pedestal__velocity_tor__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__velocity_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__velocity_tor} + _parent::WeakRef end function summary__local__pedestal__velocity_tor{T}() where T @@ -17943,8 +17943,8 @@ mutable struct summary__local__pedestal__t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__t_i_average} + _parent::WeakRef end function summary__local__pedestal__t_i_average{T}() where T @@ -17962,8 +17962,8 @@ mutable struct summary__local__pedestal__t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__t_e} + _parent::WeakRef end function summary__local__pedestal__t_e{T}() where T @@ -17981,8 +17981,8 @@ mutable struct summary__local__pedestal__q{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__q} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__q} + _parent::WeakRef end function summary__local__pedestal__q{T}() where T @@ -18003,8 +18003,8 @@ mutable struct summary__local__pedestal__position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__position} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__position} + _parent::WeakRef end function summary__local__pedestal__position{T}() where T @@ -18022,8 +18022,8 @@ mutable struct summary__local__pedestal__n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i_total} + _parent::WeakRef end function summary__local__pedestal__n_i_total{T}() where T @@ -18041,8 +18041,8 @@ mutable struct summary__local__pedestal__n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__xenon} + _parent::WeakRef end function summary__local__pedestal__n_i__xenon{T}() where T @@ -18060,8 +18060,8 @@ mutable struct summary__local__pedestal__n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__tungsten} + _parent::WeakRef end function summary__local__pedestal__n_i__tungsten{T}() where T @@ -18079,8 +18079,8 @@ mutable struct summary__local__pedestal__n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__tritium} + _parent::WeakRef end function summary__local__pedestal__n_i__tritium{T}() where T @@ -18098,8 +18098,8 @@ mutable struct summary__local__pedestal__n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__oxygen} + _parent::WeakRef end function summary__local__pedestal__n_i__oxygen{T}() where T @@ -18117,8 +18117,8 @@ mutable struct summary__local__pedestal__n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__nitrogen} + _parent::WeakRef end function summary__local__pedestal__n_i__nitrogen{T}() where T @@ -18136,8 +18136,8 @@ mutable struct summary__local__pedestal__n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__neon} + _parent::WeakRef end function summary__local__pedestal__n_i__neon{T}() where T @@ -18155,8 +18155,8 @@ mutable struct summary__local__pedestal__n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__lithium} + _parent::WeakRef end function summary__local__pedestal__n_i__lithium{T}() where T @@ -18174,8 +18174,8 @@ mutable struct summary__local__pedestal__n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__krypton} + _parent::WeakRef end function summary__local__pedestal__n_i__krypton{T}() where T @@ -18193,8 +18193,8 @@ mutable struct summary__local__pedestal__n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__iron} + _parent::WeakRef end function summary__local__pedestal__n_i__iron{T}() where T @@ -18212,8 +18212,8 @@ mutable struct summary__local__pedestal__n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__hydrogen} + _parent::WeakRef end function summary__local__pedestal__n_i__hydrogen{T}() where T @@ -18231,8 +18231,8 @@ mutable struct summary__local__pedestal__n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__helium_4} + _parent::WeakRef end function summary__local__pedestal__n_i__helium_4{T}() where T @@ -18250,8 +18250,8 @@ mutable struct summary__local__pedestal__n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__helium_3} + _parent::WeakRef end function summary__local__pedestal__n_i__helium_3{T}() where T @@ -18269,8 +18269,8 @@ mutable struct summary__local__pedestal__n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__deuterium} + _parent::WeakRef end function summary__local__pedestal__n_i__deuterium{T}() where T @@ -18288,8 +18288,8 @@ mutable struct summary__local__pedestal__n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__carbon} + _parent::WeakRef end function summary__local__pedestal__n_i__carbon{T}() where T @@ -18307,8 +18307,8 @@ mutable struct summary__local__pedestal__n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__beryllium} + _parent::WeakRef end function summary__local__pedestal__n_i__beryllium{T}() where T @@ -18326,8 +18326,8 @@ mutable struct summary__local__pedestal__n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i__argon} + _parent::WeakRef end function summary__local__pedestal__n_i__argon{T}() where T @@ -18338,28 +18338,28 @@ end summary__local__pedestal__n_i__argon() = summary__local__pedestal__n_i__argon{Float64}() mutable struct summary__local__pedestal__n_i{T} <: IDS{T} - var"argon" :: summary__local__pedestal__n_i__argon{T} - var"beryllium" :: summary__local__pedestal__n_i__beryllium{T} - var"carbon" :: summary__local__pedestal__n_i__carbon{T} - var"deuterium" :: summary__local__pedestal__n_i__deuterium{T} - var"helium_3" :: summary__local__pedestal__n_i__helium_3{T} - var"helium_4" :: summary__local__pedestal__n_i__helium_4{T} - var"hydrogen" :: summary__local__pedestal__n_i__hydrogen{T} - var"iron" :: summary__local__pedestal__n_i__iron{T} - var"krypton" :: summary__local__pedestal__n_i__krypton{T} - var"lithium" :: summary__local__pedestal__n_i__lithium{T} - var"neon" :: summary__local__pedestal__n_i__neon{T} - var"nitrogen" :: summary__local__pedestal__n_i__nitrogen{T} - var"oxygen" :: summary__local__pedestal__n_i__oxygen{T} - var"tritium" :: summary__local__pedestal__n_i__tritium{T} - var"tungsten" :: summary__local__pedestal__n_i__tungsten{T} - var"xenon" :: summary__local__pedestal__n_i__xenon{T} + var"argon"::summary__local__pedestal__n_i__argon{T} + var"beryllium"::summary__local__pedestal__n_i__beryllium{T} + var"carbon"::summary__local__pedestal__n_i__carbon{T} + var"deuterium"::summary__local__pedestal__n_i__deuterium{T} + var"helium_3"::summary__local__pedestal__n_i__helium_3{T} + var"helium_4"::summary__local__pedestal__n_i__helium_4{T} + var"hydrogen"::summary__local__pedestal__n_i__hydrogen{T} + var"iron"::summary__local__pedestal__n_i__iron{T} + var"krypton"::summary__local__pedestal__n_i__krypton{T} + var"lithium"::summary__local__pedestal__n_i__lithium{T} + var"neon"::summary__local__pedestal__n_i__neon{T} + var"nitrogen"::summary__local__pedestal__n_i__nitrogen{T} + var"oxygen"::summary__local__pedestal__n_i__oxygen{T} + var"tritium"::summary__local__pedestal__n_i__tritium{T} + var"tungsten"::summary__local__pedestal__n_i__tungsten{T} + var"xenon"::summary__local__pedestal__n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_i} + _parent::WeakRef end function summary__local__pedestal__n_i{T}() where T @@ -18393,8 +18393,8 @@ mutable struct summary__local__pedestal__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__n_e} + _parent::WeakRef end function summary__local__pedestal__n_e{T}() where T @@ -18412,8 +18412,8 @@ mutable struct summary__local__pedestal__momentum_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__momentum_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__momentum_tor} + _parent::WeakRef end function summary__local__pedestal__momentum_tor{T}() where T @@ -18431,8 +18431,8 @@ mutable struct summary__local__pedestal__magnetic_shear{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__magnetic_shear} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__magnetic_shear} + _parent::WeakRef end function summary__local__pedestal__magnetic_shear{T}() where T @@ -18450,8 +18450,8 @@ mutable struct summary__local__pedestal__e_field_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal__e_field_parallel} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal__e_field_parallel} + _parent::WeakRef end function summary__local__pedestal__e_field_parallel{T}() where T @@ -18462,24 +18462,24 @@ end summary__local__pedestal__e_field_parallel() = summary__local__pedestal__e_field_parallel{Float64}() mutable struct summary__local__pedestal{T} <: IDS{T} - var"e_field_parallel" :: summary__local__pedestal__e_field_parallel{T} - var"magnetic_shear" :: summary__local__pedestal__magnetic_shear{T} - var"momentum_tor" :: summary__local__pedestal__momentum_tor{T} - var"n_e" :: summary__local__pedestal__n_e{T} - var"n_i" :: summary__local__pedestal__n_i{T} - var"n_i_total" :: summary__local__pedestal__n_i_total{T} - var"position" :: summary__local__pedestal__position{T} - var"q" :: summary__local__pedestal__q{T} - var"t_e" :: summary__local__pedestal__t_e{T} - var"t_i_average" :: summary__local__pedestal__t_i_average{T} - var"velocity_tor" :: summary__local__pedestal__velocity_tor{T} - var"zeff" :: summary__local__pedestal__zeff{T} + var"e_field_parallel"::summary__local__pedestal__e_field_parallel{T} + var"magnetic_shear"::summary__local__pedestal__magnetic_shear{T} + var"momentum_tor"::summary__local__pedestal__momentum_tor{T} + var"n_e"::summary__local__pedestal__n_e{T} + var"n_i"::summary__local__pedestal__n_i{T} + var"n_i_total"::summary__local__pedestal__n_i_total{T} + var"position"::summary__local__pedestal__position{T} + var"q"::summary__local__pedestal__q{T} + var"t_e"::summary__local__pedestal__t_e{T} + var"t_i_average"::summary__local__pedestal__t_i_average{T} + var"velocity_tor"::summary__local__pedestal__velocity_tor{T} + var"zeff"::summary__local__pedestal__zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__pedestal} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__pedestal} + _parent::WeakRef end function summary__local__pedestal{T}() where T @@ -18509,8 +18509,8 @@ mutable struct summary__local__magnetic_axis__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__zeff} + _parent::WeakRef end function summary__local__magnetic_axis__zeff{T}() where T @@ -18528,8 +18528,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__xenon} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__xenon{T}() where T @@ -18547,8 +18547,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__tungsten{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__tungsten} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__tungsten{T}() where T @@ -18566,8 +18566,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__tritium} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__tritium{T}() where T @@ -18585,8 +18585,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__oxygen} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__oxygen{T}() where T @@ -18604,8 +18604,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__nitrogen{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__nitrogen} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__nitrogen{T}() where T @@ -18623,8 +18623,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__neon} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__neon{T}() where T @@ -18642,8 +18642,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__lithium} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__lithium{T}() where T @@ -18661,8 +18661,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__krypton} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__krypton{T}() where T @@ -18680,8 +18680,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__iron} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__iron{T}() where T @@ -18699,8 +18699,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__hydrogen{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__hydrogen} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__hydrogen{T}() where T @@ -18718,8 +18718,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__helium_4{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__helium_4} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__helium_4{T}() where T @@ -18737,8 +18737,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__helium_3{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__helium_3} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__helium_3{T}() where T @@ -18756,8 +18756,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__deuterium{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__deuterium} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__deuterium{T}() where T @@ -18775,8 +18775,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__carbon} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__carbon{T}() where T @@ -18794,8 +18794,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__beryllium{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__beryllium} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__beryllium{T}() where T @@ -18813,8 +18813,8 @@ mutable struct summary__local__magnetic_axis__velocity_tor__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor__argon} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor__argon{T}() where T @@ -18825,28 +18825,28 @@ end summary__local__magnetic_axis__velocity_tor__argon() = summary__local__magnetic_axis__velocity_tor__argon{Float64}() mutable struct summary__local__magnetic_axis__velocity_tor{T} <: IDS{T} - var"argon" :: summary__local__magnetic_axis__velocity_tor__argon{T} - var"beryllium" :: summary__local__magnetic_axis__velocity_tor__beryllium{T} - var"carbon" :: summary__local__magnetic_axis__velocity_tor__carbon{T} - var"deuterium" :: summary__local__magnetic_axis__velocity_tor__deuterium{T} - var"helium_3" :: summary__local__magnetic_axis__velocity_tor__helium_3{T} - var"helium_4" :: summary__local__magnetic_axis__velocity_tor__helium_4{T} - var"hydrogen" :: summary__local__magnetic_axis__velocity_tor__hydrogen{T} - var"iron" :: summary__local__magnetic_axis__velocity_tor__iron{T} - var"krypton" :: summary__local__magnetic_axis__velocity_tor__krypton{T} - var"lithium" :: summary__local__magnetic_axis__velocity_tor__lithium{T} - var"neon" :: summary__local__magnetic_axis__velocity_tor__neon{T} - var"nitrogen" :: summary__local__magnetic_axis__velocity_tor__nitrogen{T} - var"oxygen" :: summary__local__magnetic_axis__velocity_tor__oxygen{T} - var"tritium" :: summary__local__magnetic_axis__velocity_tor__tritium{T} - var"tungsten" :: summary__local__magnetic_axis__velocity_tor__tungsten{T} - var"xenon" :: summary__local__magnetic_axis__velocity_tor__xenon{T} + var"argon"::summary__local__magnetic_axis__velocity_tor__argon{T} + var"beryllium"::summary__local__magnetic_axis__velocity_tor__beryllium{T} + var"carbon"::summary__local__magnetic_axis__velocity_tor__carbon{T} + var"deuterium"::summary__local__magnetic_axis__velocity_tor__deuterium{T} + var"helium_3"::summary__local__magnetic_axis__velocity_tor__helium_3{T} + var"helium_4"::summary__local__magnetic_axis__velocity_tor__helium_4{T} + var"hydrogen"::summary__local__magnetic_axis__velocity_tor__hydrogen{T} + var"iron"::summary__local__magnetic_axis__velocity_tor__iron{T} + var"krypton"::summary__local__magnetic_axis__velocity_tor__krypton{T} + var"lithium"::summary__local__magnetic_axis__velocity_tor__lithium{T} + var"neon"::summary__local__magnetic_axis__velocity_tor__neon{T} + var"nitrogen"::summary__local__magnetic_axis__velocity_tor__nitrogen{T} + var"oxygen"::summary__local__magnetic_axis__velocity_tor__oxygen{T} + var"tritium"::summary__local__magnetic_axis__velocity_tor__tritium{T} + var"tungsten"::summary__local__magnetic_axis__velocity_tor__tungsten{T} + var"xenon"::summary__local__magnetic_axis__velocity_tor__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__velocity_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__velocity_tor} + _parent::WeakRef end function summary__local__magnetic_axis__velocity_tor{T}() where T @@ -18880,8 +18880,8 @@ mutable struct summary__local__magnetic_axis__t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__t_i_average} + _parent::WeakRef end function summary__local__magnetic_axis__t_i_average{T}() where T @@ -18899,8 +18899,8 @@ mutable struct summary__local__magnetic_axis__t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__t_e} + _parent::WeakRef end function summary__local__magnetic_axis__t_e{T}() where T @@ -18918,8 +18918,8 @@ mutable struct summary__local__magnetic_axis__q{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__q} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__q} + _parent::WeakRef end function summary__local__magnetic_axis__q{T}() where T @@ -18944,8 +18944,8 @@ mutable struct summary__local__magnetic_axis__position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__position} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__position} + _parent::WeakRef end function summary__local__magnetic_axis__position{T}() where T @@ -18963,8 +18963,8 @@ mutable struct summary__local__magnetic_axis__n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i_total} + _parent::WeakRef end function summary__local__magnetic_axis__n_i_total{T}() where T @@ -18982,8 +18982,8 @@ mutable struct summary__local__magnetic_axis__n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__xenon} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__xenon{T}() where T @@ -19001,8 +19001,8 @@ mutable struct summary__local__magnetic_axis__n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__tungsten} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__tungsten{T}() where T @@ -19020,8 +19020,8 @@ mutable struct summary__local__magnetic_axis__n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__tritium} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__tritium{T}() where T @@ -19039,8 +19039,8 @@ mutable struct summary__local__magnetic_axis__n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__oxygen} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__oxygen{T}() where T @@ -19058,8 +19058,8 @@ mutable struct summary__local__magnetic_axis__n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__nitrogen} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__nitrogen{T}() where T @@ -19077,8 +19077,8 @@ mutable struct summary__local__magnetic_axis__n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__neon} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__neon{T}() where T @@ -19096,8 +19096,8 @@ mutable struct summary__local__magnetic_axis__n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__lithium} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__lithium{T}() where T @@ -19115,8 +19115,8 @@ mutable struct summary__local__magnetic_axis__n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__krypton} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__krypton{T}() where T @@ -19134,8 +19134,8 @@ mutable struct summary__local__magnetic_axis__n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__iron} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__iron{T}() where T @@ -19153,8 +19153,8 @@ mutable struct summary__local__magnetic_axis__n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__hydrogen} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__hydrogen{T}() where T @@ -19172,8 +19172,8 @@ mutable struct summary__local__magnetic_axis__n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__helium_4} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__helium_4{T}() where T @@ -19191,8 +19191,8 @@ mutable struct summary__local__magnetic_axis__n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__helium_3} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__helium_3{T}() where T @@ -19210,8 +19210,8 @@ mutable struct summary__local__magnetic_axis__n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__deuterium} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__deuterium{T}() where T @@ -19229,8 +19229,8 @@ mutable struct summary__local__magnetic_axis__n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__carbon} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__carbon{T}() where T @@ -19248,8 +19248,8 @@ mutable struct summary__local__magnetic_axis__n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__beryllium} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__beryllium{T}() where T @@ -19267,8 +19267,8 @@ mutable struct summary__local__magnetic_axis__n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i__argon} + _parent::WeakRef end function summary__local__magnetic_axis__n_i__argon{T}() where T @@ -19279,28 +19279,28 @@ end summary__local__magnetic_axis__n_i__argon() = summary__local__magnetic_axis__n_i__argon{Float64}() mutable struct summary__local__magnetic_axis__n_i{T} <: IDS{T} - var"argon" :: summary__local__magnetic_axis__n_i__argon{T} - var"beryllium" :: summary__local__magnetic_axis__n_i__beryllium{T} - var"carbon" :: summary__local__magnetic_axis__n_i__carbon{T} - var"deuterium" :: summary__local__magnetic_axis__n_i__deuterium{T} - var"helium_3" :: summary__local__magnetic_axis__n_i__helium_3{T} - var"helium_4" :: summary__local__magnetic_axis__n_i__helium_4{T} - var"hydrogen" :: summary__local__magnetic_axis__n_i__hydrogen{T} - var"iron" :: summary__local__magnetic_axis__n_i__iron{T} - var"krypton" :: summary__local__magnetic_axis__n_i__krypton{T} - var"lithium" :: summary__local__magnetic_axis__n_i__lithium{T} - var"neon" :: summary__local__magnetic_axis__n_i__neon{T} - var"nitrogen" :: summary__local__magnetic_axis__n_i__nitrogen{T} - var"oxygen" :: summary__local__magnetic_axis__n_i__oxygen{T} - var"tritium" :: summary__local__magnetic_axis__n_i__tritium{T} - var"tungsten" :: summary__local__magnetic_axis__n_i__tungsten{T} - var"xenon" :: summary__local__magnetic_axis__n_i__xenon{T} + var"argon"::summary__local__magnetic_axis__n_i__argon{T} + var"beryllium"::summary__local__magnetic_axis__n_i__beryllium{T} + var"carbon"::summary__local__magnetic_axis__n_i__carbon{T} + var"deuterium"::summary__local__magnetic_axis__n_i__deuterium{T} + var"helium_3"::summary__local__magnetic_axis__n_i__helium_3{T} + var"helium_4"::summary__local__magnetic_axis__n_i__helium_4{T} + var"hydrogen"::summary__local__magnetic_axis__n_i__hydrogen{T} + var"iron"::summary__local__magnetic_axis__n_i__iron{T} + var"krypton"::summary__local__magnetic_axis__n_i__krypton{T} + var"lithium"::summary__local__magnetic_axis__n_i__lithium{T} + var"neon"::summary__local__magnetic_axis__n_i__neon{T} + var"nitrogen"::summary__local__magnetic_axis__n_i__nitrogen{T} + var"oxygen"::summary__local__magnetic_axis__n_i__oxygen{T} + var"tritium"::summary__local__magnetic_axis__n_i__tritium{T} + var"tungsten"::summary__local__magnetic_axis__n_i__tungsten{T} + var"xenon"::summary__local__magnetic_axis__n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_i} + _parent::WeakRef end function summary__local__magnetic_axis__n_i{T}() where T @@ -19334,8 +19334,8 @@ mutable struct summary__local__magnetic_axis__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__n_e} + _parent::WeakRef end function summary__local__magnetic_axis__n_e{T}() where T @@ -19353,8 +19353,8 @@ mutable struct summary__local__magnetic_axis__momentum_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__momentum_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__momentum_tor} + _parent::WeakRef end function summary__local__magnetic_axis__momentum_tor{T}() where T @@ -19372,8 +19372,8 @@ mutable struct summary__local__magnetic_axis__magnetic_shear{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__magnetic_shear} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__magnetic_shear} + _parent::WeakRef end function summary__local__magnetic_axis__magnetic_shear{T}() where T @@ -19391,8 +19391,8 @@ mutable struct summary__local__magnetic_axis__e_field_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__e_field_parallel} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__e_field_parallel} + _parent::WeakRef end function summary__local__magnetic_axis__e_field_parallel{T}() where T @@ -19410,8 +19410,8 @@ mutable struct summary__local__magnetic_axis__b_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis__b_field} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis__b_field} + _parent::WeakRef end function summary__local__magnetic_axis__b_field{T}() where T @@ -19422,25 +19422,25 @@ end summary__local__magnetic_axis__b_field() = summary__local__magnetic_axis__b_field{Float64}() mutable struct summary__local__magnetic_axis{T} <: IDS{T} - var"b_field" :: summary__local__magnetic_axis__b_field{T} - var"e_field_parallel" :: summary__local__magnetic_axis__e_field_parallel{T} - var"magnetic_shear" :: summary__local__magnetic_axis__magnetic_shear{T} - var"momentum_tor" :: summary__local__magnetic_axis__momentum_tor{T} - var"n_e" :: summary__local__magnetic_axis__n_e{T} - var"n_i" :: summary__local__magnetic_axis__n_i{T} - var"n_i_total" :: summary__local__magnetic_axis__n_i_total{T} - var"position" :: summary__local__magnetic_axis__position{T} - var"q" :: summary__local__magnetic_axis__q{T} - var"t_e" :: summary__local__magnetic_axis__t_e{T} - var"t_i_average" :: summary__local__magnetic_axis__t_i_average{T} - var"velocity_tor" :: summary__local__magnetic_axis__velocity_tor{T} - var"zeff" :: summary__local__magnetic_axis__zeff{T} + var"b_field"::summary__local__magnetic_axis__b_field{T} + var"e_field_parallel"::summary__local__magnetic_axis__e_field_parallel{T} + var"magnetic_shear"::summary__local__magnetic_axis__magnetic_shear{T} + var"momentum_tor"::summary__local__magnetic_axis__momentum_tor{T} + var"n_e"::summary__local__magnetic_axis__n_e{T} + var"n_i"::summary__local__magnetic_axis__n_i{T} + var"n_i_total"::summary__local__magnetic_axis__n_i_total{T} + var"position"::summary__local__magnetic_axis__position{T} + var"q"::summary__local__magnetic_axis__q{T} + var"t_e"::summary__local__magnetic_axis__t_e{T} + var"t_i_average"::summary__local__magnetic_axis__t_i_average{T} + var"velocity_tor"::summary__local__magnetic_axis__velocity_tor{T} + var"zeff"::summary__local__magnetic_axis__zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__magnetic_axis} + _parent::WeakRef end function summary__local__magnetic_axis{T}() where T @@ -19471,8 +19471,8 @@ mutable struct summary__local__limiter__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__zeff} + _parent::WeakRef end function summary__local__limiter__zeff{T}() where T @@ -19490,8 +19490,8 @@ mutable struct summary__local__limiter__t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__t_i_average} + _parent::WeakRef end function summary__local__limiter__t_i_average{T}() where T @@ -19509,8 +19509,8 @@ mutable struct summary__local__limiter__t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__t_e} + _parent::WeakRef end function summary__local__limiter__t_e{T}() where T @@ -19528,8 +19528,8 @@ mutable struct summary__local__limiter__power_flux_peak{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__power_flux_peak} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__power_flux_peak} + _parent::WeakRef end function summary__local__limiter__power_flux_peak{T}() where T @@ -19546,8 +19546,8 @@ mutable struct summary__local__limiter__name{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__name} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__name} + _parent::WeakRef end function summary__local__limiter__name{T}() where T @@ -19565,8 +19565,8 @@ mutable struct summary__local__limiter__n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i_total} + _parent::WeakRef end function summary__local__limiter__n_i_total{T}() where T @@ -19584,8 +19584,8 @@ mutable struct summary__local__limiter__n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__xenon} + _parent::WeakRef end function summary__local__limiter__n_i__xenon{T}() where T @@ -19603,8 +19603,8 @@ mutable struct summary__local__limiter__n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__tungsten} + _parent::WeakRef end function summary__local__limiter__n_i__tungsten{T}() where T @@ -19622,8 +19622,8 @@ mutable struct summary__local__limiter__n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__tritium} + _parent::WeakRef end function summary__local__limiter__n_i__tritium{T}() where T @@ -19641,8 +19641,8 @@ mutable struct summary__local__limiter__n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__oxygen} + _parent::WeakRef end function summary__local__limiter__n_i__oxygen{T}() where T @@ -19660,8 +19660,8 @@ mutable struct summary__local__limiter__n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__nitrogen} + _parent::WeakRef end function summary__local__limiter__n_i__nitrogen{T}() where T @@ -19679,8 +19679,8 @@ mutable struct summary__local__limiter__n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__neon} + _parent::WeakRef end function summary__local__limiter__n_i__neon{T}() where T @@ -19698,8 +19698,8 @@ mutable struct summary__local__limiter__n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__lithium} + _parent::WeakRef end function summary__local__limiter__n_i__lithium{T}() where T @@ -19717,8 +19717,8 @@ mutable struct summary__local__limiter__n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__krypton} + _parent::WeakRef end function summary__local__limiter__n_i__krypton{T}() where T @@ -19736,8 +19736,8 @@ mutable struct summary__local__limiter__n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__iron} + _parent::WeakRef end function summary__local__limiter__n_i__iron{T}() where T @@ -19755,8 +19755,8 @@ mutable struct summary__local__limiter__n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__hydrogen} + _parent::WeakRef end function summary__local__limiter__n_i__hydrogen{T}() where T @@ -19774,8 +19774,8 @@ mutable struct summary__local__limiter__n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__helium_4} + _parent::WeakRef end function summary__local__limiter__n_i__helium_4{T}() where T @@ -19793,8 +19793,8 @@ mutable struct summary__local__limiter__n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__helium_3} + _parent::WeakRef end function summary__local__limiter__n_i__helium_3{T}() where T @@ -19812,8 +19812,8 @@ mutable struct summary__local__limiter__n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__deuterium} + _parent::WeakRef end function summary__local__limiter__n_i__deuterium{T}() where T @@ -19831,8 +19831,8 @@ mutable struct summary__local__limiter__n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__carbon} + _parent::WeakRef end function summary__local__limiter__n_i__carbon{T}() where T @@ -19850,8 +19850,8 @@ mutable struct summary__local__limiter__n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__beryllium} + _parent::WeakRef end function summary__local__limiter__n_i__beryllium{T}() where T @@ -19869,8 +19869,8 @@ mutable struct summary__local__limiter__n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i__argon} + _parent::WeakRef end function summary__local__limiter__n_i__argon{T}() where T @@ -19881,28 +19881,28 @@ end summary__local__limiter__n_i__argon() = summary__local__limiter__n_i__argon{Float64}() mutable struct summary__local__limiter__n_i{T} <: IDS{T} - var"argon" :: summary__local__limiter__n_i__argon{T} - var"beryllium" :: summary__local__limiter__n_i__beryllium{T} - var"carbon" :: summary__local__limiter__n_i__carbon{T} - var"deuterium" :: summary__local__limiter__n_i__deuterium{T} - var"helium_3" :: summary__local__limiter__n_i__helium_3{T} - var"helium_4" :: summary__local__limiter__n_i__helium_4{T} - var"hydrogen" :: summary__local__limiter__n_i__hydrogen{T} - var"iron" :: summary__local__limiter__n_i__iron{T} - var"krypton" :: summary__local__limiter__n_i__krypton{T} - var"lithium" :: summary__local__limiter__n_i__lithium{T} - var"neon" :: summary__local__limiter__n_i__neon{T} - var"nitrogen" :: summary__local__limiter__n_i__nitrogen{T} - var"oxygen" :: summary__local__limiter__n_i__oxygen{T} - var"tritium" :: summary__local__limiter__n_i__tritium{T} - var"tungsten" :: summary__local__limiter__n_i__tungsten{T} - var"xenon" :: summary__local__limiter__n_i__xenon{T} + var"argon"::summary__local__limiter__n_i__argon{T} + var"beryllium"::summary__local__limiter__n_i__beryllium{T} + var"carbon"::summary__local__limiter__n_i__carbon{T} + var"deuterium"::summary__local__limiter__n_i__deuterium{T} + var"helium_3"::summary__local__limiter__n_i__helium_3{T} + var"helium_4"::summary__local__limiter__n_i__helium_4{T} + var"hydrogen"::summary__local__limiter__n_i__hydrogen{T} + var"iron"::summary__local__limiter__n_i__iron{T} + var"krypton"::summary__local__limiter__n_i__krypton{T} + var"lithium"::summary__local__limiter__n_i__lithium{T} + var"neon"::summary__local__limiter__n_i__neon{T} + var"nitrogen"::summary__local__limiter__n_i__nitrogen{T} + var"oxygen"::summary__local__limiter__n_i__oxygen{T} + var"tritium"::summary__local__limiter__n_i__tritium{T} + var"tungsten"::summary__local__limiter__n_i__tungsten{T} + var"xenon"::summary__local__limiter__n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_i} + _parent::WeakRef end function summary__local__limiter__n_i{T}() where T @@ -19936,8 +19936,8 @@ mutable struct summary__local__limiter__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__n_e} + _parent::WeakRef end function summary__local__limiter__n_e{T}() where T @@ -19955,8 +19955,8 @@ mutable struct summary__local__limiter__flux_expansion{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter__flux_expansion} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter__flux_expansion} + _parent::WeakRef end function summary__local__limiter__flux_expansion{T}() where T @@ -19967,21 +19967,21 @@ end summary__local__limiter__flux_expansion() = summary__local__limiter__flux_expansion{Float64}() mutable struct summary__local__limiter{T} <: IDS{T} - var"flux_expansion" :: summary__local__limiter__flux_expansion{T} - var"n_e" :: summary__local__limiter__n_e{T} - var"n_i" :: summary__local__limiter__n_i{T} - var"n_i_total" :: summary__local__limiter__n_i_total{T} - var"name" :: summary__local__limiter__name{T} - var"power_flux_peak" :: summary__local__limiter__power_flux_peak{T} - var"t_e" :: summary__local__limiter__t_e{T} - var"t_i_average" :: summary__local__limiter__t_i_average{T} - var"zeff" :: summary__local__limiter__zeff{T} + var"flux_expansion"::summary__local__limiter__flux_expansion{T} + var"n_e"::summary__local__limiter__n_e{T} + var"n_i"::summary__local__limiter__n_i{T} + var"n_i_total"::summary__local__limiter__n_i_total{T} + var"name"::summary__local__limiter__name{T} + var"power_flux_peak"::summary__local__limiter__power_flux_peak{T} + var"t_e"::summary__local__limiter__t_e{T} + var"t_i_average"::summary__local__limiter__t_i_average{T} + var"zeff"::summary__local__limiter__zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__limiter} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__limiter} + _parent::WeakRef end function summary__local__limiter{T}() where T @@ -20008,8 +20008,8 @@ mutable struct summary__local__itb__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__zeff} + _parent::WeakRef end function summary__local__itb__zeff{T}() where T @@ -20027,8 +20027,8 @@ mutable struct summary__local__itb__velocity_tor__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__xenon} + _parent::WeakRef end function summary__local__itb__velocity_tor__xenon{T}() where T @@ -20046,8 +20046,8 @@ mutable struct summary__local__itb__velocity_tor__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__tungsten} + _parent::WeakRef end function summary__local__itb__velocity_tor__tungsten{T}() where T @@ -20065,8 +20065,8 @@ mutable struct summary__local__itb__velocity_tor__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__tritium} + _parent::WeakRef end function summary__local__itb__velocity_tor__tritium{T}() where T @@ -20084,8 +20084,8 @@ mutable struct summary__local__itb__velocity_tor__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__oxygen} + _parent::WeakRef end function summary__local__itb__velocity_tor__oxygen{T}() where T @@ -20103,8 +20103,8 @@ mutable struct summary__local__itb__velocity_tor__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__nitrogen} + _parent::WeakRef end function summary__local__itb__velocity_tor__nitrogen{T}() where T @@ -20122,8 +20122,8 @@ mutable struct summary__local__itb__velocity_tor__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__neon} + _parent::WeakRef end function summary__local__itb__velocity_tor__neon{T}() where T @@ -20141,8 +20141,8 @@ mutable struct summary__local__itb__velocity_tor__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__lithium} + _parent::WeakRef end function summary__local__itb__velocity_tor__lithium{T}() where T @@ -20160,8 +20160,8 @@ mutable struct summary__local__itb__velocity_tor__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__krypton} + _parent::WeakRef end function summary__local__itb__velocity_tor__krypton{T}() where T @@ -20179,8 +20179,8 @@ mutable struct summary__local__itb__velocity_tor__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__iron} + _parent::WeakRef end function summary__local__itb__velocity_tor__iron{T}() where T @@ -20198,8 +20198,8 @@ mutable struct summary__local__itb__velocity_tor__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__hydrogen} + _parent::WeakRef end function summary__local__itb__velocity_tor__hydrogen{T}() where T @@ -20217,8 +20217,8 @@ mutable struct summary__local__itb__velocity_tor__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__helium_4} + _parent::WeakRef end function summary__local__itb__velocity_tor__helium_4{T}() where T @@ -20236,8 +20236,8 @@ mutable struct summary__local__itb__velocity_tor__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__helium_3} + _parent::WeakRef end function summary__local__itb__velocity_tor__helium_3{T}() where T @@ -20255,8 +20255,8 @@ mutable struct summary__local__itb__velocity_tor__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__deuterium} + _parent::WeakRef end function summary__local__itb__velocity_tor__deuterium{T}() where T @@ -20274,8 +20274,8 @@ mutable struct summary__local__itb__velocity_tor__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__carbon} + _parent::WeakRef end function summary__local__itb__velocity_tor__carbon{T}() where T @@ -20293,8 +20293,8 @@ mutable struct summary__local__itb__velocity_tor__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__beryllium} + _parent::WeakRef end function summary__local__itb__velocity_tor__beryllium{T}() where T @@ -20312,8 +20312,8 @@ mutable struct summary__local__itb__velocity_tor__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor__argon} + _parent::WeakRef end function summary__local__itb__velocity_tor__argon{T}() where T @@ -20324,28 +20324,28 @@ end summary__local__itb__velocity_tor__argon() = summary__local__itb__velocity_tor__argon{Float64}() mutable struct summary__local__itb__velocity_tor{T} <: IDS{T} - var"argon" :: summary__local__itb__velocity_tor__argon{T} - var"beryllium" :: summary__local__itb__velocity_tor__beryllium{T} - var"carbon" :: summary__local__itb__velocity_tor__carbon{T} - var"deuterium" :: summary__local__itb__velocity_tor__deuterium{T} - var"helium_3" :: summary__local__itb__velocity_tor__helium_3{T} - var"helium_4" :: summary__local__itb__velocity_tor__helium_4{T} - var"hydrogen" :: summary__local__itb__velocity_tor__hydrogen{T} - var"iron" :: summary__local__itb__velocity_tor__iron{T} - var"krypton" :: summary__local__itb__velocity_tor__krypton{T} - var"lithium" :: summary__local__itb__velocity_tor__lithium{T} - var"neon" :: summary__local__itb__velocity_tor__neon{T} - var"nitrogen" :: summary__local__itb__velocity_tor__nitrogen{T} - var"oxygen" :: summary__local__itb__velocity_tor__oxygen{T} - var"tritium" :: summary__local__itb__velocity_tor__tritium{T} - var"tungsten" :: summary__local__itb__velocity_tor__tungsten{T} - var"xenon" :: summary__local__itb__velocity_tor__xenon{T} + var"argon"::summary__local__itb__velocity_tor__argon{T} + var"beryllium"::summary__local__itb__velocity_tor__beryllium{T} + var"carbon"::summary__local__itb__velocity_tor__carbon{T} + var"deuterium"::summary__local__itb__velocity_tor__deuterium{T} + var"helium_3"::summary__local__itb__velocity_tor__helium_3{T} + var"helium_4"::summary__local__itb__velocity_tor__helium_4{T} + var"hydrogen"::summary__local__itb__velocity_tor__hydrogen{T} + var"iron"::summary__local__itb__velocity_tor__iron{T} + var"krypton"::summary__local__itb__velocity_tor__krypton{T} + var"lithium"::summary__local__itb__velocity_tor__lithium{T} + var"neon"::summary__local__itb__velocity_tor__neon{T} + var"nitrogen"::summary__local__itb__velocity_tor__nitrogen{T} + var"oxygen"::summary__local__itb__velocity_tor__oxygen{T} + var"tritium"::summary__local__itb__velocity_tor__tritium{T} + var"tungsten"::summary__local__itb__velocity_tor__tungsten{T} + var"xenon"::summary__local__itb__velocity_tor__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__velocity_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__velocity_tor} + _parent::WeakRef end function summary__local__itb__velocity_tor{T}() where T @@ -20379,8 +20379,8 @@ mutable struct summary__local__itb__t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__t_i_average} + _parent::WeakRef end function summary__local__itb__t_i_average{T}() where T @@ -20398,8 +20398,8 @@ mutable struct summary__local__itb__t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__t_e} + _parent::WeakRef end function summary__local__itb__t_e{T}() where T @@ -20417,8 +20417,8 @@ mutable struct summary__local__itb__q{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__q} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__q} + _parent::WeakRef end function summary__local__itb__q{T}() where T @@ -20439,8 +20439,8 @@ mutable struct summary__local__itb__position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__position} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__position} + _parent::WeakRef end function summary__local__itb__position{T}() where T @@ -20458,8 +20458,8 @@ mutable struct summary__local__itb__n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i_total} + _parent::WeakRef end function summary__local__itb__n_i_total{T}() where T @@ -20477,8 +20477,8 @@ mutable struct summary__local__itb__n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__xenon} + _parent::WeakRef end function summary__local__itb__n_i__xenon{T}() where T @@ -20496,8 +20496,8 @@ mutable struct summary__local__itb__n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__tungsten} + _parent::WeakRef end function summary__local__itb__n_i__tungsten{T}() where T @@ -20515,8 +20515,8 @@ mutable struct summary__local__itb__n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__tritium} + _parent::WeakRef end function summary__local__itb__n_i__tritium{T}() where T @@ -20534,8 +20534,8 @@ mutable struct summary__local__itb__n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__oxygen} + _parent::WeakRef end function summary__local__itb__n_i__oxygen{T}() where T @@ -20553,8 +20553,8 @@ mutable struct summary__local__itb__n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__nitrogen} + _parent::WeakRef end function summary__local__itb__n_i__nitrogen{T}() where T @@ -20572,8 +20572,8 @@ mutable struct summary__local__itb__n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__neon} + _parent::WeakRef end function summary__local__itb__n_i__neon{T}() where T @@ -20591,8 +20591,8 @@ mutable struct summary__local__itb__n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__lithium} + _parent::WeakRef end function summary__local__itb__n_i__lithium{T}() where T @@ -20610,8 +20610,8 @@ mutable struct summary__local__itb__n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__krypton} + _parent::WeakRef end function summary__local__itb__n_i__krypton{T}() where T @@ -20629,8 +20629,8 @@ mutable struct summary__local__itb__n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__iron} + _parent::WeakRef end function summary__local__itb__n_i__iron{T}() where T @@ -20648,8 +20648,8 @@ mutable struct summary__local__itb__n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__hydrogen} + _parent::WeakRef end function summary__local__itb__n_i__hydrogen{T}() where T @@ -20667,8 +20667,8 @@ mutable struct summary__local__itb__n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__helium_4} + _parent::WeakRef end function summary__local__itb__n_i__helium_4{T}() where T @@ -20686,8 +20686,8 @@ mutable struct summary__local__itb__n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__helium_3} + _parent::WeakRef end function summary__local__itb__n_i__helium_3{T}() where T @@ -20705,8 +20705,8 @@ mutable struct summary__local__itb__n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__deuterium} + _parent::WeakRef end function summary__local__itb__n_i__deuterium{T}() where T @@ -20724,8 +20724,8 @@ mutable struct summary__local__itb__n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__carbon} + _parent::WeakRef end function summary__local__itb__n_i__carbon{T}() where T @@ -20743,8 +20743,8 @@ mutable struct summary__local__itb__n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__beryllium} + _parent::WeakRef end function summary__local__itb__n_i__beryllium{T}() where T @@ -20762,8 +20762,8 @@ mutable struct summary__local__itb__n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i__argon} + _parent::WeakRef end function summary__local__itb__n_i__argon{T}() where T @@ -20774,28 +20774,28 @@ end summary__local__itb__n_i__argon() = summary__local__itb__n_i__argon{Float64}() mutable struct summary__local__itb__n_i{T} <: IDS{T} - var"argon" :: summary__local__itb__n_i__argon{T} - var"beryllium" :: summary__local__itb__n_i__beryllium{T} - var"carbon" :: summary__local__itb__n_i__carbon{T} - var"deuterium" :: summary__local__itb__n_i__deuterium{T} - var"helium_3" :: summary__local__itb__n_i__helium_3{T} - var"helium_4" :: summary__local__itb__n_i__helium_4{T} - var"hydrogen" :: summary__local__itb__n_i__hydrogen{T} - var"iron" :: summary__local__itb__n_i__iron{T} - var"krypton" :: summary__local__itb__n_i__krypton{T} - var"lithium" :: summary__local__itb__n_i__lithium{T} - var"neon" :: summary__local__itb__n_i__neon{T} - var"nitrogen" :: summary__local__itb__n_i__nitrogen{T} - var"oxygen" :: summary__local__itb__n_i__oxygen{T} - var"tritium" :: summary__local__itb__n_i__tritium{T} - var"tungsten" :: summary__local__itb__n_i__tungsten{T} - var"xenon" :: summary__local__itb__n_i__xenon{T} + var"argon"::summary__local__itb__n_i__argon{T} + var"beryllium"::summary__local__itb__n_i__beryllium{T} + var"carbon"::summary__local__itb__n_i__carbon{T} + var"deuterium"::summary__local__itb__n_i__deuterium{T} + var"helium_3"::summary__local__itb__n_i__helium_3{T} + var"helium_4"::summary__local__itb__n_i__helium_4{T} + var"hydrogen"::summary__local__itb__n_i__hydrogen{T} + var"iron"::summary__local__itb__n_i__iron{T} + var"krypton"::summary__local__itb__n_i__krypton{T} + var"lithium"::summary__local__itb__n_i__lithium{T} + var"neon"::summary__local__itb__n_i__neon{T} + var"nitrogen"::summary__local__itb__n_i__nitrogen{T} + var"oxygen"::summary__local__itb__n_i__oxygen{T} + var"tritium"::summary__local__itb__n_i__tritium{T} + var"tungsten"::summary__local__itb__n_i__tungsten{T} + var"xenon"::summary__local__itb__n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_i} + _parent::WeakRef end function summary__local__itb__n_i{T}() where T @@ -20829,8 +20829,8 @@ mutable struct summary__local__itb__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__n_e} + _parent::WeakRef end function summary__local__itb__n_e{T}() where T @@ -20848,8 +20848,8 @@ mutable struct summary__local__itb__momentum_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__momentum_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__momentum_tor} + _parent::WeakRef end function summary__local__itb__momentum_tor{T}() where T @@ -20867,8 +20867,8 @@ mutable struct summary__local__itb__magnetic_shear{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__magnetic_shear} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__magnetic_shear} + _parent::WeakRef end function summary__local__itb__magnetic_shear{T}() where T @@ -20886,8 +20886,8 @@ mutable struct summary__local__itb__e_field_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb__e_field_parallel} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb__e_field_parallel} + _parent::WeakRef end function summary__local__itb__e_field_parallel{T}() where T @@ -20898,24 +20898,24 @@ end summary__local__itb__e_field_parallel() = summary__local__itb__e_field_parallel{Float64}() mutable struct summary__local__itb{T} <: IDS{T} - var"e_field_parallel" :: summary__local__itb__e_field_parallel{T} - var"magnetic_shear" :: summary__local__itb__magnetic_shear{T} - var"momentum_tor" :: summary__local__itb__momentum_tor{T} - var"n_e" :: summary__local__itb__n_e{T} - var"n_i" :: summary__local__itb__n_i{T} - var"n_i_total" :: summary__local__itb__n_i_total{T} - var"position" :: summary__local__itb__position{T} - var"q" :: summary__local__itb__q{T} - var"t_e" :: summary__local__itb__t_e{T} - var"t_i_average" :: summary__local__itb__t_i_average{T} - var"velocity_tor" :: summary__local__itb__velocity_tor{T} - var"zeff" :: summary__local__itb__zeff{T} + var"e_field_parallel"::summary__local__itb__e_field_parallel{T} + var"magnetic_shear"::summary__local__itb__magnetic_shear{T} + var"momentum_tor"::summary__local__itb__momentum_tor{T} + var"n_e"::summary__local__itb__n_e{T} + var"n_i"::summary__local__itb__n_i{T} + var"n_i_total"::summary__local__itb__n_i_total{T} + var"position"::summary__local__itb__position{T} + var"q"::summary__local__itb__q{T} + var"t_e"::summary__local__itb__t_e{T} + var"t_i_average"::summary__local__itb__t_i_average{T} + var"velocity_tor"::summary__local__itb__velocity_tor{T} + var"zeff"::summary__local__itb__zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__itb} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__itb} + _parent::WeakRef end function summary__local__itb{T}() where T @@ -20945,8 +20945,8 @@ mutable struct summary__local__divertor_target___zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___zeff} + _parent::WeakRef end function summary__local__divertor_target___zeff{T}() where T @@ -20964,8 +20964,8 @@ mutable struct summary__local__divertor_target___t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___t_i_average} + _parent::WeakRef end function summary__local__divertor_target___t_i_average{T}() where T @@ -20983,8 +20983,8 @@ mutable struct summary__local__divertor_target___t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___t_e} + _parent::WeakRef end function summary__local__divertor_target___t_e{T}() where T @@ -21002,8 +21002,8 @@ mutable struct summary__local__divertor_target___power_flux_peak{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___power_flux_peak} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___power_flux_peak} + _parent::WeakRef end function summary__local__divertor_target___power_flux_peak{T}() where T @@ -21020,8 +21020,8 @@ mutable struct summary__local__divertor_target___name{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___name} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___name} + _parent::WeakRef end function summary__local__divertor_target___name{T}() where T @@ -21039,8 +21039,8 @@ mutable struct summary__local__divertor_target___n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i_total} + _parent::WeakRef end function summary__local__divertor_target___n_i_total{T}() where T @@ -21058,8 +21058,8 @@ mutable struct summary__local__divertor_target___n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__xenon} + _parent::WeakRef end function summary__local__divertor_target___n_i__xenon{T}() where T @@ -21077,8 +21077,8 @@ mutable struct summary__local__divertor_target___n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__tungsten} + _parent::WeakRef end function summary__local__divertor_target___n_i__tungsten{T}() where T @@ -21096,8 +21096,8 @@ mutable struct summary__local__divertor_target___n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__tritium} + _parent::WeakRef end function summary__local__divertor_target___n_i__tritium{T}() where T @@ -21115,8 +21115,8 @@ mutable struct summary__local__divertor_target___n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__oxygen} + _parent::WeakRef end function summary__local__divertor_target___n_i__oxygen{T}() where T @@ -21134,8 +21134,8 @@ mutable struct summary__local__divertor_target___n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__nitrogen} + _parent::WeakRef end function summary__local__divertor_target___n_i__nitrogen{T}() where T @@ -21153,8 +21153,8 @@ mutable struct summary__local__divertor_target___n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__neon} + _parent::WeakRef end function summary__local__divertor_target___n_i__neon{T}() where T @@ -21172,8 +21172,8 @@ mutable struct summary__local__divertor_target___n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__lithium} + _parent::WeakRef end function summary__local__divertor_target___n_i__lithium{T}() where T @@ -21191,8 +21191,8 @@ mutable struct summary__local__divertor_target___n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__krypton} + _parent::WeakRef end function summary__local__divertor_target___n_i__krypton{T}() where T @@ -21210,8 +21210,8 @@ mutable struct summary__local__divertor_target___n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__iron} + _parent::WeakRef end function summary__local__divertor_target___n_i__iron{T}() where T @@ -21229,8 +21229,8 @@ mutable struct summary__local__divertor_target___n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__hydrogen} + _parent::WeakRef end function summary__local__divertor_target___n_i__hydrogen{T}() where T @@ -21248,8 +21248,8 @@ mutable struct summary__local__divertor_target___n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__helium_4} + _parent::WeakRef end function summary__local__divertor_target___n_i__helium_4{T}() where T @@ -21267,8 +21267,8 @@ mutable struct summary__local__divertor_target___n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__helium_3} + _parent::WeakRef end function summary__local__divertor_target___n_i__helium_3{T}() where T @@ -21286,8 +21286,8 @@ mutable struct summary__local__divertor_target___n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__deuterium} + _parent::WeakRef end function summary__local__divertor_target___n_i__deuterium{T}() where T @@ -21305,8 +21305,8 @@ mutable struct summary__local__divertor_target___n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__carbon} + _parent::WeakRef end function summary__local__divertor_target___n_i__carbon{T}() where T @@ -21324,8 +21324,8 @@ mutable struct summary__local__divertor_target___n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__beryllium} + _parent::WeakRef end function summary__local__divertor_target___n_i__beryllium{T}() where T @@ -21343,8 +21343,8 @@ mutable struct summary__local__divertor_target___n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i__argon} + _parent::WeakRef end function summary__local__divertor_target___n_i__argon{T}() where T @@ -21355,28 +21355,28 @@ end summary__local__divertor_target___n_i__argon() = summary__local__divertor_target___n_i__argon{Float64}() mutable struct summary__local__divertor_target___n_i{T} <: IDS{T} - var"argon" :: summary__local__divertor_target___n_i__argon{T} - var"beryllium" :: summary__local__divertor_target___n_i__beryllium{T} - var"carbon" :: summary__local__divertor_target___n_i__carbon{T} - var"deuterium" :: summary__local__divertor_target___n_i__deuterium{T} - var"helium_3" :: summary__local__divertor_target___n_i__helium_3{T} - var"helium_4" :: summary__local__divertor_target___n_i__helium_4{T} - var"hydrogen" :: summary__local__divertor_target___n_i__hydrogen{T} - var"iron" :: summary__local__divertor_target___n_i__iron{T} - var"krypton" :: summary__local__divertor_target___n_i__krypton{T} - var"lithium" :: summary__local__divertor_target___n_i__lithium{T} - var"neon" :: summary__local__divertor_target___n_i__neon{T} - var"nitrogen" :: summary__local__divertor_target___n_i__nitrogen{T} - var"oxygen" :: summary__local__divertor_target___n_i__oxygen{T} - var"tritium" :: summary__local__divertor_target___n_i__tritium{T} - var"tungsten" :: summary__local__divertor_target___n_i__tungsten{T} - var"xenon" :: summary__local__divertor_target___n_i__xenon{T} + var"argon"::summary__local__divertor_target___n_i__argon{T} + var"beryllium"::summary__local__divertor_target___n_i__beryllium{T} + var"carbon"::summary__local__divertor_target___n_i__carbon{T} + var"deuterium"::summary__local__divertor_target___n_i__deuterium{T} + var"helium_3"::summary__local__divertor_target___n_i__helium_3{T} + var"helium_4"::summary__local__divertor_target___n_i__helium_4{T} + var"hydrogen"::summary__local__divertor_target___n_i__hydrogen{T} + var"iron"::summary__local__divertor_target___n_i__iron{T} + var"krypton"::summary__local__divertor_target___n_i__krypton{T} + var"lithium"::summary__local__divertor_target___n_i__lithium{T} + var"neon"::summary__local__divertor_target___n_i__neon{T} + var"nitrogen"::summary__local__divertor_target___n_i__nitrogen{T} + var"oxygen"::summary__local__divertor_target___n_i__oxygen{T} + var"tritium"::summary__local__divertor_target___n_i__tritium{T} + var"tungsten"::summary__local__divertor_target___n_i__tungsten{T} + var"xenon"::summary__local__divertor_target___n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_i} + _parent::WeakRef end function summary__local__divertor_target___n_i{T}() where T @@ -21410,8 +21410,8 @@ mutable struct summary__local__divertor_target___n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___n_e} + _parent::WeakRef end function summary__local__divertor_target___n_e{T}() where T @@ -21429,8 +21429,8 @@ mutable struct summary__local__divertor_target___flux_expansion{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target___flux_expansion} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target___flux_expansion} + _parent::WeakRef end function summary__local__divertor_target___flux_expansion{T}() where T @@ -21441,21 +21441,21 @@ end summary__local__divertor_target___flux_expansion() = summary__local__divertor_target___flux_expansion{Float64}() mutable struct summary__local__divertor_target{T} <: IDSvectorStaticElement{T} - var"flux_expansion" :: summary__local__divertor_target___flux_expansion{T} - var"n_e" :: summary__local__divertor_target___n_e{T} - var"n_i" :: summary__local__divertor_target___n_i{T} - var"n_i_total" :: summary__local__divertor_target___n_i_total{T} - var"name" :: summary__local__divertor_target___name{T} - var"power_flux_peak" :: summary__local__divertor_target___power_flux_peak{T} - var"t_e" :: summary__local__divertor_target___t_e{T} - var"t_i_average" :: summary__local__divertor_target___t_i_average{T} - var"zeff" :: summary__local__divertor_target___zeff{T} + var"flux_expansion"::summary__local__divertor_target___flux_expansion{T} + var"n_e"::summary__local__divertor_target___n_e{T} + var"n_i"::summary__local__divertor_target___n_i{T} + var"n_i_total"::summary__local__divertor_target___n_i_total{T} + var"name"::summary__local__divertor_target___name{T} + var"power_flux_peak"::summary__local__divertor_target___power_flux_peak{T} + var"t_e"::summary__local__divertor_target___t_e{T} + var"t_i_average"::summary__local__divertor_target___t_i_average{T} + var"zeff"::summary__local__divertor_target___zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local__divertor_target} - _parent :: WeakRef + _ref::Union{Nothing,summary__local__divertor_target} + _parent::WeakRef end function summary__local__divertor_target{T}() where T @@ -21475,20 +21475,20 @@ end summary__local__divertor_target() = summary__local__divertor_target{Float64}() mutable struct summary__local{T} <: IDS{T} - var"divertor_target" :: IDSvector{summary__local__divertor_target{T}} - var"itb" :: summary__local__itb{T} - var"limiter" :: summary__local__limiter{T} - var"magnetic_axis" :: summary__local__magnetic_axis{T} - var"pedestal" :: summary__local__pedestal{T} - var"r_eff_norm_2_3" :: summary__local__r_eff_norm_2_3{T} - var"separatrix" :: summary__local__separatrix{T} - var"separatrix_average" :: summary__local__separatrix_average{T} + var"divertor_target"::IDSvector{summary__local__divertor_target{T}} + var"itb"::summary__local__itb{T} + var"limiter"::summary__local__limiter{T} + var"magnetic_axis"::summary__local__magnetic_axis{T} + var"pedestal"::summary__local__pedestal{T} + var"r_eff_norm_2_3"::summary__local__r_eff_norm_2_3{T} + var"separatrix"::summary__local__separatrix{T} + var"separatrix_average"::summary__local__separatrix_average{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__local} - _parent :: WeakRef + _ref::Union{Nothing,summary__local} + _parent::WeakRef end function summary__local{T}() where T @@ -21514,8 +21514,8 @@ mutable struct summary__line_average__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__zeff} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__zeff} + _parent::WeakRef end function summary__line_average__zeff{T}() where T @@ -21533,8 +21533,8 @@ mutable struct summary__line_average__t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__t_i_average} + _parent::WeakRef end function summary__line_average__t_i_average{T}() where T @@ -21552,8 +21552,8 @@ mutable struct summary__line_average__t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__t_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__t_e} + _parent::WeakRef end function summary__line_average__t_e{T}() where T @@ -21571,8 +21571,8 @@ mutable struct summary__line_average__n_i_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i_total} + _parent::WeakRef end function summary__line_average__n_i_total{T}() where T @@ -21590,8 +21590,8 @@ mutable struct summary__line_average__n_i__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__xenon} + _parent::WeakRef end function summary__line_average__n_i__xenon{T}() where T @@ -21609,8 +21609,8 @@ mutable struct summary__line_average__n_i__tungsten{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__tungsten} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__tungsten} + _parent::WeakRef end function summary__line_average__n_i__tungsten{T}() where T @@ -21628,8 +21628,8 @@ mutable struct summary__line_average__n_i__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__tritium} + _parent::WeakRef end function summary__line_average__n_i__tritium{T}() where T @@ -21647,8 +21647,8 @@ mutable struct summary__line_average__n_i__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__oxygen} + _parent::WeakRef end function summary__line_average__n_i__oxygen{T}() where T @@ -21666,8 +21666,8 @@ mutable struct summary__line_average__n_i__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__nitrogen} + _parent::WeakRef end function summary__line_average__n_i__nitrogen{T}() where T @@ -21685,8 +21685,8 @@ mutable struct summary__line_average__n_i__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__neon} + _parent::WeakRef end function summary__line_average__n_i__neon{T}() where T @@ -21704,8 +21704,8 @@ mutable struct summary__line_average__n_i__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__lithium} + _parent::WeakRef end function summary__line_average__n_i__lithium{T}() where T @@ -21723,8 +21723,8 @@ mutable struct summary__line_average__n_i__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__krypton} + _parent::WeakRef end function summary__line_average__n_i__krypton{T}() where T @@ -21742,8 +21742,8 @@ mutable struct summary__line_average__n_i__iron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__iron} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__iron} + _parent::WeakRef end function summary__line_average__n_i__iron{T}() where T @@ -21761,8 +21761,8 @@ mutable struct summary__line_average__n_i__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__hydrogen} + _parent::WeakRef end function summary__line_average__n_i__hydrogen{T}() where T @@ -21780,8 +21780,8 @@ mutable struct summary__line_average__n_i__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__helium_4} + _parent::WeakRef end function summary__line_average__n_i__helium_4{T}() where T @@ -21799,8 +21799,8 @@ mutable struct summary__line_average__n_i__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__helium_3} + _parent::WeakRef end function summary__line_average__n_i__helium_3{T}() where T @@ -21818,8 +21818,8 @@ mutable struct summary__line_average__n_i__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__deuterium} + _parent::WeakRef end function summary__line_average__n_i__deuterium{T}() where T @@ -21837,8 +21837,8 @@ mutable struct summary__line_average__n_i__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__carbon} + _parent::WeakRef end function summary__line_average__n_i__carbon{T}() where T @@ -21856,8 +21856,8 @@ mutable struct summary__line_average__n_i__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__beryllium} + _parent::WeakRef end function summary__line_average__n_i__beryllium{T}() where T @@ -21875,8 +21875,8 @@ mutable struct summary__line_average__n_i__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i__argon} + _parent::WeakRef end function summary__line_average__n_i__argon{T}() where T @@ -21887,28 +21887,28 @@ end summary__line_average__n_i__argon() = summary__line_average__n_i__argon{Float64}() mutable struct summary__line_average__n_i{T} <: IDS{T} - var"argon" :: summary__line_average__n_i__argon{T} - var"beryllium" :: summary__line_average__n_i__beryllium{T} - var"carbon" :: summary__line_average__n_i__carbon{T} - var"deuterium" :: summary__line_average__n_i__deuterium{T} - var"helium_3" :: summary__line_average__n_i__helium_3{T} - var"helium_4" :: summary__line_average__n_i__helium_4{T} - var"hydrogen" :: summary__line_average__n_i__hydrogen{T} - var"iron" :: summary__line_average__n_i__iron{T} - var"krypton" :: summary__line_average__n_i__krypton{T} - var"lithium" :: summary__line_average__n_i__lithium{T} - var"neon" :: summary__line_average__n_i__neon{T} - var"nitrogen" :: summary__line_average__n_i__nitrogen{T} - var"oxygen" :: summary__line_average__n_i__oxygen{T} - var"tritium" :: summary__line_average__n_i__tritium{T} - var"tungsten" :: summary__line_average__n_i__tungsten{T} - var"xenon" :: summary__line_average__n_i__xenon{T} + var"argon"::summary__line_average__n_i__argon{T} + var"beryllium"::summary__line_average__n_i__beryllium{T} + var"carbon"::summary__line_average__n_i__carbon{T} + var"deuterium"::summary__line_average__n_i__deuterium{T} + var"helium_3"::summary__line_average__n_i__helium_3{T} + var"helium_4"::summary__line_average__n_i__helium_4{T} + var"hydrogen"::summary__line_average__n_i__hydrogen{T} + var"iron"::summary__line_average__n_i__iron{T} + var"krypton"::summary__line_average__n_i__krypton{T} + var"lithium"::summary__line_average__n_i__lithium{T} + var"neon"::summary__line_average__n_i__neon{T} + var"nitrogen"::summary__line_average__n_i__nitrogen{T} + var"oxygen"::summary__line_average__n_i__oxygen{T} + var"tritium"::summary__line_average__n_i__tritium{T} + var"tungsten"::summary__line_average__n_i__tungsten{T} + var"xenon"::summary__line_average__n_i__xenon{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_i} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_i} + _parent::WeakRef end function summary__line_average__n_i{T}() where T @@ -21942,8 +21942,8 @@ mutable struct summary__line_average__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__n_e} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__n_e} + _parent::WeakRef end function summary__line_average__n_e{T}() where T @@ -21961,8 +21961,8 @@ mutable struct summary__line_average__meff_hydrogenic{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__meff_hydrogenic} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__meff_hydrogenic} + _parent::WeakRef end function summary__line_average__meff_hydrogenic{T}() where T @@ -21980,8 +21980,8 @@ mutable struct summary__line_average__isotope_fraction_hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__isotope_fraction_hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__isotope_fraction_hydrogen} + _parent::WeakRef end function summary__line_average__isotope_fraction_hydrogen{T}() where T @@ -21999,8 +21999,8 @@ mutable struct summary__line_average__dn_e_dt{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average__dn_e_dt} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average__dn_e_dt} + _parent::WeakRef end function summary__line_average__dn_e_dt{T}() where T @@ -22011,21 +22011,21 @@ end summary__line_average__dn_e_dt() = summary__line_average__dn_e_dt{Float64}() mutable struct summary__line_average{T} <: IDS{T} - var"dn_e_dt" :: summary__line_average__dn_e_dt{T} - var"isotope_fraction_hydrogen" :: summary__line_average__isotope_fraction_hydrogen{T} - var"meff_hydrogenic" :: summary__line_average__meff_hydrogenic{T} - var"n_e" :: summary__line_average__n_e{T} - var"n_i" :: summary__line_average__n_i{T} - var"n_i_total" :: summary__line_average__n_i_total{T} - var"t_e" :: summary__line_average__t_e{T} - var"t_i_average" :: summary__line_average__t_i_average{T} - var"zeff" :: summary__line_average__zeff{T} + var"dn_e_dt"::summary__line_average__dn_e_dt{T} + var"isotope_fraction_hydrogen"::summary__line_average__isotope_fraction_hydrogen{T} + var"meff_hydrogenic"::summary__line_average__meff_hydrogenic{T} + var"n_e"::summary__line_average__n_e{T} + var"n_i"::summary__line_average__n_i{T} + var"n_i_total"::summary__line_average__n_i_total{T} + var"t_e"::summary__line_average__t_e{T} + var"t_i_average"::summary__line_average__t_i_average{T} + var"zeff"::summary__line_average__zeff{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__line_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__line_average} + _parent::WeakRef end function summary__line_average{T}() where T @@ -22052,8 +22052,8 @@ mutable struct summary__limiter__material{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__limiter__material} - _parent :: WeakRef + _ref::Union{Nothing,summary__limiter__material} + _parent::WeakRef end function summary__limiter__material{T}() where T @@ -22064,13 +22064,13 @@ end summary__limiter__material() = summary__limiter__material{Float64}() mutable struct summary__limiter{T} <: IDS{T} - var"material" :: summary__limiter__material{T} + var"material"::summary__limiter__material{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__limiter} - _parent :: WeakRef + _ref::Union{Nothing,summary__limiter} + _parent::WeakRef end function summary__limiter{T}() where T @@ -22088,8 +22088,8 @@ mutable struct summary__kicks__occurrence{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__kicks__occurrence} - _parent :: WeakRef + _ref::Union{Nothing,summary__kicks__occurrence} + _parent::WeakRef end function summary__kicks__occurrence{T}() where T @@ -22100,13 +22100,13 @@ end summary__kicks__occurrence() = summary__kicks__occurrence{Float64}() mutable struct summary__kicks{T} <: IDS{T} - var"occurrence" :: summary__kicks__occurrence{T} + var"occurrence"::summary__kicks__occurrence{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__kicks} - _parent :: WeakRef + _ref::Union{Nothing,summary__kicks} + _parent::WeakRef end function summary__kicks{T}() where T @@ -22125,8 +22125,8 @@ mutable struct summary__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__version_put} + _parent::WeakRef end function summary__ids_properties__version_put{T}() where T @@ -22143,8 +22143,8 @@ mutable struct summary__ids_properties__provenance__node{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__provenance__node} + _parent::WeakRef end function summary__ids_properties__provenance__node{T}() where T @@ -22155,13 +22155,13 @@ end summary__ids_properties__provenance__node() = summary__ids_properties__provenance__node{Float64}() mutable struct summary__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{summary__ids_properties__provenance__node{T}} + var"node"::IDSvector{summary__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__provenance} + _parent::WeakRef end function summary__ids_properties__provenance{T}() where T @@ -22183,8 +22183,8 @@ mutable struct summary__ids_properties__plugins__node___readback{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__plugins__node___readback} + _parent::WeakRef end function summary__ids_properties__plugins__node___readback{T}() where T @@ -22205,8 +22205,8 @@ mutable struct summary__ids_properties__plugins__node___put_operation{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function summary__ids_properties__plugins__node___put_operation{T}() where T @@ -22227,8 +22227,8 @@ mutable struct summary__ids_properties__plugins__node___get_operation{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function summary__ids_properties__plugins__node___get_operation{T}() where T @@ -22239,16 +22239,16 @@ end summary__ids_properties__plugins__node___get_operation() = summary__ids_properties__plugins__node___get_operation{Float64}() mutable struct summary__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{summary__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{summary__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{summary__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{summary__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{summary__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{summary__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__plugins__node} + _parent::WeakRef end function summary__ids_properties__plugins__node{T}() where T @@ -22271,8 +22271,8 @@ mutable struct summary__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function summary__ids_properties__plugins__infrastructure_put{T}() where T @@ -22292,8 +22292,8 @@ mutable struct summary__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function summary__ids_properties__plugins__infrastructure_get{T}() where T @@ -22304,15 +22304,15 @@ end summary__ids_properties__plugins__infrastructure_get() = summary__ids_properties__plugins__infrastructure_get{Float64}() mutable struct summary__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: summary__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: summary__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{summary__ids_properties__plugins__node{T}} + var"infrastructure_get"::summary__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::summary__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{summary__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__plugins} + _parent::WeakRef end function summary__ids_properties__plugins{T}() where T @@ -22333,8 +22333,8 @@ mutable struct summary__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties__occurrence_type} + _parent::WeakRef end function summary__ids_properties__occurrence_type{T}() where T @@ -22350,17 +22350,17 @@ mutable struct summary__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: summary__ids_properties__occurrence_type{T} - var"plugins" :: summary__ids_properties__plugins{T} - var"provenance" :: summary__ids_properties__provenance{T} + var"occurrence_type"::summary__ids_properties__occurrence_type{T} + var"plugins"::summary__ids_properties__plugins{T} + var"provenance"::summary__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: summary__ids_properties__version_put{T} + var"version_put"::summary__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,summary__ids_properties} + _parent::WeakRef end function summary__ids_properties{T}() where T @@ -22382,8 +22382,8 @@ mutable struct summary__heating_current_drive__power_nbi{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_nbi} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_nbi} + _parent::WeakRef end function summary__heating_current_drive__power_nbi{T}() where T @@ -22401,8 +22401,8 @@ mutable struct summary__heating_current_drive__power_lh{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_lh} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_lh} + _parent::WeakRef end function summary__heating_current_drive__power_lh{T}() where T @@ -22420,8 +22420,8 @@ mutable struct summary__heating_current_drive__power_launched_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_launched_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_launched_total} + _parent::WeakRef end function summary__heating_current_drive__power_launched_total{T}() where T @@ -22439,8 +22439,8 @@ mutable struct summary__heating_current_drive__power_launched_nbi_co_injected_ra _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_launched_nbi_co_injected_ratio} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_launched_nbi_co_injected_ratio} + _parent::WeakRef end function summary__heating_current_drive__power_launched_nbi_co_injected_ratio{T}() where T @@ -22458,8 +22458,8 @@ mutable struct summary__heating_current_drive__power_launched_nbi{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_launched_nbi} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_launched_nbi} + _parent::WeakRef end function summary__heating_current_drive__power_launched_nbi{T}() where T @@ -22477,8 +22477,8 @@ mutable struct summary__heating_current_drive__power_launched_lh{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_launched_lh} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_launched_lh} + _parent::WeakRef end function summary__heating_current_drive__power_launched_lh{T}() where T @@ -22496,8 +22496,8 @@ mutable struct summary__heating_current_drive__power_launched_ic{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_launched_ic} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_launched_ic} + _parent::WeakRef end function summary__heating_current_drive__power_launched_ic{T}() where T @@ -22515,8 +22515,8 @@ mutable struct summary__heating_current_drive__power_launched_ec{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_launched_ec} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_launched_ec} + _parent::WeakRef end function summary__heating_current_drive__power_launched_ec{T}() where T @@ -22534,8 +22534,8 @@ mutable struct summary__heating_current_drive__power_ic{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_ic} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_ic} + _parent::WeakRef end function summary__heating_current_drive__power_ic{T}() where T @@ -22553,8 +22553,8 @@ mutable struct summary__heating_current_drive__power_ec{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_ec} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_ec} + _parent::WeakRef end function summary__heating_current_drive__power_ec{T}() where T @@ -22572,8 +22572,8 @@ mutable struct summary__heating_current_drive__power_additional{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__power_additional} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__power_additional} + _parent::WeakRef end function summary__heating_current_drive__power_additional{T}() where T @@ -22591,8 +22591,8 @@ mutable struct summary__heating_current_drive__nbi___tangency_radius{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___tangency_radius} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___tangency_radius} + _parent::WeakRef end function summary__heating_current_drive__nbi___tangency_radius{T}() where T @@ -22610,8 +22610,8 @@ mutable struct summary__heating_current_drive__nbi___species__z_n{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___species__z_n} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___species__z_n} + _parent::WeakRef end function summary__heating_current_drive__nbi___species__z_n{T}() where T @@ -22628,8 +22628,8 @@ mutable struct summary__heating_current_drive__nbi___species__label{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___species__label} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___species__label} + _parent::WeakRef end function summary__heating_current_drive__nbi___species__label{T}() where T @@ -22647,8 +22647,8 @@ mutable struct summary__heating_current_drive__nbi___species__a{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___species__a} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___species__a} + _parent::WeakRef end function summary__heating_current_drive__nbi___species__a{T}() where T @@ -22659,15 +22659,15 @@ end summary__heating_current_drive__nbi___species__a() = summary__heating_current_drive__nbi___species__a{Float64}() mutable struct summary__heating_current_drive__nbi___species{T} <: IDS{T} - var"a" :: summary__heating_current_drive__nbi___species__a{T} - var"label" :: summary__heating_current_drive__nbi___species__label{T} - var"z_n" :: summary__heating_current_drive__nbi___species__z_n{T} + var"a"::summary__heating_current_drive__nbi___species__a{T} + var"label"::summary__heating_current_drive__nbi___species__label{T} + var"z_n"::summary__heating_current_drive__nbi___species__z_n{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___species} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___species} + _parent::WeakRef end function summary__heating_current_drive__nbi___species{T}() where T @@ -22688,8 +22688,8 @@ mutable struct summary__heating_current_drive__nbi___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___power_launched} + _parent::WeakRef end function summary__heating_current_drive__nbi___power_launched{T}() where T @@ -22707,8 +22707,8 @@ mutable struct summary__heating_current_drive__nbi___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___power} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___power} + _parent::WeakRef end function summary__heating_current_drive__nbi___power{T}() where T @@ -22726,8 +22726,8 @@ mutable struct summary__heating_current_drive__nbi___position__z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___position__z} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___position__z} + _parent::WeakRef end function summary__heating_current_drive__nbi___position__z{T}() where T @@ -22745,8 +22745,8 @@ mutable struct summary__heating_current_drive__nbi___position__r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___position__r} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___position__r} + _parent::WeakRef end function summary__heating_current_drive__nbi___position__r{T}() where T @@ -22764,8 +22764,8 @@ mutable struct summary__heating_current_drive__nbi___position__phi{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___position__phi} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___position__phi} + _parent::WeakRef end function summary__heating_current_drive__nbi___position__phi{T}() where T @@ -22776,15 +22776,15 @@ end summary__heating_current_drive__nbi___position__phi() = summary__heating_current_drive__nbi___position__phi{Float64}() mutable struct summary__heating_current_drive__nbi___position{T} <: IDS{T} - var"phi" :: summary__heating_current_drive__nbi___position__phi{T} - var"r" :: summary__heating_current_drive__nbi___position__r{T} - var"z" :: summary__heating_current_drive__nbi___position__z{T} + var"phi"::summary__heating_current_drive__nbi___position__phi{T} + var"r"::summary__heating_current_drive__nbi___position__r{T} + var"z"::summary__heating_current_drive__nbi___position__z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___position} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___position} + _parent::WeakRef end function summary__heating_current_drive__nbi___position{T}() where T @@ -22805,8 +22805,8 @@ mutable struct summary__heating_current_drive__nbi___energy{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___energy} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___energy} + _parent::WeakRef end function summary__heating_current_drive__nbi___energy{T}() where T @@ -22823,8 +22823,8 @@ mutable struct summary__heating_current_drive__nbi___direction{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___direction} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___direction} + _parent::WeakRef end function summary__heating_current_drive__nbi___direction{T}() where T @@ -22842,8 +22842,8 @@ mutable struct summary__heating_current_drive__nbi___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___current} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___current} + _parent::WeakRef end function summary__heating_current_drive__nbi___current{T}() where T @@ -22861,8 +22861,8 @@ mutable struct summary__heating_current_drive__nbi___beam_power_fraction{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___beam_power_fraction} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___beam_power_fraction} + _parent::WeakRef end function summary__heating_current_drive__nbi___beam_power_fraction{T}() where T @@ -22880,8 +22880,8 @@ mutable struct summary__heating_current_drive__nbi___beam_current_fraction{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___beam_current_fraction} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___beam_current_fraction} + _parent::WeakRef end function summary__heating_current_drive__nbi___beam_current_fraction{T}() where T @@ -22899,8 +22899,8 @@ mutable struct summary__heating_current_drive__nbi___angle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi___angle} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi___angle} + _parent::WeakRef end function summary__heating_current_drive__nbi___angle{T}() where T @@ -22911,23 +22911,23 @@ end summary__heating_current_drive__nbi___angle() = summary__heating_current_drive__nbi___angle{Float64}() mutable struct summary__heating_current_drive__nbi{T} <: IDSvectorStaticElement{T} - var"angle" :: summary__heating_current_drive__nbi___angle{T} - var"beam_current_fraction" :: summary__heating_current_drive__nbi___beam_current_fraction{T} - var"beam_power_fraction" :: summary__heating_current_drive__nbi___beam_power_fraction{T} - var"current" :: summary__heating_current_drive__nbi___current{T} - var"direction" :: summary__heating_current_drive__nbi___direction{T} - var"energy" :: summary__heating_current_drive__nbi___energy{T} - var"position" :: summary__heating_current_drive__nbi___position{T} - var"power" :: summary__heating_current_drive__nbi___power{T} - var"power_launched" :: summary__heating_current_drive__nbi___power_launched{T} - var"species" :: summary__heating_current_drive__nbi___species{T} - var"tangency_radius" :: summary__heating_current_drive__nbi___tangency_radius{T} + var"angle"::summary__heating_current_drive__nbi___angle{T} + var"beam_current_fraction"::summary__heating_current_drive__nbi___beam_current_fraction{T} + var"beam_power_fraction"::summary__heating_current_drive__nbi___beam_power_fraction{T} + var"current"::summary__heating_current_drive__nbi___current{T} + var"direction"::summary__heating_current_drive__nbi___direction{T} + var"energy"::summary__heating_current_drive__nbi___energy{T} + var"position"::summary__heating_current_drive__nbi___position{T} + var"power"::summary__heating_current_drive__nbi___power{T} + var"power_launched"::summary__heating_current_drive__nbi___power_launched{T} + var"species"::summary__heating_current_drive__nbi___species{T} + var"tangency_radius"::summary__heating_current_drive__nbi___tangency_radius{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__nbi} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__nbi} + _parent::WeakRef end function summary__heating_current_drive__nbi{T}() where T @@ -22956,8 +22956,8 @@ mutable struct summary__heating_current_drive__lh___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__lh___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__lh___power_launched} + _parent::WeakRef end function summary__heating_current_drive__lh___power_launched{T}() where T @@ -22975,8 +22975,8 @@ mutable struct summary__heating_current_drive__lh___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__lh___power} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__lh___power} + _parent::WeakRef end function summary__heating_current_drive__lh___power{T}() where T @@ -22994,8 +22994,8 @@ mutable struct summary__heating_current_drive__lh___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__lh___position} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__lh___position} + _parent::WeakRef end function summary__heating_current_drive__lh___position{T}() where T @@ -23013,8 +23013,8 @@ mutable struct summary__heating_current_drive__lh___n_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__lh___n_parallel} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__lh___n_parallel} + _parent::WeakRef end function summary__heating_current_drive__lh___n_parallel{T}() where T @@ -23032,8 +23032,8 @@ mutable struct summary__heating_current_drive__lh___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__lh___frequency} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__lh___frequency} + _parent::WeakRef end function summary__heating_current_drive__lh___frequency{T}() where T @@ -23051,8 +23051,8 @@ mutable struct summary__heating_current_drive__lh___energy_fast{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__lh___energy_fast} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__lh___energy_fast} + _parent::WeakRef end function summary__heating_current_drive__lh___energy_fast{T}() where T @@ -23070,8 +23070,8 @@ mutable struct summary__heating_current_drive__lh___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__lh___current} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__lh___current} + _parent::WeakRef end function summary__heating_current_drive__lh___current{T}() where T @@ -23082,19 +23082,19 @@ end summary__heating_current_drive__lh___current() = summary__heating_current_drive__lh___current{Float64}() mutable struct summary__heating_current_drive__lh{T} <: IDSvectorStaticElement{T} - var"current" :: summary__heating_current_drive__lh___current{T} - var"energy_fast" :: summary__heating_current_drive__lh___energy_fast{T} - var"frequency" :: summary__heating_current_drive__lh___frequency{T} - var"n_parallel" :: summary__heating_current_drive__lh___n_parallel{T} - var"position" :: summary__heating_current_drive__lh___position{T} - var"power" :: summary__heating_current_drive__lh___power{T} - var"power_launched" :: summary__heating_current_drive__lh___power_launched{T} + var"current"::summary__heating_current_drive__lh___current{T} + var"energy_fast"::summary__heating_current_drive__lh___energy_fast{T} + var"frequency"::summary__heating_current_drive__lh___frequency{T} + var"n_parallel"::summary__heating_current_drive__lh___n_parallel{T} + var"position"::summary__heating_current_drive__lh___position{T} + var"power"::summary__heating_current_drive__lh___power{T} + var"power_launched"::summary__heating_current_drive__lh___power_launched{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__lh} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__lh} + _parent::WeakRef end function summary__heating_current_drive__lh{T}() where T @@ -23119,8 +23119,8 @@ mutable struct summary__heating_current_drive__ic___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___power_launched} + _parent::WeakRef end function summary__heating_current_drive__ic___power_launched{T}() where T @@ -23138,8 +23138,8 @@ mutable struct summary__heating_current_drive__ic___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___power} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___power} + _parent::WeakRef end function summary__heating_current_drive__ic___power{T}() where T @@ -23157,8 +23157,8 @@ mutable struct summary__heating_current_drive__ic___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___position} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___position} + _parent::WeakRef end function summary__heating_current_drive__ic___position{T}() where T @@ -23176,8 +23176,8 @@ mutable struct summary__heating_current_drive__ic___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___phase} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___phase} + _parent::WeakRef end function summary__heating_current_drive__ic___phase{T}() where T @@ -23194,8 +23194,8 @@ mutable struct summary__heating_current_drive__ic___n_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___n_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___n_tor} + _parent::WeakRef end function summary__heating_current_drive__ic___n_tor{T}() where T @@ -23213,8 +23213,8 @@ mutable struct summary__heating_current_drive__ic___k_perpendicular{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___k_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___k_perpendicular} + _parent::WeakRef end function summary__heating_current_drive__ic___k_perpendicular{T}() where T @@ -23231,8 +23231,8 @@ mutable struct summary__heating_current_drive__ic___harmonic{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___harmonic} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___harmonic} + _parent::WeakRef end function summary__heating_current_drive__ic___harmonic{T}() where T @@ -23250,8 +23250,8 @@ mutable struct summary__heating_current_drive__ic___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___frequency} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___frequency} + _parent::WeakRef end function summary__heating_current_drive__ic___frequency{T}() where T @@ -23269,8 +23269,8 @@ mutable struct summary__heating_current_drive__ic___energy_fast{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___energy_fast} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___energy_fast} + _parent::WeakRef end function summary__heating_current_drive__ic___energy_fast{T}() where T @@ -23288,8 +23288,8 @@ mutable struct summary__heating_current_drive__ic___e_field_plus_minus_ratio{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___e_field_plus_minus_ratio} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___e_field_plus_minus_ratio} + _parent::WeakRef end function summary__heating_current_drive__ic___e_field_plus_minus_ratio{T}() where T @@ -23307,8 +23307,8 @@ mutable struct summary__heating_current_drive__ic___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic___current} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic___current} + _parent::WeakRef end function summary__heating_current_drive__ic___current{T}() where T @@ -23319,23 +23319,23 @@ end summary__heating_current_drive__ic___current() = summary__heating_current_drive__ic___current{Float64}() mutable struct summary__heating_current_drive__ic{T} <: IDSvectorStaticElement{T} - var"current" :: summary__heating_current_drive__ic___current{T} - var"e_field_plus_minus_ratio" :: summary__heating_current_drive__ic___e_field_plus_minus_ratio{T} - var"energy_fast" :: summary__heating_current_drive__ic___energy_fast{T} - var"frequency" :: summary__heating_current_drive__ic___frequency{T} - var"harmonic" :: summary__heating_current_drive__ic___harmonic{T} - var"k_perpendicular" :: summary__heating_current_drive__ic___k_perpendicular{T} - var"n_tor" :: summary__heating_current_drive__ic___n_tor{T} - var"phase" :: summary__heating_current_drive__ic___phase{T} - var"position" :: summary__heating_current_drive__ic___position{T} - var"power" :: summary__heating_current_drive__ic___power{T} - var"power_launched" :: summary__heating_current_drive__ic___power_launched{T} + var"current"::summary__heating_current_drive__ic___current{T} + var"e_field_plus_minus_ratio"::summary__heating_current_drive__ic___e_field_plus_minus_ratio{T} + var"energy_fast"::summary__heating_current_drive__ic___energy_fast{T} + var"frequency"::summary__heating_current_drive__ic___frequency{T} + var"harmonic"::summary__heating_current_drive__ic___harmonic{T} + var"k_perpendicular"::summary__heating_current_drive__ic___k_perpendicular{T} + var"n_tor"::summary__heating_current_drive__ic___n_tor{T} + var"phase"::summary__heating_current_drive__ic___phase{T} + var"position"::summary__heating_current_drive__ic___position{T} + var"power"::summary__heating_current_drive__ic___power{T} + var"power_launched"::summary__heating_current_drive__ic___power_launched{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ic} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ic} + _parent::WeakRef end function summary__heating_current_drive__ic{T}() where T @@ -23364,8 +23364,8 @@ mutable struct summary__heating_current_drive__ec___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___power_launched} + _parent::WeakRef end function summary__heating_current_drive__ec___power_launched{T}() where T @@ -23383,8 +23383,8 @@ mutable struct summary__heating_current_drive__ec___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___power} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___power} + _parent::WeakRef end function summary__heating_current_drive__ec___power{T}() where T @@ -23402,8 +23402,8 @@ mutable struct summary__heating_current_drive__ec___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___position} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___position} + _parent::WeakRef end function summary__heating_current_drive__ec___position{T}() where T @@ -23420,8 +23420,8 @@ mutable struct summary__heating_current_drive__ec___polarisation{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___polarisation} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___polarisation} + _parent::WeakRef end function summary__heating_current_drive__ec___polarisation{T}() where T @@ -23438,8 +23438,8 @@ mutable struct summary__heating_current_drive__ec___harmonic{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___harmonic} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___harmonic} + _parent::WeakRef end function summary__heating_current_drive__ec___harmonic{T}() where T @@ -23457,8 +23457,8 @@ mutable struct summary__heating_current_drive__ec___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___frequency} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___frequency} + _parent::WeakRef end function summary__heating_current_drive__ec___frequency{T}() where T @@ -23476,8 +23476,8 @@ mutable struct summary__heating_current_drive__ec___energy_fast{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___energy_fast} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___energy_fast} + _parent::WeakRef end function summary__heating_current_drive__ec___energy_fast{T}() where T @@ -23495,8 +23495,8 @@ mutable struct summary__heating_current_drive__ec___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___current} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___current} + _parent::WeakRef end function summary__heating_current_drive__ec___current{T}() where T @@ -23514,8 +23514,8 @@ mutable struct summary__heating_current_drive__ec___angle_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___angle_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___angle_tor} + _parent::WeakRef end function summary__heating_current_drive__ec___angle_tor{T}() where T @@ -23533,8 +23533,8 @@ mutable struct summary__heating_current_drive__ec___angle_pol{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec___angle_pol} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec___angle_pol} + _parent::WeakRef end function summary__heating_current_drive__ec___angle_pol{T}() where T @@ -23545,22 +23545,22 @@ end summary__heating_current_drive__ec___angle_pol() = summary__heating_current_drive__ec___angle_pol{Float64}() mutable struct summary__heating_current_drive__ec{T} <: IDSvectorStaticElement{T} - var"angle_pol" :: summary__heating_current_drive__ec___angle_pol{T} - var"angle_tor" :: summary__heating_current_drive__ec___angle_tor{T} - var"current" :: summary__heating_current_drive__ec___current{T} - var"energy_fast" :: summary__heating_current_drive__ec___energy_fast{T} - var"frequency" :: summary__heating_current_drive__ec___frequency{T} - var"harmonic" :: summary__heating_current_drive__ec___harmonic{T} - var"polarisation" :: summary__heating_current_drive__ec___polarisation{T} - var"position" :: summary__heating_current_drive__ec___position{T} - var"power" :: summary__heating_current_drive__ec___power{T} - var"power_launched" :: summary__heating_current_drive__ec___power_launched{T} + var"angle_pol"::summary__heating_current_drive__ec___angle_pol{T} + var"angle_tor"::summary__heating_current_drive__ec___angle_tor{T} + var"current"::summary__heating_current_drive__ec___current{T} + var"energy_fast"::summary__heating_current_drive__ec___energy_fast{T} + var"frequency"::summary__heating_current_drive__ec___frequency{T} + var"harmonic"::summary__heating_current_drive__ec___harmonic{T} + var"polarisation"::summary__heating_current_drive__ec___polarisation{T} + var"position"::summary__heating_current_drive__ec___position{T} + var"power"::summary__heating_current_drive__ec___power{T} + var"power_launched"::summary__heating_current_drive__ec___power_launched{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive__ec} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive__ec} + _parent::WeakRef end function summary__heating_current_drive__ec{T}() where T @@ -23581,27 +23581,27 @@ end summary__heating_current_drive__ec() = summary__heating_current_drive__ec{Float64}() mutable struct summary__heating_current_drive{T} <: IDS{T} - var"ec" :: IDSvector{summary__heating_current_drive__ec{T}} - var"ic" :: IDSvector{summary__heating_current_drive__ic{T}} - var"lh" :: IDSvector{summary__heating_current_drive__lh{T}} - var"nbi" :: IDSvector{summary__heating_current_drive__nbi{T}} - var"power_additional" :: summary__heating_current_drive__power_additional{T} - var"power_ec" :: summary__heating_current_drive__power_ec{T} - var"power_ic" :: summary__heating_current_drive__power_ic{T} - var"power_launched_ec" :: summary__heating_current_drive__power_launched_ec{T} - var"power_launched_ic" :: summary__heating_current_drive__power_launched_ic{T} - var"power_launched_lh" :: summary__heating_current_drive__power_launched_lh{T} - var"power_launched_nbi" :: summary__heating_current_drive__power_launched_nbi{T} - var"power_launched_nbi_co_injected_ratio" :: summary__heating_current_drive__power_launched_nbi_co_injected_ratio{T} - var"power_launched_total" :: summary__heating_current_drive__power_launched_total{T} - var"power_lh" :: summary__heating_current_drive__power_lh{T} - var"power_nbi" :: summary__heating_current_drive__power_nbi{T} + var"ec"::IDSvector{summary__heating_current_drive__ec{T}} + var"ic"::IDSvector{summary__heating_current_drive__ic{T}} + var"lh"::IDSvector{summary__heating_current_drive__lh{T}} + var"nbi"::IDSvector{summary__heating_current_drive__nbi{T}} + var"power_additional"::summary__heating_current_drive__power_additional{T} + var"power_ec"::summary__heating_current_drive__power_ec{T} + var"power_ic"::summary__heating_current_drive__power_ic{T} + var"power_launched_ec"::summary__heating_current_drive__power_launched_ec{T} + var"power_launched_ic"::summary__heating_current_drive__power_launched_ic{T} + var"power_launched_lh"::summary__heating_current_drive__power_launched_lh{T} + var"power_launched_nbi"::summary__heating_current_drive__power_launched_nbi{T} + var"power_launched_nbi_co_injected_ratio"::summary__heating_current_drive__power_launched_nbi_co_injected_ratio{T} + var"power_launched_total"::summary__heating_current_drive__power_launched_total{T} + var"power_lh"::summary__heating_current_drive__power_lh{T} + var"power_nbi"::summary__heating_current_drive__power_nbi{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__heating_current_drive} - _parent :: WeakRef + _ref::Union{Nothing,summary__heating_current_drive} + _parent::WeakRef end function summary__heating_current_drive{T}() where T @@ -23634,8 +23634,8 @@ mutable struct summary__global_quantities__volume{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__volume} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__volume} + _parent::WeakRef end function summary__global_quantities__volume{T}() where T @@ -23653,8 +23653,8 @@ mutable struct summary__global_quantities__v_loop{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__v_loop} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__v_loop} + _parent::WeakRef end function summary__global_quantities__v_loop{T}() where T @@ -23672,8 +23672,8 @@ mutable struct summary__global_quantities__tau_resistive{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__tau_resistive} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__tau_resistive} + _parent::WeakRef end function summary__global_quantities__tau_resistive{T}() where T @@ -23691,8 +23691,8 @@ mutable struct summary__global_quantities__tau_helium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__tau_helium} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__tau_helium} + _parent::WeakRef end function summary__global_quantities__tau_helium{T}() where T @@ -23710,8 +23710,8 @@ mutable struct summary__global_quantities__tau_energy_98{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__tau_energy_98} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__tau_energy_98} + _parent::WeakRef end function summary__global_quantities__tau_energy_98{T}() where T @@ -23729,8 +23729,8 @@ mutable struct summary__global_quantities__tau_energy{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__tau_energy} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__tau_energy} + _parent::WeakRef end function summary__global_quantities__tau_energy{T}() where T @@ -23748,8 +23748,8 @@ mutable struct summary__global_quantities__resistance{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__resistance} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__resistance} + _parent::WeakRef end function summary__global_quantities__resistance{T}() where T @@ -23767,8 +23767,8 @@ mutable struct summary__global_quantities__ratio_tau_helium_fuel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__ratio_tau_helium_fuel} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__ratio_tau_helium_fuel} + _parent::WeakRef end function summary__global_quantities__ratio_tau_helium_fuel{T}() where T @@ -23786,8 +23786,8 @@ mutable struct summary__global_quantities__r0{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__r0} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__r0} + _parent::WeakRef end function summary__global_quantities__r0{T}() where T @@ -23805,8 +23805,8 @@ mutable struct summary__global_quantities__q_95{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__q_95} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__q_95} + _parent::WeakRef end function summary__global_quantities__q_95{T}() where T @@ -23824,8 +23824,8 @@ mutable struct summary__global_quantities__psi_external_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__psi_external_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__psi_external_average} + _parent::WeakRef end function summary__global_quantities__psi_external_average{T}() where T @@ -23843,8 +23843,8 @@ mutable struct summary__global_quantities__power_synchrotron{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_synchrotron} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_synchrotron} + _parent::WeakRef end function summary__global_quantities__power_synchrotron{T}() where T @@ -23862,8 +23862,8 @@ mutable struct summary__global_quantities__power_steady{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_steady} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_steady} + _parent::WeakRef end function summary__global_quantities__power_steady{T}() where T @@ -23881,8 +23881,8 @@ mutable struct summary__global_quantities__power_radiated_outside_lcfs{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_radiated_outside_lcfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_radiated_outside_lcfs} + _parent::WeakRef end function summary__global_quantities__power_radiated_outside_lcfs{T}() where T @@ -23900,8 +23900,8 @@ mutable struct summary__global_quantities__power_radiated_inside_lcfs{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_radiated_inside_lcfs} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_radiated_inside_lcfs} + _parent::WeakRef end function summary__global_quantities__power_radiated_inside_lcfs{T}() where T @@ -23919,8 +23919,8 @@ mutable struct summary__global_quantities__power_radiated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_radiated} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_radiated} + _parent::WeakRef end function summary__global_quantities__power_radiated{T}() where T @@ -23938,8 +23938,8 @@ mutable struct summary__global_quantities__power_ohm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_ohm} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_ohm} + _parent::WeakRef end function summary__global_quantities__power_ohm{T}() where T @@ -23957,8 +23957,8 @@ mutable struct summary__global_quantities__power_loss{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_loss} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_loss} + _parent::WeakRef end function summary__global_quantities__power_loss{T}() where T @@ -23976,8 +23976,8 @@ mutable struct summary__global_quantities__power_line{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_line} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_line} + _parent::WeakRef end function summary__global_quantities__power_line{T}() where T @@ -23995,8 +23995,8 @@ mutable struct summary__global_quantities__power_bremsstrahlung{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__power_bremsstrahlung} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__power_bremsstrahlung} + _parent::WeakRef end function summary__global_quantities__power_bremsstrahlung{T}() where T @@ -24014,8 +24014,8 @@ mutable struct summary__global_quantities__li_mhd{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__li_mhd} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__li_mhd} + _parent::WeakRef end function summary__global_quantities__li_mhd{T}() where T @@ -24033,8 +24033,8 @@ mutable struct summary__global_quantities__li{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__li} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__li} + _parent::WeakRef end function summary__global_quantities__li{T}() where T @@ -24052,8 +24052,8 @@ mutable struct summary__global_quantities__ip{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__ip} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__ip} + _parent::WeakRef end function summary__global_quantities__ip{T}() where T @@ -24070,8 +24070,8 @@ mutable struct summary__global_quantities__h_mode{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__h_mode} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__h_mode} + _parent::WeakRef end function summary__global_quantities__h_mode{T}() where T @@ -24089,8 +24089,8 @@ mutable struct summary__global_quantities__h_98{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__h_98} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__h_98} + _parent::WeakRef end function summary__global_quantities__h_98{T}() where T @@ -24108,8 +24108,8 @@ mutable struct summary__global_quantities__greenwald_fraction{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__greenwald_fraction} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__greenwald_fraction} + _parent::WeakRef end function summary__global_quantities__greenwald_fraction{T}() where T @@ -24127,8 +24127,8 @@ mutable struct summary__global_quantities__fusion_gain{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__fusion_gain} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__fusion_gain} + _parent::WeakRef end function summary__global_quantities__fusion_gain{T}() where T @@ -24146,8 +24146,8 @@ mutable struct summary__global_quantities__fusion_fluence{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__fusion_fluence} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__fusion_fluence} + _parent::WeakRef end function summary__global_quantities__fusion_fluence{T}() where T @@ -24165,8 +24165,8 @@ mutable struct summary__global_quantities__energy_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_total} + _parent::WeakRef end function summary__global_quantities__energy_total{T}() where T @@ -24184,8 +24184,8 @@ mutable struct summary__global_quantities__energy_thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_thermal} + _parent::WeakRef end function summary__global_quantities__energy_thermal{T}() where T @@ -24203,8 +24203,8 @@ mutable struct summary__global_quantities__energy_mhd{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_mhd} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_mhd} + _parent::WeakRef end function summary__global_quantities__energy_mhd{T}() where T @@ -24222,8 +24222,8 @@ mutable struct summary__global_quantities__energy_ion_total_thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_ion_total_thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_ion_total_thermal} + _parent::WeakRef end function summary__global_quantities__energy_ion_total_thermal{T}() where T @@ -24241,8 +24241,8 @@ mutable struct summary__global_quantities__energy_fast_perpendicular{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_fast_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_fast_perpendicular} + _parent::WeakRef end function summary__global_quantities__energy_fast_perpendicular{T}() where T @@ -24260,8 +24260,8 @@ mutable struct summary__global_quantities__energy_fast_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_fast_parallel} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_fast_parallel} + _parent::WeakRef end function summary__global_quantities__energy_fast_parallel{T}() where T @@ -24279,8 +24279,8 @@ mutable struct summary__global_quantities__energy_electrons_thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_electrons_thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_electrons_thermal} + _parent::WeakRef end function summary__global_quantities__energy_electrons_thermal{T}() where T @@ -24298,8 +24298,8 @@ mutable struct summary__global_quantities__energy_diamagnetic{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_diamagnetic} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_diamagnetic} + _parent::WeakRef end function summary__global_quantities__energy_diamagnetic{T}() where T @@ -24317,8 +24317,8 @@ mutable struct summary__global_quantities__energy_b_field_pol{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__energy_b_field_pol} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__energy_b_field_pol} + _parent::WeakRef end function summary__global_quantities__energy_b_field_pol{T}() where T @@ -24336,8 +24336,8 @@ mutable struct summary__global_quantities__denergy_thermal_dt{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__denergy_thermal_dt} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__denergy_thermal_dt} + _parent::WeakRef end function summary__global_quantities__denergy_thermal_dt{T}() where T @@ -24355,8 +24355,8 @@ mutable struct summary__global_quantities__denergy_diamagnetic_dt{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__denergy_diamagnetic_dt} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__denergy_diamagnetic_dt} + _parent::WeakRef end function summary__global_quantities__denergy_diamagnetic_dt{T}() where T @@ -24374,8 +24374,8 @@ mutable struct summary__global_quantities__current_ohm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__current_ohm} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__current_ohm} + _parent::WeakRef end function summary__global_quantities__current_ohm{T}() where T @@ -24393,8 +24393,8 @@ mutable struct summary__global_quantities__current_non_inductive{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__current_non_inductive} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__current_non_inductive} + _parent::WeakRef end function summary__global_quantities__current_non_inductive{T}() where T @@ -24412,8 +24412,8 @@ mutable struct summary__global_quantities__current_bootstrap{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__current_bootstrap} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__current_bootstrap} + _parent::WeakRef end function summary__global_quantities__current_bootstrap{T}() where T @@ -24431,8 +24431,8 @@ mutable struct summary__global_quantities__current_alignment{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__current_alignment} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__current_alignment} + _parent::WeakRef end function summary__global_quantities__current_alignment{T}() where T @@ -24450,8 +24450,8 @@ mutable struct summary__global_quantities__beta_tor_thermal_norm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__beta_tor_thermal_norm} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__beta_tor_thermal_norm} + _parent::WeakRef end function summary__global_quantities__beta_tor_thermal_norm{T}() where T @@ -24469,8 +24469,8 @@ mutable struct summary__global_quantities__beta_tor_norm_mhd{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__beta_tor_norm_mhd} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__beta_tor_norm_mhd} + _parent::WeakRef end function summary__global_quantities__beta_tor_norm_mhd{T}() where T @@ -24488,8 +24488,8 @@ mutable struct summary__global_quantities__beta_tor_norm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__beta_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__beta_tor_norm} + _parent::WeakRef end function summary__global_quantities__beta_tor_norm{T}() where T @@ -24507,8 +24507,8 @@ mutable struct summary__global_quantities__beta_tor_mhd{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__beta_tor_mhd} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__beta_tor_mhd} + _parent::WeakRef end function summary__global_quantities__beta_tor_mhd{T}() where T @@ -24526,8 +24526,8 @@ mutable struct summary__global_quantities__beta_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__beta_tor} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__beta_tor} + _parent::WeakRef end function summary__global_quantities__beta_tor{T}() where T @@ -24545,8 +24545,8 @@ mutable struct summary__global_quantities__beta_pol_mhd{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__beta_pol_mhd} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__beta_pol_mhd} + _parent::WeakRef end function summary__global_quantities__beta_pol_mhd{T}() where T @@ -24564,8 +24564,8 @@ mutable struct summary__global_quantities__beta_pol{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__beta_pol} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__beta_pol} + _parent::WeakRef end function summary__global_quantities__beta_pol{T}() where T @@ -24583,8 +24583,8 @@ mutable struct summary__global_quantities__b0{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities__b0} - _parent :: WeakRef + _ref::Union{Nothing,summary__global_quantities__b0} + _parent::WeakRef end function summary__global_quantities__b0{T}() where T @@ -24595,63 +24595,63 @@ end summary__global_quantities__b0() = summary__global_quantities__b0{Float64}() mutable struct summary__global_quantities{T} <: IDS{T} - var"b0" :: summary__global_quantities__b0{T} - var"beta_pol" :: summary__global_quantities__beta_pol{T} - var"beta_pol_mhd" :: summary__global_quantities__beta_pol_mhd{T} - var"beta_tor" :: summary__global_quantities__beta_tor{T} - var"beta_tor_mhd" :: summary__global_quantities__beta_tor_mhd{T} - var"beta_tor_norm" :: summary__global_quantities__beta_tor_norm{T} - var"beta_tor_norm_mhd" :: summary__global_quantities__beta_tor_norm_mhd{T} - var"beta_tor_thermal_norm" :: summary__global_quantities__beta_tor_thermal_norm{T} - var"current_alignment" :: summary__global_quantities__current_alignment{T} - var"current_bootstrap" :: summary__global_quantities__current_bootstrap{T} - var"current_non_inductive" :: summary__global_quantities__current_non_inductive{T} - var"current_ohm" :: summary__global_quantities__current_ohm{T} - var"denergy_diamagnetic_dt" :: summary__global_quantities__denergy_diamagnetic_dt{T} - var"denergy_thermal_dt" :: summary__global_quantities__denergy_thermal_dt{T} - var"energy_b_field_pol" :: summary__global_quantities__energy_b_field_pol{T} - var"energy_diamagnetic" :: summary__global_quantities__energy_diamagnetic{T} - var"energy_electrons_thermal" :: summary__global_quantities__energy_electrons_thermal{T} - var"energy_fast_parallel" :: summary__global_quantities__energy_fast_parallel{T} - var"energy_fast_perpendicular" :: summary__global_quantities__energy_fast_perpendicular{T} - var"energy_ion_total_thermal" :: summary__global_quantities__energy_ion_total_thermal{T} - var"energy_mhd" :: summary__global_quantities__energy_mhd{T} - var"energy_thermal" :: summary__global_quantities__energy_thermal{T} - var"energy_total" :: summary__global_quantities__energy_total{T} - var"fusion_fluence" :: summary__global_quantities__fusion_fluence{T} - var"fusion_gain" :: summary__global_quantities__fusion_gain{T} - var"greenwald_fraction" :: summary__global_quantities__greenwald_fraction{T} - var"h_98" :: summary__global_quantities__h_98{T} - var"h_mode" :: summary__global_quantities__h_mode{T} - var"ip" :: summary__global_quantities__ip{T} - var"li" :: summary__global_quantities__li{T} - var"li_mhd" :: summary__global_quantities__li_mhd{T} - var"power_bremsstrahlung" :: summary__global_quantities__power_bremsstrahlung{T} - var"power_line" :: summary__global_quantities__power_line{T} - var"power_loss" :: summary__global_quantities__power_loss{T} - var"power_ohm" :: summary__global_quantities__power_ohm{T} - var"power_radiated" :: summary__global_quantities__power_radiated{T} - var"power_radiated_inside_lcfs" :: summary__global_quantities__power_radiated_inside_lcfs{T} - var"power_radiated_outside_lcfs" :: summary__global_quantities__power_radiated_outside_lcfs{T} - var"power_steady" :: summary__global_quantities__power_steady{T} - var"power_synchrotron" :: summary__global_quantities__power_synchrotron{T} - var"psi_external_average" :: summary__global_quantities__psi_external_average{T} - var"q_95" :: summary__global_quantities__q_95{T} - var"r0" :: summary__global_quantities__r0{T} - var"ratio_tau_helium_fuel" :: summary__global_quantities__ratio_tau_helium_fuel{T} - var"resistance" :: summary__global_quantities__resistance{T} - var"tau_energy" :: summary__global_quantities__tau_energy{T} - var"tau_energy_98" :: summary__global_quantities__tau_energy_98{T} - var"tau_helium" :: summary__global_quantities__tau_helium{T} - var"tau_resistive" :: summary__global_quantities__tau_resistive{T} - var"v_loop" :: summary__global_quantities__v_loop{T} - var"volume" :: summary__global_quantities__volume{T} - _filled::Set{Symbol} - _frozen::Bool - _threads_lock::ReentrantLock - _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__global_quantities} - _parent :: WeakRef + var"b0"::summary__global_quantities__b0{T} + var"beta_pol"::summary__global_quantities__beta_pol{T} + var"beta_pol_mhd"::summary__global_quantities__beta_pol_mhd{T} + var"beta_tor"::summary__global_quantities__beta_tor{T} + var"beta_tor_mhd"::summary__global_quantities__beta_tor_mhd{T} + var"beta_tor_norm"::summary__global_quantities__beta_tor_norm{T} + var"beta_tor_norm_mhd"::summary__global_quantities__beta_tor_norm_mhd{T} + var"beta_tor_thermal_norm"::summary__global_quantities__beta_tor_thermal_norm{T} + var"current_alignment"::summary__global_quantities__current_alignment{T} + var"current_bootstrap"::summary__global_quantities__current_bootstrap{T} + var"current_non_inductive"::summary__global_quantities__current_non_inductive{T} + var"current_ohm"::summary__global_quantities__current_ohm{T} + var"denergy_diamagnetic_dt"::summary__global_quantities__denergy_diamagnetic_dt{T} + var"denergy_thermal_dt"::summary__global_quantities__denergy_thermal_dt{T} + var"energy_b_field_pol"::summary__global_quantities__energy_b_field_pol{T} + var"energy_diamagnetic"::summary__global_quantities__energy_diamagnetic{T} + var"energy_electrons_thermal"::summary__global_quantities__energy_electrons_thermal{T} + var"energy_fast_parallel"::summary__global_quantities__energy_fast_parallel{T} + var"energy_fast_perpendicular"::summary__global_quantities__energy_fast_perpendicular{T} + var"energy_ion_total_thermal"::summary__global_quantities__energy_ion_total_thermal{T} + var"energy_mhd"::summary__global_quantities__energy_mhd{T} + var"energy_thermal"::summary__global_quantities__energy_thermal{T} + var"energy_total"::summary__global_quantities__energy_total{T} + var"fusion_fluence"::summary__global_quantities__fusion_fluence{T} + var"fusion_gain"::summary__global_quantities__fusion_gain{T} + var"greenwald_fraction"::summary__global_quantities__greenwald_fraction{T} + var"h_98"::summary__global_quantities__h_98{T} + var"h_mode"::summary__global_quantities__h_mode{T} + var"ip"::summary__global_quantities__ip{T} + var"li"::summary__global_quantities__li{T} + var"li_mhd"::summary__global_quantities__li_mhd{T} + var"power_bremsstrahlung"::summary__global_quantities__power_bremsstrahlung{T} + var"power_line"::summary__global_quantities__power_line{T} + var"power_loss"::summary__global_quantities__power_loss{T} + var"power_ohm"::summary__global_quantities__power_ohm{T} + var"power_radiated"::summary__global_quantities__power_radiated{T} + var"power_radiated_inside_lcfs"::summary__global_quantities__power_radiated_inside_lcfs{T} + var"power_radiated_outside_lcfs"::summary__global_quantities__power_radiated_outside_lcfs{T} + var"power_steady"::summary__global_quantities__power_steady{T} + var"power_synchrotron"::summary__global_quantities__power_synchrotron{T} + var"psi_external_average"::summary__global_quantities__psi_external_average{T} + var"q_95"::summary__global_quantities__q_95{T} + var"r0"::summary__global_quantities__r0{T} + var"ratio_tau_helium_fuel"::summary__global_quantities__ratio_tau_helium_fuel{T} + var"resistance"::summary__global_quantities__resistance{T} + var"tau_energy"::summary__global_quantities__tau_energy{T} + var"tau_energy_98"::summary__global_quantities__tau_energy_98{T} + var"tau_helium"::summary__global_quantities__tau_helium{T} + var"tau_resistive"::summary__global_quantities__tau_resistive{T} + var"v_loop"::summary__global_quantities__v_loop{T} + var"volume"::summary__global_quantities__volume{T} + _filled::Set{Symbol} + _frozen::Bool + _threads_lock::ReentrantLock + _in_expression::Dict{Int,Vector{Symbol}} + _ref::Union{Nothing,summary__global_quantities} + _parent::WeakRef end function summary__global_quantities{T}() where T @@ -24720,8 +24720,8 @@ mutable struct summary__gas_injection_rates__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__xenon} + _parent::WeakRef end function summary__gas_injection_rates__xenon{T}() where T @@ -24739,8 +24739,8 @@ mutable struct summary__gas_injection_rates__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__tritium} + _parent::WeakRef end function summary__gas_injection_rates__tritium{T}() where T @@ -24758,8 +24758,8 @@ mutable struct summary__gas_injection_rates__total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__total} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__total} + _parent::WeakRef end function summary__gas_injection_rates__total{T}() where T @@ -24777,8 +24777,8 @@ mutable struct summary__gas_injection_rates__top{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__top} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__top} + _parent::WeakRef end function summary__gas_injection_rates__top{T}() where T @@ -24796,8 +24796,8 @@ mutable struct summary__gas_injection_rates__silane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__silane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__silane} + _parent::WeakRef end function summary__gas_injection_rates__silane{T}() where T @@ -24815,8 +24815,8 @@ mutable struct summary__gas_injection_rates__propane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__propane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__propane} + _parent::WeakRef end function summary__gas_injection_rates__propane{T}() where T @@ -24834,8 +24834,8 @@ mutable struct summary__gas_injection_rates__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__oxygen} + _parent::WeakRef end function summary__gas_injection_rates__oxygen{T}() where T @@ -24853,8 +24853,8 @@ mutable struct summary__gas_injection_rates__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__nitrogen} + _parent::WeakRef end function summary__gas_injection_rates__nitrogen{T}() where T @@ -24872,8 +24872,8 @@ mutable struct summary__gas_injection_rates__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__neon} + _parent::WeakRef end function summary__gas_injection_rates__neon{T}() where T @@ -24891,8 +24891,8 @@ mutable struct summary__gas_injection_rates__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__midplane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__midplane} + _parent::WeakRef end function summary__gas_injection_rates__midplane{T}() where T @@ -24910,8 +24910,8 @@ mutable struct summary__gas_injection_rates__methane_deuterated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__methane_deuterated} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__methane_deuterated} + _parent::WeakRef end function summary__gas_injection_rates__methane_deuterated{T}() where T @@ -24929,8 +24929,8 @@ mutable struct summary__gas_injection_rates__methane_carbon_13{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__methane_carbon_13} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__methane_carbon_13} + _parent::WeakRef end function summary__gas_injection_rates__methane_carbon_13{T}() where T @@ -24948,8 +24948,8 @@ mutable struct summary__gas_injection_rates__methane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__methane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__methane} + _parent::WeakRef end function summary__gas_injection_rates__methane{T}() where T @@ -24967,8 +24967,8 @@ mutable struct summary__gas_injection_rates__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__lithium} + _parent::WeakRef end function summary__gas_injection_rates__lithium{T}() where T @@ -24986,8 +24986,8 @@ mutable struct summary__gas_injection_rates__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__krypton} + _parent::WeakRef end function summary__gas_injection_rates__krypton{T}() where T @@ -25004,8 +25004,8 @@ mutable struct summary__gas_injection_rates__impurity_seeding{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__impurity_seeding} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__impurity_seeding} + _parent::WeakRef end function summary__gas_injection_rates__impurity_seeding{T}() where T @@ -25023,8 +25023,8 @@ mutable struct summary__gas_injection_rates__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__hydrogen} + _parent::WeakRef end function summary__gas_injection_rates__hydrogen{T}() where T @@ -25042,8 +25042,8 @@ mutable struct summary__gas_injection_rates__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__helium_4} + _parent::WeakRef end function summary__gas_injection_rates__helium_4{T}() where T @@ -25061,8 +25061,8 @@ mutable struct summary__gas_injection_rates__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__helium_3} + _parent::WeakRef end function summary__gas_injection_rates__helium_3{T}() where T @@ -25080,8 +25080,8 @@ mutable struct summary__gas_injection_rates__ethylene{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__ethylene} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__ethylene} + _parent::WeakRef end function summary__gas_injection_rates__ethylene{T}() where T @@ -25099,8 +25099,8 @@ mutable struct summary__gas_injection_rates__ethane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__ethane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__ethane} + _parent::WeakRef end function summary__gas_injection_rates__ethane{T}() where T @@ -25118,8 +25118,8 @@ mutable struct summary__gas_injection_rates__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__deuterium} + _parent::WeakRef end function summary__gas_injection_rates__deuterium{T}() where T @@ -25137,8 +25137,8 @@ mutable struct summary__gas_injection_rates__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__carbon} + _parent::WeakRef end function summary__gas_injection_rates__carbon{T}() where T @@ -25156,8 +25156,8 @@ mutable struct summary__gas_injection_rates__bottom{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__bottom} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__bottom} + _parent::WeakRef end function summary__gas_injection_rates__bottom{T}() where T @@ -25175,8 +25175,8 @@ mutable struct summary__gas_injection_rates__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__beryllium} + _parent::WeakRef end function summary__gas_injection_rates__beryllium{T}() where T @@ -25194,8 +25194,8 @@ mutable struct summary__gas_injection_rates__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__argon} + _parent::WeakRef end function summary__gas_injection_rates__argon{T}() where T @@ -25213,8 +25213,8 @@ mutable struct summary__gas_injection_rates__ammonia_deuterated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__ammonia_deuterated} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__ammonia_deuterated} + _parent::WeakRef end function summary__gas_injection_rates__ammonia_deuterated{T}() where T @@ -25232,8 +25232,8 @@ mutable struct summary__gas_injection_rates__ammonia{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates__ammonia} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_rates__ammonia} + _parent::WeakRef end function summary__gas_injection_rates__ammonia{T}() where T @@ -25244,40 +25244,40 @@ end summary__gas_injection_rates__ammonia() = summary__gas_injection_rates__ammonia{Float64}() mutable struct summary__gas_injection_rates{T} <: IDS{T} - var"ammonia" :: summary__gas_injection_rates__ammonia{T} - var"ammonia_deuterated" :: summary__gas_injection_rates__ammonia_deuterated{T} - var"argon" :: summary__gas_injection_rates__argon{T} - var"beryllium" :: summary__gas_injection_rates__beryllium{T} - var"bottom" :: summary__gas_injection_rates__bottom{T} - var"carbon" :: summary__gas_injection_rates__carbon{T} - var"deuterium" :: summary__gas_injection_rates__deuterium{T} - var"ethane" :: summary__gas_injection_rates__ethane{T} - var"ethylene" :: summary__gas_injection_rates__ethylene{T} - var"helium_3" :: summary__gas_injection_rates__helium_3{T} - var"helium_4" :: summary__gas_injection_rates__helium_4{T} - var"hydrogen" :: summary__gas_injection_rates__hydrogen{T} - var"impurity_seeding" :: summary__gas_injection_rates__impurity_seeding{T} - var"krypton" :: summary__gas_injection_rates__krypton{T} - var"lithium" :: summary__gas_injection_rates__lithium{T} - var"methane" :: summary__gas_injection_rates__methane{T} - var"methane_carbon_13" :: summary__gas_injection_rates__methane_carbon_13{T} - var"methane_deuterated" :: summary__gas_injection_rates__methane_deuterated{T} - var"midplane" :: summary__gas_injection_rates__midplane{T} - var"neon" :: summary__gas_injection_rates__neon{T} - var"nitrogen" :: summary__gas_injection_rates__nitrogen{T} - var"oxygen" :: summary__gas_injection_rates__oxygen{T} - var"propane" :: summary__gas_injection_rates__propane{T} - var"silane" :: summary__gas_injection_rates__silane{T} - var"top" :: summary__gas_injection_rates__top{T} - var"total" :: summary__gas_injection_rates__total{T} - var"tritium" :: summary__gas_injection_rates__tritium{T} - var"xenon" :: summary__gas_injection_rates__xenon{T} - _filled::Set{Symbol} - _frozen::Bool - _threads_lock::ReentrantLock - _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_rates} - _parent :: WeakRef + var"ammonia"::summary__gas_injection_rates__ammonia{T} + var"ammonia_deuterated"::summary__gas_injection_rates__ammonia_deuterated{T} + var"argon"::summary__gas_injection_rates__argon{T} + var"beryllium"::summary__gas_injection_rates__beryllium{T} + var"bottom"::summary__gas_injection_rates__bottom{T} + var"carbon"::summary__gas_injection_rates__carbon{T} + var"deuterium"::summary__gas_injection_rates__deuterium{T} + var"ethane"::summary__gas_injection_rates__ethane{T} + var"ethylene"::summary__gas_injection_rates__ethylene{T} + var"helium_3"::summary__gas_injection_rates__helium_3{T} + var"helium_4"::summary__gas_injection_rates__helium_4{T} + var"hydrogen"::summary__gas_injection_rates__hydrogen{T} + var"impurity_seeding"::summary__gas_injection_rates__impurity_seeding{T} + var"krypton"::summary__gas_injection_rates__krypton{T} + var"lithium"::summary__gas_injection_rates__lithium{T} + var"methane"::summary__gas_injection_rates__methane{T} + var"methane_carbon_13"::summary__gas_injection_rates__methane_carbon_13{T} + var"methane_deuterated"::summary__gas_injection_rates__methane_deuterated{T} + var"midplane"::summary__gas_injection_rates__midplane{T} + var"neon"::summary__gas_injection_rates__neon{T} + var"nitrogen"::summary__gas_injection_rates__nitrogen{T} + var"oxygen"::summary__gas_injection_rates__oxygen{T} + var"propane"::summary__gas_injection_rates__propane{T} + var"silane"::summary__gas_injection_rates__silane{T} + var"top"::summary__gas_injection_rates__top{T} + var"total"::summary__gas_injection_rates__total{T} + var"tritium"::summary__gas_injection_rates__tritium{T} + var"xenon"::summary__gas_injection_rates__xenon{T} + _filled::Set{Symbol} + _frozen::Bool + _threads_lock::ReentrantLock + _in_expression::Dict{Int,Vector{Symbol}} + _ref::Union{Nothing,summary__gas_injection_rates} + _parent::WeakRef end function summary__gas_injection_rates{T}() where T @@ -25323,8 +25323,8 @@ mutable struct summary__gas_injection_prefill__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__xenon} + _parent::WeakRef end function summary__gas_injection_prefill__xenon{T}() where T @@ -25342,8 +25342,8 @@ mutable struct summary__gas_injection_prefill__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__tritium} + _parent::WeakRef end function summary__gas_injection_prefill__tritium{T}() where T @@ -25361,8 +25361,8 @@ mutable struct summary__gas_injection_prefill__total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__total} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__total} + _parent::WeakRef end function summary__gas_injection_prefill__total{T}() where T @@ -25380,8 +25380,8 @@ mutable struct summary__gas_injection_prefill__top{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__top} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__top} + _parent::WeakRef end function summary__gas_injection_prefill__top{T}() where T @@ -25399,8 +25399,8 @@ mutable struct summary__gas_injection_prefill__silane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__silane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__silane} + _parent::WeakRef end function summary__gas_injection_prefill__silane{T}() where T @@ -25418,8 +25418,8 @@ mutable struct summary__gas_injection_prefill__propane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__propane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__propane} + _parent::WeakRef end function summary__gas_injection_prefill__propane{T}() where T @@ -25437,8 +25437,8 @@ mutable struct summary__gas_injection_prefill__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__oxygen} + _parent::WeakRef end function summary__gas_injection_prefill__oxygen{T}() where T @@ -25456,8 +25456,8 @@ mutable struct summary__gas_injection_prefill__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__nitrogen} + _parent::WeakRef end function summary__gas_injection_prefill__nitrogen{T}() where T @@ -25475,8 +25475,8 @@ mutable struct summary__gas_injection_prefill__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__neon} + _parent::WeakRef end function summary__gas_injection_prefill__neon{T}() where T @@ -25494,8 +25494,8 @@ mutable struct summary__gas_injection_prefill__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__midplane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__midplane} + _parent::WeakRef end function summary__gas_injection_prefill__midplane{T}() where T @@ -25513,8 +25513,8 @@ mutable struct summary__gas_injection_prefill__methane_deuterated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__methane_deuterated} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__methane_deuterated} + _parent::WeakRef end function summary__gas_injection_prefill__methane_deuterated{T}() where T @@ -25532,8 +25532,8 @@ mutable struct summary__gas_injection_prefill__methane_carbon_13{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__methane_carbon_13} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__methane_carbon_13} + _parent::WeakRef end function summary__gas_injection_prefill__methane_carbon_13{T}() where T @@ -25551,8 +25551,8 @@ mutable struct summary__gas_injection_prefill__methane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__methane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__methane} + _parent::WeakRef end function summary__gas_injection_prefill__methane{T}() where T @@ -25570,8 +25570,8 @@ mutable struct summary__gas_injection_prefill__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__lithium} + _parent::WeakRef end function summary__gas_injection_prefill__lithium{T}() where T @@ -25589,8 +25589,8 @@ mutable struct summary__gas_injection_prefill__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__krypton} + _parent::WeakRef end function summary__gas_injection_prefill__krypton{T}() where T @@ -25607,8 +25607,8 @@ mutable struct summary__gas_injection_prefill__impurity_seeding{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__impurity_seeding} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__impurity_seeding} + _parent::WeakRef end function summary__gas_injection_prefill__impurity_seeding{T}() where T @@ -25626,8 +25626,8 @@ mutable struct summary__gas_injection_prefill__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__hydrogen} + _parent::WeakRef end function summary__gas_injection_prefill__hydrogen{T}() where T @@ -25645,8 +25645,8 @@ mutable struct summary__gas_injection_prefill__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__helium_4} + _parent::WeakRef end function summary__gas_injection_prefill__helium_4{T}() where T @@ -25664,8 +25664,8 @@ mutable struct summary__gas_injection_prefill__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__helium_3} + _parent::WeakRef end function summary__gas_injection_prefill__helium_3{T}() where T @@ -25683,8 +25683,8 @@ mutable struct summary__gas_injection_prefill__ethylene{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__ethylene} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__ethylene} + _parent::WeakRef end function summary__gas_injection_prefill__ethylene{T}() where T @@ -25702,8 +25702,8 @@ mutable struct summary__gas_injection_prefill__ethane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__ethane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__ethane} + _parent::WeakRef end function summary__gas_injection_prefill__ethane{T}() where T @@ -25721,8 +25721,8 @@ mutable struct summary__gas_injection_prefill__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__deuterium} + _parent::WeakRef end function summary__gas_injection_prefill__deuterium{T}() where T @@ -25740,8 +25740,8 @@ mutable struct summary__gas_injection_prefill__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__carbon} + _parent::WeakRef end function summary__gas_injection_prefill__carbon{T}() where T @@ -25759,8 +25759,8 @@ mutable struct summary__gas_injection_prefill__bottom{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__bottom} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__bottom} + _parent::WeakRef end function summary__gas_injection_prefill__bottom{T}() where T @@ -25778,8 +25778,8 @@ mutable struct summary__gas_injection_prefill__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__beryllium} + _parent::WeakRef end function summary__gas_injection_prefill__beryllium{T}() where T @@ -25797,8 +25797,8 @@ mutable struct summary__gas_injection_prefill__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__argon} + _parent::WeakRef end function summary__gas_injection_prefill__argon{T}() where T @@ -25816,8 +25816,8 @@ mutable struct summary__gas_injection_prefill__ammonia_deuterated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__ammonia_deuterated} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__ammonia_deuterated} + _parent::WeakRef end function summary__gas_injection_prefill__ammonia_deuterated{T}() where T @@ -25835,8 +25835,8 @@ mutable struct summary__gas_injection_prefill__ammonia{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill__ammonia} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_prefill__ammonia} + _parent::WeakRef end function summary__gas_injection_prefill__ammonia{T}() where T @@ -25847,40 +25847,40 @@ end summary__gas_injection_prefill__ammonia() = summary__gas_injection_prefill__ammonia{Float64}() mutable struct summary__gas_injection_prefill{T} <: IDS{T} - var"ammonia" :: summary__gas_injection_prefill__ammonia{T} - var"ammonia_deuterated" :: summary__gas_injection_prefill__ammonia_deuterated{T} - var"argon" :: summary__gas_injection_prefill__argon{T} - var"beryllium" :: summary__gas_injection_prefill__beryllium{T} - var"bottom" :: summary__gas_injection_prefill__bottom{T} - var"carbon" :: summary__gas_injection_prefill__carbon{T} - var"deuterium" :: summary__gas_injection_prefill__deuterium{T} - var"ethane" :: summary__gas_injection_prefill__ethane{T} - var"ethylene" :: summary__gas_injection_prefill__ethylene{T} - var"helium_3" :: summary__gas_injection_prefill__helium_3{T} - var"helium_4" :: summary__gas_injection_prefill__helium_4{T} - var"hydrogen" :: summary__gas_injection_prefill__hydrogen{T} - var"impurity_seeding" :: summary__gas_injection_prefill__impurity_seeding{T} - var"krypton" :: summary__gas_injection_prefill__krypton{T} - var"lithium" :: summary__gas_injection_prefill__lithium{T} - var"methane" :: summary__gas_injection_prefill__methane{T} - var"methane_carbon_13" :: summary__gas_injection_prefill__methane_carbon_13{T} - var"methane_deuterated" :: summary__gas_injection_prefill__methane_deuterated{T} - var"midplane" :: summary__gas_injection_prefill__midplane{T} - var"neon" :: summary__gas_injection_prefill__neon{T} - var"nitrogen" :: summary__gas_injection_prefill__nitrogen{T} - var"oxygen" :: summary__gas_injection_prefill__oxygen{T} - var"propane" :: summary__gas_injection_prefill__propane{T} - var"silane" :: summary__gas_injection_prefill__silane{T} - var"top" :: summary__gas_injection_prefill__top{T} - var"total" :: summary__gas_injection_prefill__total{T} - var"tritium" :: summary__gas_injection_prefill__tritium{T} - var"xenon" :: summary__gas_injection_prefill__xenon{T} - _filled::Set{Symbol} - _frozen::Bool - _threads_lock::ReentrantLock - _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_prefill} - _parent :: WeakRef + var"ammonia"::summary__gas_injection_prefill__ammonia{T} + var"ammonia_deuterated"::summary__gas_injection_prefill__ammonia_deuterated{T} + var"argon"::summary__gas_injection_prefill__argon{T} + var"beryllium"::summary__gas_injection_prefill__beryllium{T} + var"bottom"::summary__gas_injection_prefill__bottom{T} + var"carbon"::summary__gas_injection_prefill__carbon{T} + var"deuterium"::summary__gas_injection_prefill__deuterium{T} + var"ethane"::summary__gas_injection_prefill__ethane{T} + var"ethylene"::summary__gas_injection_prefill__ethylene{T} + var"helium_3"::summary__gas_injection_prefill__helium_3{T} + var"helium_4"::summary__gas_injection_prefill__helium_4{T} + var"hydrogen"::summary__gas_injection_prefill__hydrogen{T} + var"impurity_seeding"::summary__gas_injection_prefill__impurity_seeding{T} + var"krypton"::summary__gas_injection_prefill__krypton{T} + var"lithium"::summary__gas_injection_prefill__lithium{T} + var"methane"::summary__gas_injection_prefill__methane{T} + var"methane_carbon_13"::summary__gas_injection_prefill__methane_carbon_13{T} + var"methane_deuterated"::summary__gas_injection_prefill__methane_deuterated{T} + var"midplane"::summary__gas_injection_prefill__midplane{T} + var"neon"::summary__gas_injection_prefill__neon{T} + var"nitrogen"::summary__gas_injection_prefill__nitrogen{T} + var"oxygen"::summary__gas_injection_prefill__oxygen{T} + var"propane"::summary__gas_injection_prefill__propane{T} + var"silane"::summary__gas_injection_prefill__silane{T} + var"top"::summary__gas_injection_prefill__top{T} + var"total"::summary__gas_injection_prefill__total{T} + var"tritium"::summary__gas_injection_prefill__tritium{T} + var"xenon"::summary__gas_injection_prefill__xenon{T} + _filled::Set{Symbol} + _frozen::Bool + _threads_lock::ReentrantLock + _in_expression::Dict{Int,Vector{Symbol}} + _ref::Union{Nothing,summary__gas_injection_prefill} + _parent::WeakRef end function summary__gas_injection_prefill{T}() where T @@ -25926,8 +25926,8 @@ mutable struct summary__gas_injection_accumulated__xenon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__xenon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__xenon} + _parent::WeakRef end function summary__gas_injection_accumulated__xenon{T}() where T @@ -25945,8 +25945,8 @@ mutable struct summary__gas_injection_accumulated__tritium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__tritium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__tritium} + _parent::WeakRef end function summary__gas_injection_accumulated__tritium{T}() where T @@ -25964,8 +25964,8 @@ mutable struct summary__gas_injection_accumulated__total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__total} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__total} + _parent::WeakRef end function summary__gas_injection_accumulated__total{T}() where T @@ -25983,8 +25983,8 @@ mutable struct summary__gas_injection_accumulated__top{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__top} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__top} + _parent::WeakRef end function summary__gas_injection_accumulated__top{T}() where T @@ -26002,8 +26002,8 @@ mutable struct summary__gas_injection_accumulated__silane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__silane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__silane} + _parent::WeakRef end function summary__gas_injection_accumulated__silane{T}() where T @@ -26021,8 +26021,8 @@ mutable struct summary__gas_injection_accumulated__propane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__propane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__propane} + _parent::WeakRef end function summary__gas_injection_accumulated__propane{T}() where T @@ -26040,8 +26040,8 @@ mutable struct summary__gas_injection_accumulated__oxygen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__oxygen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__oxygen} + _parent::WeakRef end function summary__gas_injection_accumulated__oxygen{T}() where T @@ -26059,8 +26059,8 @@ mutable struct summary__gas_injection_accumulated__nitrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__nitrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__nitrogen} + _parent::WeakRef end function summary__gas_injection_accumulated__nitrogen{T}() where T @@ -26078,8 +26078,8 @@ mutable struct summary__gas_injection_accumulated__neon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__neon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__neon} + _parent::WeakRef end function summary__gas_injection_accumulated__neon{T}() where T @@ -26097,8 +26097,8 @@ mutable struct summary__gas_injection_accumulated__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__midplane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__midplane} + _parent::WeakRef end function summary__gas_injection_accumulated__midplane{T}() where T @@ -26116,8 +26116,8 @@ mutable struct summary__gas_injection_accumulated__methane_deuterated{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__methane_deuterated} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__methane_deuterated} + _parent::WeakRef end function summary__gas_injection_accumulated__methane_deuterated{T}() where T @@ -26135,8 +26135,8 @@ mutable struct summary__gas_injection_accumulated__methane_carbon_13{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__methane_carbon_13} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__methane_carbon_13} + _parent::WeakRef end function summary__gas_injection_accumulated__methane_carbon_13{T}() where T @@ -26154,8 +26154,8 @@ mutable struct summary__gas_injection_accumulated__methane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__methane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__methane} + _parent::WeakRef end function summary__gas_injection_accumulated__methane{T}() where T @@ -26173,8 +26173,8 @@ mutable struct summary__gas_injection_accumulated__lithium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__lithium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__lithium} + _parent::WeakRef end function summary__gas_injection_accumulated__lithium{T}() where T @@ -26192,8 +26192,8 @@ mutable struct summary__gas_injection_accumulated__krypton{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__krypton} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__krypton} + _parent::WeakRef end function summary__gas_injection_accumulated__krypton{T}() where T @@ -26210,8 +26210,8 @@ mutable struct summary__gas_injection_accumulated__impurity_seeding{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__impurity_seeding} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__impurity_seeding} + _parent::WeakRef end function summary__gas_injection_accumulated__impurity_seeding{T}() where T @@ -26229,8 +26229,8 @@ mutable struct summary__gas_injection_accumulated__hydrogen{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__hydrogen} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__hydrogen} + _parent::WeakRef end function summary__gas_injection_accumulated__hydrogen{T}() where T @@ -26248,8 +26248,8 @@ mutable struct summary__gas_injection_accumulated__helium_4{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__helium_4} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__helium_4} + _parent::WeakRef end function summary__gas_injection_accumulated__helium_4{T}() where T @@ -26267,8 +26267,8 @@ mutable struct summary__gas_injection_accumulated__helium_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__helium_3} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__helium_3} + _parent::WeakRef end function summary__gas_injection_accumulated__helium_3{T}() where T @@ -26286,8 +26286,8 @@ mutable struct summary__gas_injection_accumulated__ethylene{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__ethylene} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__ethylene} + _parent::WeakRef end function summary__gas_injection_accumulated__ethylene{T}() where T @@ -26305,8 +26305,8 @@ mutable struct summary__gas_injection_accumulated__ethane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__ethane} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__ethane} + _parent::WeakRef end function summary__gas_injection_accumulated__ethane{T}() where T @@ -26324,8 +26324,8 @@ mutable struct summary__gas_injection_accumulated__deuterium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__deuterium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__deuterium} + _parent::WeakRef end function summary__gas_injection_accumulated__deuterium{T}() where T @@ -26343,8 +26343,8 @@ mutable struct summary__gas_injection_accumulated__carbon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__carbon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__carbon} + _parent::WeakRef end function summary__gas_injection_accumulated__carbon{T}() where T @@ -26362,8 +26362,8 @@ mutable struct summary__gas_injection_accumulated__bottom{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__bottom} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__bottom} + _parent::WeakRef end function summary__gas_injection_accumulated__bottom{T}() where T @@ -26381,8 +26381,8 @@ mutable struct summary__gas_injection_accumulated__beryllium{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__beryllium} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__beryllium} + _parent::WeakRef end function summary__gas_injection_accumulated__beryllium{T}() where T @@ -26400,8 +26400,8 @@ mutable struct summary__gas_injection_accumulated__argon{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__argon} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__argon} + _parent::WeakRef end function summary__gas_injection_accumulated__argon{T}() where T @@ -26419,8 +26419,8 @@ mutable struct summary__gas_injection_accumulated__ammonia_deuterated{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__ammonia_deuterated} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__ammonia_deuterated} + _parent::WeakRef end function summary__gas_injection_accumulated__ammonia_deuterated{T}() where T @@ -26438,8 +26438,8 @@ mutable struct summary__gas_injection_accumulated__ammonia{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated__ammonia} - _parent :: WeakRef + _ref::Union{Nothing,summary__gas_injection_accumulated__ammonia} + _parent::WeakRef end function summary__gas_injection_accumulated__ammonia{T}() where T @@ -26450,40 +26450,40 @@ end summary__gas_injection_accumulated__ammonia() = summary__gas_injection_accumulated__ammonia{Float64}() mutable struct summary__gas_injection_accumulated{T} <: IDS{T} - var"ammonia" :: summary__gas_injection_accumulated__ammonia{T} - var"ammonia_deuterated" :: summary__gas_injection_accumulated__ammonia_deuterated{T} - var"argon" :: summary__gas_injection_accumulated__argon{T} - var"beryllium" :: summary__gas_injection_accumulated__beryllium{T} - var"bottom" :: summary__gas_injection_accumulated__bottom{T} - var"carbon" :: summary__gas_injection_accumulated__carbon{T} - var"deuterium" :: summary__gas_injection_accumulated__deuterium{T} - var"ethane" :: summary__gas_injection_accumulated__ethane{T} - var"ethylene" :: summary__gas_injection_accumulated__ethylene{T} - var"helium_3" :: summary__gas_injection_accumulated__helium_3{T} - var"helium_4" :: summary__gas_injection_accumulated__helium_4{T} - var"hydrogen" :: summary__gas_injection_accumulated__hydrogen{T} - var"impurity_seeding" :: summary__gas_injection_accumulated__impurity_seeding{T} - var"krypton" :: summary__gas_injection_accumulated__krypton{T} - var"lithium" :: summary__gas_injection_accumulated__lithium{T} - var"methane" :: summary__gas_injection_accumulated__methane{T} - var"methane_carbon_13" :: summary__gas_injection_accumulated__methane_carbon_13{T} - var"methane_deuterated" :: summary__gas_injection_accumulated__methane_deuterated{T} - var"midplane" :: summary__gas_injection_accumulated__midplane{T} - var"neon" :: summary__gas_injection_accumulated__neon{T} - var"nitrogen" :: summary__gas_injection_accumulated__nitrogen{T} - var"oxygen" :: summary__gas_injection_accumulated__oxygen{T} - var"propane" :: summary__gas_injection_accumulated__propane{T} - var"silane" :: summary__gas_injection_accumulated__silane{T} - var"top" :: summary__gas_injection_accumulated__top{T} - var"total" :: summary__gas_injection_accumulated__total{T} - var"tritium" :: summary__gas_injection_accumulated__tritium{T} - var"xenon" :: summary__gas_injection_accumulated__xenon{T} - _filled::Set{Symbol} - _frozen::Bool - _threads_lock::ReentrantLock - _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__gas_injection_accumulated} - _parent :: WeakRef + var"ammonia"::summary__gas_injection_accumulated__ammonia{T} + var"ammonia_deuterated"::summary__gas_injection_accumulated__ammonia_deuterated{T} + var"argon"::summary__gas_injection_accumulated__argon{T} + var"beryllium"::summary__gas_injection_accumulated__beryllium{T} + var"bottom"::summary__gas_injection_accumulated__bottom{T} + var"carbon"::summary__gas_injection_accumulated__carbon{T} + var"deuterium"::summary__gas_injection_accumulated__deuterium{T} + var"ethane"::summary__gas_injection_accumulated__ethane{T} + var"ethylene"::summary__gas_injection_accumulated__ethylene{T} + var"helium_3"::summary__gas_injection_accumulated__helium_3{T} + var"helium_4"::summary__gas_injection_accumulated__helium_4{T} + var"hydrogen"::summary__gas_injection_accumulated__hydrogen{T} + var"impurity_seeding"::summary__gas_injection_accumulated__impurity_seeding{T} + var"krypton"::summary__gas_injection_accumulated__krypton{T} + var"lithium"::summary__gas_injection_accumulated__lithium{T} + var"methane"::summary__gas_injection_accumulated__methane{T} + var"methane_carbon_13"::summary__gas_injection_accumulated__methane_carbon_13{T} + var"methane_deuterated"::summary__gas_injection_accumulated__methane_deuterated{T} + var"midplane"::summary__gas_injection_accumulated__midplane{T} + var"neon"::summary__gas_injection_accumulated__neon{T} + var"nitrogen"::summary__gas_injection_accumulated__nitrogen{T} + var"oxygen"::summary__gas_injection_accumulated__oxygen{T} + var"propane"::summary__gas_injection_accumulated__propane{T} + var"silane"::summary__gas_injection_accumulated__silane{T} + var"top"::summary__gas_injection_accumulated__top{T} + var"total"::summary__gas_injection_accumulated__total{T} + var"tritium"::summary__gas_injection_accumulated__tritium{T} + var"xenon"::summary__gas_injection_accumulated__xenon{T} + _filled::Set{Symbol} + _frozen::Bool + _threads_lock::ReentrantLock + _in_expression::Dict{Int,Vector{Symbol}} + _ref::Union{Nothing,summary__gas_injection_accumulated} + _parent::WeakRef end function summary__gas_injection_accumulated{T}() where T @@ -26529,8 +26529,8 @@ mutable struct summary__fusion__power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__power} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__power} + _parent::WeakRef end function summary__fusion__power{T}() where T @@ -26548,8 +26548,8 @@ mutable struct summary__fusion__neutron_rates__tt__total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__tt__total} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__tt__total} + _parent::WeakRef end function summary__fusion__neutron_rates__tt__total{T}() where T @@ -26567,8 +26567,8 @@ mutable struct summary__fusion__neutron_rates__tt__thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__tt__thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__tt__thermal} + _parent::WeakRef end function summary__fusion__neutron_rates__tt__thermal{T}() where T @@ -26586,8 +26586,8 @@ mutable struct summary__fusion__neutron_rates__tt__beam_thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__tt__beam_thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__tt__beam_thermal} + _parent::WeakRef end function summary__fusion__neutron_rates__tt__beam_thermal{T}() where T @@ -26605,8 +26605,8 @@ mutable struct summary__fusion__neutron_rates__tt__beam_beam{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__tt__beam_beam} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__tt__beam_beam} + _parent::WeakRef end function summary__fusion__neutron_rates__tt__beam_beam{T}() where T @@ -26617,16 +26617,16 @@ end summary__fusion__neutron_rates__tt__beam_beam() = summary__fusion__neutron_rates__tt__beam_beam{Float64}() mutable struct summary__fusion__neutron_rates__tt{T} <: IDS{T} - var"beam_beam" :: summary__fusion__neutron_rates__tt__beam_beam{T} - var"beam_thermal" :: summary__fusion__neutron_rates__tt__beam_thermal{T} - var"thermal" :: summary__fusion__neutron_rates__tt__thermal{T} - var"total" :: summary__fusion__neutron_rates__tt__total{T} + var"beam_beam"::summary__fusion__neutron_rates__tt__beam_beam{T} + var"beam_thermal"::summary__fusion__neutron_rates__tt__beam_thermal{T} + var"thermal"::summary__fusion__neutron_rates__tt__thermal{T} + var"total"::summary__fusion__neutron_rates__tt__total{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__tt} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__tt} + _parent::WeakRef end function summary__fusion__neutron_rates__tt{T}() where T @@ -26648,8 +26648,8 @@ mutable struct summary__fusion__neutron_rates__total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__total} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__total} + _parent::WeakRef end function summary__fusion__neutron_rates__total{T}() where T @@ -26667,8 +26667,8 @@ mutable struct summary__fusion__neutron_rates__thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__thermal} + _parent::WeakRef end function summary__fusion__neutron_rates__thermal{T}() where T @@ -26686,8 +26686,8 @@ mutable struct summary__fusion__neutron_rates__dt__total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dt__total} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dt__total} + _parent::WeakRef end function summary__fusion__neutron_rates__dt__total{T}() where T @@ -26705,8 +26705,8 @@ mutable struct summary__fusion__neutron_rates__dt__thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dt__thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dt__thermal} + _parent::WeakRef end function summary__fusion__neutron_rates__dt__thermal{T}() where T @@ -26724,8 +26724,8 @@ mutable struct summary__fusion__neutron_rates__dt__beam_thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dt__beam_thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dt__beam_thermal} + _parent::WeakRef end function summary__fusion__neutron_rates__dt__beam_thermal{T}() where T @@ -26743,8 +26743,8 @@ mutable struct summary__fusion__neutron_rates__dt__beam_beam{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dt__beam_beam} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dt__beam_beam} + _parent::WeakRef end function summary__fusion__neutron_rates__dt__beam_beam{T}() where T @@ -26755,16 +26755,16 @@ end summary__fusion__neutron_rates__dt__beam_beam() = summary__fusion__neutron_rates__dt__beam_beam{Float64}() mutable struct summary__fusion__neutron_rates__dt{T} <: IDS{T} - var"beam_beam" :: summary__fusion__neutron_rates__dt__beam_beam{T} - var"beam_thermal" :: summary__fusion__neutron_rates__dt__beam_thermal{T} - var"thermal" :: summary__fusion__neutron_rates__dt__thermal{T} - var"total" :: summary__fusion__neutron_rates__dt__total{T} + var"beam_beam"::summary__fusion__neutron_rates__dt__beam_beam{T} + var"beam_thermal"::summary__fusion__neutron_rates__dt__beam_thermal{T} + var"thermal"::summary__fusion__neutron_rates__dt__thermal{T} + var"total"::summary__fusion__neutron_rates__dt__total{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dt} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dt} + _parent::WeakRef end function summary__fusion__neutron_rates__dt{T}() where T @@ -26786,8 +26786,8 @@ mutable struct summary__fusion__neutron_rates__dd__total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dd__total} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dd__total} + _parent::WeakRef end function summary__fusion__neutron_rates__dd__total{T}() where T @@ -26805,8 +26805,8 @@ mutable struct summary__fusion__neutron_rates__dd__thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dd__thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dd__thermal} + _parent::WeakRef end function summary__fusion__neutron_rates__dd__thermal{T}() where T @@ -26824,8 +26824,8 @@ mutable struct summary__fusion__neutron_rates__dd__beam_thermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dd__beam_thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dd__beam_thermal} + _parent::WeakRef end function summary__fusion__neutron_rates__dd__beam_thermal{T}() where T @@ -26843,8 +26843,8 @@ mutable struct summary__fusion__neutron_rates__dd__beam_beam{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dd__beam_beam} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dd__beam_beam} + _parent::WeakRef end function summary__fusion__neutron_rates__dd__beam_beam{T}() where T @@ -26855,16 +26855,16 @@ end summary__fusion__neutron_rates__dd__beam_beam() = summary__fusion__neutron_rates__dd__beam_beam{Float64}() mutable struct summary__fusion__neutron_rates__dd{T} <: IDS{T} - var"beam_beam" :: summary__fusion__neutron_rates__dd__beam_beam{T} - var"beam_thermal" :: summary__fusion__neutron_rates__dd__beam_thermal{T} - var"thermal" :: summary__fusion__neutron_rates__dd__thermal{T} - var"total" :: summary__fusion__neutron_rates__dd__total{T} + var"beam_beam"::summary__fusion__neutron_rates__dd__beam_beam{T} + var"beam_thermal"::summary__fusion__neutron_rates__dd__beam_thermal{T} + var"thermal"::summary__fusion__neutron_rates__dd__thermal{T} + var"total"::summary__fusion__neutron_rates__dd__total{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates__dd} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates__dd} + _parent::WeakRef end function summary__fusion__neutron_rates__dd{T}() where T @@ -26879,17 +26879,17 @@ end summary__fusion__neutron_rates__dd() = summary__fusion__neutron_rates__dd{Float64}() mutable struct summary__fusion__neutron_rates{T} <: IDS{T} - var"dd" :: summary__fusion__neutron_rates__dd{T} - var"dt" :: summary__fusion__neutron_rates__dt{T} - var"thermal" :: summary__fusion__neutron_rates__thermal{T} - var"total" :: summary__fusion__neutron_rates__total{T} - var"tt" :: summary__fusion__neutron_rates__tt{T} + var"dd"::summary__fusion__neutron_rates__dd{T} + var"dt"::summary__fusion__neutron_rates__dt{T} + var"thermal"::summary__fusion__neutron_rates__thermal{T} + var"total"::summary__fusion__neutron_rates__total{T} + var"tt"::summary__fusion__neutron_rates__tt{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_rates} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_rates} + _parent::WeakRef end function summary__fusion__neutron_rates{T}() where T @@ -26912,8 +26912,8 @@ mutable struct summary__fusion__neutron_power_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__neutron_power_total} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__neutron_power_total} + _parent::WeakRef end function summary__fusion__neutron_power_total{T}() where T @@ -26931,8 +26931,8 @@ mutable struct summary__fusion__current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion__current} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion__current} + _parent::WeakRef end function summary__fusion__current{T}() where T @@ -26943,16 +26943,16 @@ end summary__fusion__current() = summary__fusion__current{Float64}() mutable struct summary__fusion{T} <: IDS{T} - var"current" :: summary__fusion__current{T} - var"neutron_power_total" :: summary__fusion__neutron_power_total{T} - var"neutron_rates" :: summary__fusion__neutron_rates{T} - var"power" :: summary__fusion__power{T} + var"current"::summary__fusion__current{T} + var"neutron_power_total"::summary__fusion__neutron_power_total{T} + var"neutron_rates"::summary__fusion__neutron_rates{T} + var"power"::summary__fusion__power{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__fusion} - _parent :: WeakRef + _ref::Union{Nothing,summary__fusion} + _parent::WeakRef end function summary__fusion{T}() where T @@ -26973,8 +26973,8 @@ mutable struct summary__elms__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__elms__type} - _parent :: WeakRef + _ref::Union{Nothing,summary__elms__type} + _parent::WeakRef end function summary__elms__type{T}() where T @@ -26992,8 +26992,8 @@ mutable struct summary__elms__frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__elms__frequency} - _parent :: WeakRef + _ref::Union{Nothing,summary__elms__frequency} + _parent::WeakRef end function summary__elms__frequency{T}() where T @@ -27004,14 +27004,14 @@ end summary__elms__frequency() = summary__elms__frequency{Float64}() mutable struct summary__elms{T} <: IDS{T} - var"frequency" :: summary__elms__frequency{T} - var"type" :: summary__elms__type{T} + var"frequency"::summary__elms__frequency{T} + var"type"::summary__elms__type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__elms} - _parent :: WeakRef + _ref::Union{Nothing,summary__elms} + _parent::WeakRef end function summary__elms{T}() where T @@ -27030,8 +27030,8 @@ mutable struct summary__disruption__vertical_displacement{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__vertical_displacement} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__vertical_displacement} + _parent::WeakRef end function summary__disruption__vertical_displacement{T}() where T @@ -27049,8 +27049,8 @@ mutable struct summary__disruption__time_radiated_power_max{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__time_radiated_power_max} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__time_radiated_power_max} + _parent::WeakRef end function summary__disruption__time_radiated_power_max{T}() where T @@ -27068,8 +27068,8 @@ mutable struct summary__disruption__time_half_ip{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__time_half_ip} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__time_half_ip} + _parent::WeakRef end function summary__disruption__time_half_ip{T}() where T @@ -27087,8 +27087,8 @@ mutable struct summary__disruption__time{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__time} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__time} + _parent::WeakRef end function summary__disruption__time{T}() where T @@ -27105,8 +27105,8 @@ mutable struct summary__disruption__mitigation_valve{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__mitigation_valve} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__mitigation_valve} + _parent::WeakRef end function summary__disruption__mitigation_valve{T}() where T @@ -27124,8 +27124,8 @@ mutable struct summary__disruption__decay_times__t_e_volume_average__linear_cust _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_volume_average__linear_custom__decay_time} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_volume_average__linear_custom__decay_time} + _parent::WeakRef end function summary__disruption__decay_times__t_e_volume_average__linear_custom__decay_time{T}() where T @@ -27136,7 +27136,7 @@ end summary__disruption__decay_times__t_e_volume_average__linear_custom__decay_time() = summary__disruption__decay_times__t_e_volume_average__linear_custom__decay_time{Float64}() mutable struct summary__disruption__decay_times__t_e_volume_average__linear_custom{T} <: IDS{T} - var"decay_time" :: summary__disruption__decay_times__t_e_volume_average__linear_custom__decay_time{T} + var"decay_time"::summary__disruption__decay_times__t_e_volume_average__linear_custom__decay_time{T} var"x1" :: T var"x1_σ" :: T var"x2" :: T @@ -27145,8 +27145,8 @@ mutable struct summary__disruption__decay_times__t_e_volume_average__linear_cust _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_volume_average__linear_custom} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_volume_average__linear_custom} + _parent::WeakRef end function summary__disruption__decay_times__t_e_volume_average__linear_custom{T}() where T @@ -27165,8 +27165,8 @@ mutable struct summary__disruption__decay_times__t_e_volume_average__linear_20_8 _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_volume_average__linear_20_80} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_volume_average__linear_20_80} + _parent::WeakRef end function summary__disruption__decay_times__t_e_volume_average__linear_20_80{T}() where T @@ -27184,8 +27184,8 @@ mutable struct summary__disruption__decay_times__t_e_volume_average__exponential _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_volume_average__exponential} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_volume_average__exponential} + _parent::WeakRef end function summary__disruption__decay_times__t_e_volume_average__exponential{T}() where T @@ -27196,15 +27196,15 @@ end summary__disruption__decay_times__t_e_volume_average__exponential() = summary__disruption__decay_times__t_e_volume_average__exponential{Float64}() mutable struct summary__disruption__decay_times__t_e_volume_average{T} <: IDS{T} - var"exponential" :: summary__disruption__decay_times__t_e_volume_average__exponential{T} - var"linear_20_80" :: summary__disruption__decay_times__t_e_volume_average__linear_20_80{T} - var"linear_custom" :: summary__disruption__decay_times__t_e_volume_average__linear_custom{T} + var"exponential"::summary__disruption__decay_times__t_e_volume_average__exponential{T} + var"linear_20_80"::summary__disruption__decay_times__t_e_volume_average__linear_20_80{T} + var"linear_custom"::summary__disruption__decay_times__t_e_volume_average__linear_custom{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_volume_average} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_volume_average} + _parent::WeakRef end function summary__disruption__decay_times__t_e_volume_average{T}() where T @@ -27225,8 +27225,8 @@ mutable struct summary__disruption__decay_times__t_e_magnetic_axis__linear_custo _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis__linear_custom__decay_time} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis__linear_custom__decay_time} + _parent::WeakRef end function summary__disruption__decay_times__t_e_magnetic_axis__linear_custom__decay_time{T}() where T @@ -27237,7 +27237,7 @@ end summary__disruption__decay_times__t_e_magnetic_axis__linear_custom__decay_time() = summary__disruption__decay_times__t_e_magnetic_axis__linear_custom__decay_time{Float64}() mutable struct summary__disruption__decay_times__t_e_magnetic_axis__linear_custom{T} <: IDS{T} - var"decay_time" :: summary__disruption__decay_times__t_e_magnetic_axis__linear_custom__decay_time{T} + var"decay_time"::summary__disruption__decay_times__t_e_magnetic_axis__linear_custom__decay_time{T} var"x1" :: T var"x1_σ" :: T var"x2" :: T @@ -27246,8 +27246,8 @@ mutable struct summary__disruption__decay_times__t_e_magnetic_axis__linear_custo _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis__linear_custom} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis__linear_custom} + _parent::WeakRef end function summary__disruption__decay_times__t_e_magnetic_axis__linear_custom{T}() where T @@ -27266,8 +27266,8 @@ mutable struct summary__disruption__decay_times__t_e_magnetic_axis__linear_20_80 _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis__linear_20_80} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis__linear_20_80} + _parent::WeakRef end function summary__disruption__decay_times__t_e_magnetic_axis__linear_20_80{T}() where T @@ -27285,8 +27285,8 @@ mutable struct summary__disruption__decay_times__t_e_magnetic_axis__exponential{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis__exponential} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis__exponential} + _parent::WeakRef end function summary__disruption__decay_times__t_e_magnetic_axis__exponential{T}() where T @@ -27297,15 +27297,15 @@ end summary__disruption__decay_times__t_e_magnetic_axis__exponential() = summary__disruption__decay_times__t_e_magnetic_axis__exponential{Float64}() mutable struct summary__disruption__decay_times__t_e_magnetic_axis{T} <: IDS{T} - var"exponential" :: summary__disruption__decay_times__t_e_magnetic_axis__exponential{T} - var"linear_20_80" :: summary__disruption__decay_times__t_e_magnetic_axis__linear_20_80{T} - var"linear_custom" :: summary__disruption__decay_times__t_e_magnetic_axis__linear_custom{T} + var"exponential"::summary__disruption__decay_times__t_e_magnetic_axis__exponential{T} + var"linear_20_80"::summary__disruption__decay_times__t_e_magnetic_axis__linear_20_80{T} + var"linear_custom"::summary__disruption__decay_times__t_e_magnetic_axis__linear_custom{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__t_e_magnetic_axis} + _parent::WeakRef end function summary__disruption__decay_times__t_e_magnetic_axis{T}() where T @@ -27326,8 +27326,8 @@ mutable struct summary__disruption__decay_times__ip__linear_custom__decay_time{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__ip__linear_custom__decay_time} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__ip__linear_custom__decay_time} + _parent::WeakRef end function summary__disruption__decay_times__ip__linear_custom__decay_time{T}() where T @@ -27338,7 +27338,7 @@ end summary__disruption__decay_times__ip__linear_custom__decay_time() = summary__disruption__decay_times__ip__linear_custom__decay_time{Float64}() mutable struct summary__disruption__decay_times__ip__linear_custom{T} <: IDS{T} - var"decay_time" :: summary__disruption__decay_times__ip__linear_custom__decay_time{T} + var"decay_time"::summary__disruption__decay_times__ip__linear_custom__decay_time{T} var"x1" :: T var"x1_σ" :: T var"x2" :: T @@ -27347,8 +27347,8 @@ mutable struct summary__disruption__decay_times__ip__linear_custom{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__ip__linear_custom} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__ip__linear_custom} + _parent::WeakRef end function summary__disruption__decay_times__ip__linear_custom{T}() where T @@ -27367,8 +27367,8 @@ mutable struct summary__disruption__decay_times__ip__linear_20_80{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__ip__linear_20_80} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__ip__linear_20_80} + _parent::WeakRef end function summary__disruption__decay_times__ip__linear_20_80{T}() where T @@ -27386,8 +27386,8 @@ mutable struct summary__disruption__decay_times__ip__exponential{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__ip__exponential} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__ip__exponential} + _parent::WeakRef end function summary__disruption__decay_times__ip__exponential{T}() where T @@ -27398,15 +27398,15 @@ end summary__disruption__decay_times__ip__exponential() = summary__disruption__decay_times__ip__exponential{Float64}() mutable struct summary__disruption__decay_times__ip{T} <: IDS{T} - var"exponential" :: summary__disruption__decay_times__ip__exponential{T} - var"linear_20_80" :: summary__disruption__decay_times__ip__linear_20_80{T} - var"linear_custom" :: summary__disruption__decay_times__ip__linear_custom{T} + var"exponential"::summary__disruption__decay_times__ip__exponential{T} + var"linear_20_80"::summary__disruption__decay_times__ip__linear_20_80{T} + var"linear_custom"::summary__disruption__decay_times__ip__linear_custom{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__ip} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__ip} + _parent::WeakRef end function summary__disruption__decay_times__ip{T}() where T @@ -27427,8 +27427,8 @@ mutable struct summary__disruption__decay_times__energy_thermal__linear_custom__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__energy_thermal__linear_custom__decay_time} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__energy_thermal__linear_custom__decay_time} + _parent::WeakRef end function summary__disruption__decay_times__energy_thermal__linear_custom__decay_time{T}() where T @@ -27439,7 +27439,7 @@ end summary__disruption__decay_times__energy_thermal__linear_custom__decay_time() = summary__disruption__decay_times__energy_thermal__linear_custom__decay_time{Float64}() mutable struct summary__disruption__decay_times__energy_thermal__linear_custom{T} <: IDS{T} - var"decay_time" :: summary__disruption__decay_times__energy_thermal__linear_custom__decay_time{T} + var"decay_time"::summary__disruption__decay_times__energy_thermal__linear_custom__decay_time{T} var"x1" :: T var"x1_σ" :: T var"x2" :: T @@ -27448,8 +27448,8 @@ mutable struct summary__disruption__decay_times__energy_thermal__linear_custom{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__energy_thermal__linear_custom} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__energy_thermal__linear_custom} + _parent::WeakRef end function summary__disruption__decay_times__energy_thermal__linear_custom{T}() where T @@ -27468,8 +27468,8 @@ mutable struct summary__disruption__decay_times__energy_thermal__linear_20_80{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__energy_thermal__linear_20_80} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__energy_thermal__linear_20_80} + _parent::WeakRef end function summary__disruption__decay_times__energy_thermal__linear_20_80{T}() where T @@ -27487,8 +27487,8 @@ mutable struct summary__disruption__decay_times__energy_thermal__exponential{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__energy_thermal__exponential} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__energy_thermal__exponential} + _parent::WeakRef end function summary__disruption__decay_times__energy_thermal__exponential{T}() where T @@ -27499,15 +27499,15 @@ end summary__disruption__decay_times__energy_thermal__exponential() = summary__disruption__decay_times__energy_thermal__exponential{Float64}() mutable struct summary__disruption__decay_times__energy_thermal{T} <: IDS{T} - var"exponential" :: summary__disruption__decay_times__energy_thermal__exponential{T} - var"linear_20_80" :: summary__disruption__decay_times__energy_thermal__linear_20_80{T} - var"linear_custom" :: summary__disruption__decay_times__energy_thermal__linear_custom{T} + var"exponential"::summary__disruption__decay_times__energy_thermal__exponential{T} + var"linear_20_80"::summary__disruption__decay_times__energy_thermal__linear_20_80{T} + var"linear_custom"::summary__disruption__decay_times__energy_thermal__linear_custom{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__energy_thermal} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__energy_thermal} + _parent::WeakRef end function summary__disruption__decay_times__energy_thermal{T}() where T @@ -27528,8 +27528,8 @@ mutable struct summary__disruption__decay_times__current_runaways__linear_custom _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__current_runaways__linear_custom__decay_time} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__current_runaways__linear_custom__decay_time} + _parent::WeakRef end function summary__disruption__decay_times__current_runaways__linear_custom__decay_time{T}() where T @@ -27540,7 +27540,7 @@ end summary__disruption__decay_times__current_runaways__linear_custom__decay_time() = summary__disruption__decay_times__current_runaways__linear_custom__decay_time{Float64}() mutable struct summary__disruption__decay_times__current_runaways__linear_custom{T} <: IDS{T} - var"decay_time" :: summary__disruption__decay_times__current_runaways__linear_custom__decay_time{T} + var"decay_time"::summary__disruption__decay_times__current_runaways__linear_custom__decay_time{T} var"x1" :: T var"x1_σ" :: T var"x2" :: T @@ -27549,8 +27549,8 @@ mutable struct summary__disruption__decay_times__current_runaways__linear_custom _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__current_runaways__linear_custom} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__current_runaways__linear_custom} + _parent::WeakRef end function summary__disruption__decay_times__current_runaways__linear_custom{T}() where T @@ -27569,8 +27569,8 @@ mutable struct summary__disruption__decay_times__current_runaways__linear_20_80{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__current_runaways__linear_20_80} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__current_runaways__linear_20_80} + _parent::WeakRef end function summary__disruption__decay_times__current_runaways__linear_20_80{T}() where T @@ -27588,8 +27588,8 @@ mutable struct summary__disruption__decay_times__current_runaways__exponential{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__current_runaways__exponential} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__current_runaways__exponential} + _parent::WeakRef end function summary__disruption__decay_times__current_runaways__exponential{T}() where T @@ -27600,15 +27600,15 @@ end summary__disruption__decay_times__current_runaways__exponential() = summary__disruption__decay_times__current_runaways__exponential{Float64}() mutable struct summary__disruption__decay_times__current_runaways{T} <: IDS{T} - var"exponential" :: summary__disruption__decay_times__current_runaways__exponential{T} - var"linear_20_80" :: summary__disruption__decay_times__current_runaways__linear_20_80{T} - var"linear_custom" :: summary__disruption__decay_times__current_runaways__linear_custom{T} + var"exponential"::summary__disruption__decay_times__current_runaways__exponential{T} + var"linear_20_80"::summary__disruption__decay_times__current_runaways__linear_20_80{T} + var"linear_custom"::summary__disruption__decay_times__current_runaways__linear_custom{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times__current_runaways} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times__current_runaways} + _parent::WeakRef end function summary__disruption__decay_times__current_runaways{T}() where T @@ -27622,17 +27622,17 @@ end summary__disruption__decay_times__current_runaways() = summary__disruption__decay_times__current_runaways{Float64}() mutable struct summary__disruption__decay_times{T} <: IDS{T} - var"current_runaways" :: summary__disruption__decay_times__current_runaways{T} - var"energy_thermal" :: summary__disruption__decay_times__energy_thermal{T} - var"ip" :: summary__disruption__decay_times__ip{T} - var"t_e_magnetic_axis" :: summary__disruption__decay_times__t_e_magnetic_axis{T} - var"t_e_volume_average" :: summary__disruption__decay_times__t_e_volume_average{T} + var"current_runaways"::summary__disruption__decay_times__current_runaways{T} + var"energy_thermal"::summary__disruption__decay_times__energy_thermal{T} + var"ip"::summary__disruption__decay_times__ip{T} + var"t_e_magnetic_axis"::summary__disruption__decay_times__t_e_magnetic_axis{T} + var"t_e_volume_average"::summary__disruption__decay_times__t_e_volume_average{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption__decay_times} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption__decay_times} + _parent::WeakRef end function summary__disruption__decay_times{T}() where T @@ -27648,18 +27648,18 @@ end summary__disruption__decay_times() = summary__disruption__decay_times{Float64}() mutable struct summary__disruption{T} <: IDS{T} - var"decay_times" :: summary__disruption__decay_times{T} - var"mitigation_valve" :: summary__disruption__mitigation_valve{T} - var"time" :: summary__disruption__time{T} - var"time_half_ip" :: summary__disruption__time_half_ip{T} - var"time_radiated_power_max" :: summary__disruption__time_radiated_power_max{T} - var"vertical_displacement" :: summary__disruption__vertical_displacement{T} + var"decay_times"::summary__disruption__decay_times{T} + var"mitigation_valve"::summary__disruption__mitigation_valve{T} + var"time"::summary__disruption__time{T} + var"time_half_ip"::summary__disruption__time_half_ip{T} + var"time_radiated_power_max"::summary__disruption__time_radiated_power_max{T} + var"vertical_displacement"::summary__disruption__vertical_displacement{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__disruption} - _parent :: WeakRef + _ref::Union{Nothing,summary__disruption} + _parent::WeakRef end function summary__disruption{T}() where T @@ -27682,8 +27682,8 @@ mutable struct summary__configuration{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__configuration} - _parent :: WeakRef + _ref::Union{Nothing,summary__configuration} + _parent::WeakRef end function summary__configuration{T}() where T @@ -27704,8 +27704,8 @@ mutable struct summary__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__code__library} - _parent :: WeakRef + _ref::Union{Nothing,summary__code__library} + _parent::WeakRef end function summary__code__library{T}() where T @@ -27718,7 +27718,7 @@ summary__code__library() = summary__code__library{Float64}() mutable struct summary__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{summary__code__library{T}} + var"library"::IDSvector{summary__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -27728,8 +27728,8 @@ mutable struct summary__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__code} - _parent :: WeakRef + _ref::Union{Nothing,summary__code} + _parent::WeakRef end function summary__code{T}() where T @@ -27750,8 +27750,8 @@ mutable struct summary__boundary__x_point_main{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__x_point_main} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__x_point_main} + _parent::WeakRef end function summary__boundary__x_point_main{T}() where T @@ -27768,8 +27768,8 @@ mutable struct summary__boundary__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__type} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__type} + _parent::WeakRef end function summary__boundary__type{T}() where T @@ -27787,8 +27787,8 @@ mutable struct summary__boundary__triangularity_upper{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__triangularity_upper} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__triangularity_upper} + _parent::WeakRef end function summary__boundary__triangularity_upper{T}() where T @@ -27806,8 +27806,8 @@ mutable struct summary__boundary__triangularity_lower{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__triangularity_lower} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__triangularity_lower} + _parent::WeakRef end function summary__boundary__triangularity_lower{T}() where T @@ -27825,8 +27825,8 @@ mutable struct summary__boundary__strike_point_outer_z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__strike_point_outer_z} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__strike_point_outer_z} + _parent::WeakRef end function summary__boundary__strike_point_outer_z{T}() where T @@ -27844,8 +27844,8 @@ mutable struct summary__boundary__strike_point_outer_r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__strike_point_outer_r} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__strike_point_outer_r} + _parent::WeakRef end function summary__boundary__strike_point_outer_r{T}() where T @@ -27863,8 +27863,8 @@ mutable struct summary__boundary__strike_point_inner_z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__strike_point_inner_z} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__strike_point_inner_z} + _parent::WeakRef end function summary__boundary__strike_point_inner_z{T}() where T @@ -27882,8 +27882,8 @@ mutable struct summary__boundary__strike_point_inner_r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__strike_point_inner_r} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__strike_point_inner_r} + _parent::WeakRef end function summary__boundary__strike_point_inner_r{T}() where T @@ -27900,8 +27900,8 @@ mutable struct summary__boundary__strike_point_configuration{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__strike_point_configuration} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__strike_point_configuration} + _parent::WeakRef end function summary__boundary__strike_point_configuration{T}() where T @@ -27919,8 +27919,8 @@ mutable struct summary__boundary__minor_radius{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__minor_radius} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__minor_radius} + _parent::WeakRef end function summary__boundary__minor_radius{T}() where T @@ -27938,8 +27938,8 @@ mutable struct summary__boundary__magnetic_axis_z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__magnetic_axis_z} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__magnetic_axis_z} + _parent::WeakRef end function summary__boundary__magnetic_axis_z{T}() where T @@ -27957,8 +27957,8 @@ mutable struct summary__boundary__magnetic_axis_r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__magnetic_axis_r} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__magnetic_axis_r} + _parent::WeakRef end function summary__boundary__magnetic_axis_r{T}() where T @@ -27976,8 +27976,8 @@ mutable struct summary__boundary__geometric_axis_z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__geometric_axis_z} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__geometric_axis_z} + _parent::WeakRef end function summary__boundary__geometric_axis_z{T}() where T @@ -27995,8 +27995,8 @@ mutable struct summary__boundary__geometric_axis_r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__geometric_axis_r} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__geometric_axis_r} + _parent::WeakRef end function summary__boundary__geometric_axis_r{T}() where T @@ -28014,8 +28014,8 @@ mutable struct summary__boundary__gap_limiter_wall{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__gap_limiter_wall} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__gap_limiter_wall} + _parent::WeakRef end function summary__boundary__gap_limiter_wall{T}() where T @@ -28033,8 +28033,8 @@ mutable struct summary__boundary__elongation{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__elongation} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__elongation} + _parent::WeakRef end function summary__boundary__elongation{T}() where T @@ -28052,8 +28052,8 @@ mutable struct summary__boundary__distance_inner_outer_separatrices{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary__distance_inner_outer_separatrices} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary__distance_inner_outer_separatrices} + _parent::WeakRef end function summary__boundary__distance_inner_outer_separatrices{T}() where T @@ -28064,29 +28064,29 @@ end summary__boundary__distance_inner_outer_separatrices() = summary__boundary__distance_inner_outer_separatrices{Float64}() mutable struct summary__boundary{T} <: IDS{T} - var"distance_inner_outer_separatrices" :: summary__boundary__distance_inner_outer_separatrices{T} - var"elongation" :: summary__boundary__elongation{T} - var"gap_limiter_wall" :: summary__boundary__gap_limiter_wall{T} - var"geometric_axis_r" :: summary__boundary__geometric_axis_r{T} - var"geometric_axis_z" :: summary__boundary__geometric_axis_z{T} - var"magnetic_axis_r" :: summary__boundary__magnetic_axis_r{T} - var"magnetic_axis_z" :: summary__boundary__magnetic_axis_z{T} - var"minor_radius" :: summary__boundary__minor_radius{T} - var"strike_point_configuration" :: summary__boundary__strike_point_configuration{T} - var"strike_point_inner_r" :: summary__boundary__strike_point_inner_r{T} - var"strike_point_inner_z" :: summary__boundary__strike_point_inner_z{T} - var"strike_point_outer_r" :: summary__boundary__strike_point_outer_r{T} - var"strike_point_outer_z" :: summary__boundary__strike_point_outer_z{T} - var"triangularity_lower" :: summary__boundary__triangularity_lower{T} - var"triangularity_upper" :: summary__boundary__triangularity_upper{T} - var"type" :: summary__boundary__type{T} - var"x_point_main" :: summary__boundary__x_point_main{T} + var"distance_inner_outer_separatrices"::summary__boundary__distance_inner_outer_separatrices{T} + var"elongation"::summary__boundary__elongation{T} + var"gap_limiter_wall"::summary__boundary__gap_limiter_wall{T} + var"geometric_axis_r"::summary__boundary__geometric_axis_r{T} + var"geometric_axis_z"::summary__boundary__geometric_axis_z{T} + var"magnetic_axis_r"::summary__boundary__magnetic_axis_r{T} + var"magnetic_axis_z"::summary__boundary__magnetic_axis_z{T} + var"minor_radius"::summary__boundary__minor_radius{T} + var"strike_point_configuration"::summary__boundary__strike_point_configuration{T} + var"strike_point_inner_r"::summary__boundary__strike_point_inner_r{T} + var"strike_point_inner_z"::summary__boundary__strike_point_inner_z{T} + var"strike_point_outer_r"::summary__boundary__strike_point_outer_r{T} + var"strike_point_outer_z"::summary__boundary__strike_point_outer_z{T} + var"triangularity_lower"::summary__boundary__triangularity_lower{T} + var"triangularity_upper"::summary__boundary__triangularity_upper{T} + var"type"::summary__boundary__type{T} + var"x_point_main"::summary__boundary__x_point_main{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary__boundary} - _parent :: WeakRef + _ref::Union{Nothing,summary__boundary} + _parent::WeakRef end function summary__boundary{T}() where T @@ -28114,44 +28114,44 @@ end summary__boundary() = summary__boundary{Float64}() mutable struct summary{T} <: IDStop{T} - var"boundary" :: summary__boundary{T} - var"code" :: summary__code{T} - var"configuration" :: summary__configuration{T} - var"disruption" :: summary__disruption{T} - var"elms" :: summary__elms{T} - var"fusion" :: summary__fusion{T} - var"gas_injection_accumulated" :: summary__gas_injection_accumulated{T} - var"gas_injection_prefill" :: summary__gas_injection_prefill{T} - var"gas_injection_rates" :: summary__gas_injection_rates{T} - var"global_quantities" :: summary__global_quantities{T} - var"heating_current_drive" :: summary__heating_current_drive{T} - var"ids_properties" :: summary__ids_properties{T} - var"kicks" :: summary__kicks{T} - var"limiter" :: summary__limiter{T} - var"line_average" :: summary__line_average{T} - var"local" :: summary__local{T} - var"magnetic_shear_flag" :: summary__magnetic_shear_flag{T} - var"midplane" :: summary__midplane{T} - var"pedestal_fits" :: summary__pedestal_fits{T} - var"pellets" :: summary__pellets{T} - var"plasma_duration" :: summary__plasma_duration{T} - var"rmps" :: summary__rmps{T} - var"runaways" :: summary__runaways{T} - var"scrape_off_layer" :: summary__scrape_off_layer{T} - var"stationary_phase_flag" :: summary__stationary_phase_flag{T} - var"tag" :: summary__tag{T} + var"boundary"::summary__boundary{T} + var"code"::summary__code{T} + var"configuration"::summary__configuration{T} + var"disruption"::summary__disruption{T} + var"elms"::summary__elms{T} + var"fusion"::summary__fusion{T} + var"gas_injection_accumulated"::summary__gas_injection_accumulated{T} + var"gas_injection_prefill"::summary__gas_injection_prefill{T} + var"gas_injection_rates"::summary__gas_injection_rates{T} + var"global_quantities"::summary__global_quantities{T} + var"heating_current_drive"::summary__heating_current_drive{T} + var"ids_properties"::summary__ids_properties{T} + var"kicks"::summary__kicks{T} + var"limiter"::summary__limiter{T} + var"line_average"::summary__line_average{T} + var"local"::summary__local{T} + var"magnetic_shear_flag"::summary__magnetic_shear_flag{T} + var"midplane"::summary__midplane{T} + var"pedestal_fits"::summary__pedestal_fits{T} + var"pellets"::summary__pellets{T} + var"plasma_duration"::summary__plasma_duration{T} + var"rmps"::summary__rmps{T} + var"runaways"::summary__runaways{T} + var"scrape_off_layer"::summary__scrape_off_layer{T} + var"stationary_phase_flag"::summary__stationary_phase_flag{T} + var"tag"::summary__tag{T} var"time" :: Vector{Float64} - var"time_breakdown" :: summary__time_breakdown{T} + var"time_breakdown"::summary__time_breakdown{T} var"time_width" :: Vector{<:T} var"time_width_σ" :: Vector{<:T} - var"volume_average" :: summary__volume_average{T} - var"wall" :: summary__wall{T} + var"volume_average"::summary__volume_average{T} + var"wall"::summary__wall{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,summary} - _parent :: WeakRef + _ref::Union{Nothing,summary} + _parent::WeakRef end function summary{T}() where T @@ -28198,8 +28198,8 @@ mutable struct spi__shatter_cone_definition{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__shatter_cone_definition} - _parent :: WeakRef + _ref::Union{Nothing,spi__shatter_cone_definition} + _parent::WeakRef end function spi__shatter_cone_definition{T}() where T @@ -28220,8 +28220,8 @@ mutable struct spi__injector___shattering_position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___shattering_position} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___shattering_position} + _parent::WeakRef end function spi__injector___shattering_position{T}() where T @@ -28242,8 +28242,8 @@ mutable struct spi__injector___shatter_cone__unit_vector_minor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___shatter_cone__unit_vector_minor} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___shatter_cone__unit_vector_minor} + _parent::WeakRef end function spi__injector___shatter_cone__unit_vector_minor{T}() where T @@ -28264,8 +28264,8 @@ mutable struct spi__injector___shatter_cone__unit_vector_major{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___shatter_cone__unit_vector_major} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___shatter_cone__unit_vector_major} + _parent::WeakRef end function spi__injector___shatter_cone__unit_vector_major{T}() where T @@ -28286,8 +28286,8 @@ mutable struct spi__injector___shatter_cone__origin{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___shatter_cone__origin} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___shatter_cone__origin} + _parent::WeakRef end function spi__injector___shatter_cone__origin{T}() where T @@ -28308,8 +28308,8 @@ mutable struct spi__injector___shatter_cone__direction{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___shatter_cone__direction} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___shatter_cone__direction} + _parent::WeakRef end function spi__injector___shatter_cone__direction{T}() where T @@ -28324,16 +28324,16 @@ mutable struct spi__injector___shatter_cone{T} <: IDS{T} var"angle_major_σ" :: T var"angle_minor" :: T var"angle_minor_σ" :: T - var"direction" :: spi__injector___shatter_cone__direction{T} - var"origin" :: spi__injector___shatter_cone__origin{T} - var"unit_vector_major" :: spi__injector___shatter_cone__unit_vector_major{T} - var"unit_vector_minor" :: spi__injector___shatter_cone__unit_vector_minor{T} + var"direction"::spi__injector___shatter_cone__direction{T} + var"origin"::spi__injector___shatter_cone__origin{T} + var"unit_vector_major"::spi__injector___shatter_cone__unit_vector_major{T} + var"unit_vector_minor"::spi__injector___shatter_cone__unit_vector_minor{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___shatter_cone} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___shatter_cone} + _parent::WeakRef end function spi__injector___shatter_cone{T}() where T @@ -28359,8 +28359,8 @@ mutable struct spi__injector___propellant_gas__species{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___propellant_gas__species} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___propellant_gas__species} + _parent::WeakRef end function spi__injector___propellant_gas__species{T}() where T @@ -28375,15 +28375,15 @@ mutable struct spi__injector___propellant_gas{T} <: IDS{T} var"atoms_n_σ" :: T var"flow_rate" :: Vector{<:T} var"flow_rate_σ" :: Vector{<:T} - var"species" :: IDSvector{spi__injector___propellant_gas__species{T}} + var"species"::IDSvector{spi__injector___propellant_gas__species{T}} var"temperature" :: T var"temperature_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___propellant_gas} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___propellant_gas} + _parent::WeakRef end function spi__injector___propellant_gas{T}() where T @@ -28406,8 +28406,8 @@ mutable struct spi__injector___pellet__shell__species{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___pellet__shell__species} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___pellet__shell__species} + _parent::WeakRef end function spi__injector___pellet__shell__species{T}() where T @@ -28420,13 +28420,13 @@ spi__injector___pellet__shell__species() = spi__injector___pellet__shell__specie mutable struct spi__injector___pellet__shell{T} <: IDS{T} var"atoms_n" :: T var"atoms_n_σ" :: T - var"species" :: IDSvector{spi__injector___pellet__shell__species{T}} + var"species"::IDSvector{spi__injector___pellet__shell__species{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___pellet__shell} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___pellet__shell} + _parent::WeakRef end function spi__injector___pellet__shell{T}() where T @@ -28448,8 +28448,8 @@ mutable struct spi__injector___pellet__position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___pellet__position} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___pellet__position} + _parent::WeakRef end function spi__injector___pellet__position{T}() where T @@ -28471,8 +28471,8 @@ mutable struct spi__injector___pellet__core__species{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___pellet__core__species} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___pellet__core__species} + _parent::WeakRef end function spi__injector___pellet__core__species{T}() where T @@ -28485,13 +28485,13 @@ spi__injector___pellet__core__species() = spi__injector___pellet__core__species{ mutable struct spi__injector___pellet__core{T} <: IDS{T} var"atoms_n" :: T var"atoms_n_σ" :: T - var"species" :: IDSvector{spi__injector___pellet__core__species{T}} + var"species"::IDSvector{spi__injector___pellet__core__species{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___pellet__core} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___pellet__core} + _parent::WeakRef end function spi__injector___pellet__core{T}() where T @@ -28503,13 +28503,13 @@ end spi__injector___pellet__core() = spi__injector___pellet__core{Float64}() mutable struct spi__injector___pellet{T} <: IDS{T} - var"core" :: spi__injector___pellet__core{T} + var"core"::spi__injector___pellet__core{T} var"diameter" :: T var"diameter_σ" :: T var"length" :: T var"length_σ" :: T - var"position" :: spi__injector___pellet__position{T} - var"shell" :: spi__injector___pellet__shell{T} + var"position"::spi__injector___pellet__position{T} + var"shell"::spi__injector___pellet__shell{T} var"velocity_r" :: Vector{<:T} var"velocity_r_σ" :: Vector{<:T} var"velocity_shatter" :: T @@ -28522,8 +28522,8 @@ mutable struct spi__injector___pellet{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___pellet} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___pellet} + _parent::WeakRef end function spi__injector___pellet{T}() where T @@ -28547,8 +28547,8 @@ mutable struct spi__injector___optical_pellet_diagnostic__position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___optical_pellet_diagnostic__position} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___optical_pellet_diagnostic__position} + _parent::WeakRef end function spi__injector___optical_pellet_diagnostic__position{T}() where T @@ -28559,15 +28559,15 @@ end spi__injector___optical_pellet_diagnostic__position() = spi__injector___optical_pellet_diagnostic__position{Float64}() mutable struct spi__injector___optical_pellet_diagnostic{T} <: IDS{T} - var"position" :: spi__injector___optical_pellet_diagnostic__position{T} + var"position"::spi__injector___optical_pellet_diagnostic__position{T} var"time_arrival" :: Vector{<:T} var"time_arrival_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___optical_pellet_diagnostic} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___optical_pellet_diagnostic} + _parent::WeakRef end function spi__injector___optical_pellet_diagnostic{T}() where T @@ -28589,8 +28589,8 @@ mutable struct spi__injector___injection_direction{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___injection_direction} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___injection_direction} + _parent::WeakRef end function spi__injector___injection_direction{T}() where T @@ -28612,8 +28612,8 @@ mutable struct spi__injector___fragmentation_gas__species{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___fragmentation_gas__species} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___fragmentation_gas__species} + _parent::WeakRef end function spi__injector___fragmentation_gas__species{T}() where T @@ -28628,15 +28628,15 @@ mutable struct spi__injector___fragmentation_gas{T} <: IDS{T} var"atoms_n_σ" :: T var"flow_rate" :: Vector{<:T} var"flow_rate_σ" :: Vector{<:T} - var"species" :: IDSvector{spi__injector___fragmentation_gas__species{T}} + var"species"::IDSvector{spi__injector___fragmentation_gas__species{T}} var"temperature" :: T var"temperature_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___fragmentation_gas} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___fragmentation_gas} + _parent::WeakRef end function spi__injector___fragmentation_gas{T}() where T @@ -28659,8 +28659,8 @@ mutable struct spi__injector___fragment___species{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___fragment___species} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___fragment___species} + _parent::WeakRef end function spi__injector___fragment___species{T}() where T @@ -28681,8 +28681,8 @@ mutable struct spi__injector___fragment___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___fragment___position} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___fragment___position} + _parent::WeakRef end function spi__injector___fragment___position{T}() where T @@ -28693,8 +28693,8 @@ end spi__injector___fragment___position() = spi__injector___fragment___position{Float64}() mutable struct spi__injector___fragment{T} <: IDSvectorStaticElement{T} - var"position" :: spi__injector___fragment___position{T} - var"species" :: IDSvector{spi__injector___fragment___species{T}} + var"position"::spi__injector___fragment___position{T} + var"species"::IDSvector{spi__injector___fragment___species{T}} var"velocity_r" :: Vector{<:T} var"velocity_r_σ" :: Vector{<:T} var"velocity_tor" :: Vector{<:T} @@ -28707,8 +28707,8 @@ mutable struct spi__injector___fragment{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector___fragment} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector___fragment} + _parent::WeakRef end function spi__injector___fragment{T}() where T @@ -28721,18 +28721,18 @@ end spi__injector___fragment() = spi__injector___fragment{Float64}() mutable struct spi__injector{T} <: IDSvectorStaticElement{T} - var"fragment" :: IDSvector{spi__injector___fragment{T}} - var"fragmentation_gas" :: spi__injector___fragmentation_gas{T} + var"fragment"::IDSvector{spi__injector___fragment{T}} + var"fragmentation_gas"::spi__injector___fragmentation_gas{T} var"identifier" :: String - var"injection_direction" :: spi__injector___injection_direction{T} + var"injection_direction"::spi__injector___injection_direction{T} var"name" :: String - var"optical_pellet_diagnostic" :: spi__injector___optical_pellet_diagnostic{T} - var"pellet" :: spi__injector___pellet{T} - var"propellant_gas" :: spi__injector___propellant_gas{T} - var"shatter_cone" :: spi__injector___shatter_cone{T} + var"optical_pellet_diagnostic"::spi__injector___optical_pellet_diagnostic{T} + var"pellet"::spi__injector___pellet{T} + var"propellant_gas"::spi__injector___propellant_gas{T} + var"shatter_cone"::spi__injector___shatter_cone{T} var"shattering_angle" :: T var"shattering_angle_σ" :: T - var"shattering_position" :: spi__injector___shattering_position{T} + var"shattering_position"::spi__injector___shattering_position{T} var"time_shatter" :: T var"time_shatter_σ" :: T var"time_trigger" :: T @@ -28747,8 +28747,8 @@ mutable struct spi__injector{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__injector} - _parent :: WeakRef + _ref::Union{Nothing,spi__injector} + _parent::WeakRef end function spi__injector{T}() where T @@ -28774,8 +28774,8 @@ mutable struct spi__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__version_put} + _parent::WeakRef end function spi__ids_properties__version_put{T}() where T @@ -28792,8 +28792,8 @@ mutable struct spi__ids_properties__provenance__node{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__provenance__node} + _parent::WeakRef end function spi__ids_properties__provenance__node{T}() where T @@ -28804,13 +28804,13 @@ end spi__ids_properties__provenance__node() = spi__ids_properties__provenance__node{Float64}() mutable struct spi__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{spi__ids_properties__provenance__node{T}} + var"node"::IDSvector{spi__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__provenance} + _parent::WeakRef end function spi__ids_properties__provenance{T}() where T @@ -28832,8 +28832,8 @@ mutable struct spi__ids_properties__plugins__node___readback{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__plugins__node___readback} + _parent::WeakRef end function spi__ids_properties__plugins__node___readback{T}() where T @@ -28854,8 +28854,8 @@ mutable struct spi__ids_properties__plugins__node___put_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function spi__ids_properties__plugins__node___put_operation{T}() where T @@ -28876,8 +28876,8 @@ mutable struct spi__ids_properties__plugins__node___get_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function spi__ids_properties__plugins__node___get_operation{T}() where T @@ -28888,16 +28888,16 @@ end spi__ids_properties__plugins__node___get_operation() = spi__ids_properties__plugins__node___get_operation{Float64}() mutable struct spi__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{spi__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{spi__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{spi__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{spi__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{spi__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{spi__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__plugins__node} + _parent::WeakRef end function spi__ids_properties__plugins__node{T}() where T @@ -28920,8 +28920,8 @@ mutable struct spi__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function spi__ids_properties__plugins__infrastructure_put{T}() where T @@ -28941,8 +28941,8 @@ mutable struct spi__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function spi__ids_properties__plugins__infrastructure_get{T}() where T @@ -28953,15 +28953,15 @@ end spi__ids_properties__plugins__infrastructure_get() = spi__ids_properties__plugins__infrastructure_get{Float64}() mutable struct spi__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: spi__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: spi__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{spi__ids_properties__plugins__node{T}} + var"infrastructure_get"::spi__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::spi__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{spi__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__plugins} + _parent::WeakRef end function spi__ids_properties__plugins{T}() where T @@ -28982,8 +28982,8 @@ mutable struct spi__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties__occurrence_type} + _parent::WeakRef end function spi__ids_properties__occurrence_type{T}() where T @@ -28999,17 +28999,17 @@ mutable struct spi__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: spi__ids_properties__occurrence_type{T} - var"plugins" :: spi__ids_properties__plugins{T} - var"provenance" :: spi__ids_properties__provenance{T} + var"occurrence_type"::spi__ids_properties__occurrence_type{T} + var"plugins"::spi__ids_properties__plugins{T} + var"provenance"::spi__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: spi__ids_properties__version_put{T} + var"version_put"::spi__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,spi__ids_properties} + _parent::WeakRef end function spi__ids_properties{T}() where T @@ -29034,8 +29034,8 @@ mutable struct spi__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__code__library} - _parent :: WeakRef + _ref::Union{Nothing,spi__code__library} + _parent::WeakRef end function spi__code__library{T}() where T @@ -29048,7 +29048,7 @@ spi__code__library() = spi__code__library{Float64}() mutable struct spi__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{spi__code__library{T}} + var"library"::IDSvector{spi__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -29058,8 +29058,8 @@ mutable struct spi__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi__code} - _parent :: WeakRef + _ref::Union{Nothing,spi__code} + _parent::WeakRef end function spi__code{T}() where T @@ -29071,19 +29071,19 @@ end spi__code() = spi__code{Float64}() mutable struct spi{T} <: IDStop{T} - var"code" :: spi__code{T} - var"ids_properties" :: spi__ids_properties{T} - var"injector" :: IDSvector{spi__injector{T}} + var"code"::spi__code{T} + var"ids_properties"::spi__ids_properties{T} + var"injector"::IDSvector{spi__injector{T}} var"latency" :: T var"latency_σ" :: T - var"shatter_cone_definition" :: spi__shatter_cone_definition{T} + var"shatter_cone_definition"::spi__shatter_cone_definition{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spi} - _parent :: WeakRef + _ref::Union{Nothing,spi} + _parent::WeakRef end function spi{T}() where T @@ -29105,8 +29105,8 @@ mutable struct spectrometer_x_ray_crystal__ids_properties__version_put{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__version_put} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__version_put{T}() where T @@ -29123,8 +29123,8 @@ mutable struct spectrometer_x_ray_crystal__ids_properties__provenance__node{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__provenance__node} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__provenance__node{T}() where T @@ -29135,13 +29135,13 @@ end spectrometer_x_ray_crystal__ids_properties__provenance__node() = spectrometer_x_ray_crystal__ids_properties__provenance__node{Float64}() mutable struct spectrometer_x_ray_crystal__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{spectrometer_x_ray_crystal__ids_properties__provenance__node{T}} + var"node"::IDSvector{spectrometer_x_ray_crystal__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__provenance} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__provenance{T}() where T @@ -29163,8 +29163,8 @@ mutable struct spectrometer_x_ray_crystal__ids_properties__plugins__node___readb _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__node___readback} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__plugins__node___readback{T}() where T @@ -29185,8 +29185,8 @@ mutable struct spectrometer_x_ray_crystal__ids_properties__plugins__node___put_o _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__plugins__node___put_operation{T}() where T @@ -29207,8 +29207,8 @@ mutable struct spectrometer_x_ray_crystal__ids_properties__plugins__node___get_o _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__plugins__node___get_operation{T}() where T @@ -29219,16 +29219,16 @@ end spectrometer_x_ray_crystal__ids_properties__plugins__node___get_operation() = spectrometer_x_ray_crystal__ids_properties__plugins__node___get_operation{Float64}() mutable struct spectrometer_x_ray_crystal__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{spectrometer_x_ray_crystal__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{spectrometer_x_ray_crystal__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{spectrometer_x_ray_crystal__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{spectrometer_x_ray_crystal__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{spectrometer_x_ray_crystal__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{spectrometer_x_ray_crystal__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__node} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__plugins__node{T}() where T @@ -29251,8 +29251,8 @@ mutable struct spectrometer_x_ray_crystal__ids_properties__plugins__infrastructu _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_put{T}() where T @@ -29272,8 +29272,8 @@ mutable struct spectrometer_x_ray_crystal__ids_properties__plugins__infrastructu _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_get{T}() where T @@ -29284,15 +29284,15 @@ end spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_get() = spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_get{Float64}() mutable struct spectrometer_x_ray_crystal__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{spectrometer_x_ray_crystal__ids_properties__plugins__node{T}} + var"infrastructure_get"::spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::spectrometer_x_ray_crystal__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{spectrometer_x_ray_crystal__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__plugins} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__plugins{T}() where T @@ -29313,8 +29313,8 @@ mutable struct spectrometer_x_ray_crystal__ids_properties__occurrence_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties__occurrence_type} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties__occurrence_type{T}() where T @@ -29330,17 +29330,17 @@ mutable struct spectrometer_x_ray_crystal__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: spectrometer_x_ray_crystal__ids_properties__occurrence_type{T} - var"plugins" :: spectrometer_x_ray_crystal__ids_properties__plugins{T} - var"provenance" :: spectrometer_x_ray_crystal__ids_properties__provenance{T} + var"occurrence_type"::spectrometer_x_ray_crystal__ids_properties__occurrence_type{T} + var"plugins"::spectrometer_x_ray_crystal__ids_properties__plugins{T} + var"provenance"::spectrometer_x_ray_crystal__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: spectrometer_x_ray_crystal__ids_properties__version_put{T} + var"version_put"::spectrometer_x_ray_crystal__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__ids_properties} + _parent::WeakRef end function spectrometer_x_ray_crystal__ids_properties{T}() where T @@ -29365,8 +29365,8 @@ mutable struct spectrometer_x_ray_crystal__code__library{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__code__library} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__code__library} + _parent::WeakRef end function spectrometer_x_ray_crystal__code__library{T}() where T @@ -29379,7 +29379,7 @@ spectrometer_x_ray_crystal__code__library() = spectrometer_x_ray_crystal__code__ mutable struct spectrometer_x_ray_crystal__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{spectrometer_x_ray_crystal__code__library{T}} + var"library"::IDSvector{spectrometer_x_ray_crystal__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -29389,8 +29389,8 @@ mutable struct spectrometer_x_ray_crystal__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__code} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__code} + _parent::WeakRef end function spectrometer_x_ray_crystal__code{T}() where T @@ -29412,8 +29412,8 @@ mutable struct spectrometer_x_ray_crystal__channel___reflector___x3_unit_vector{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___x3_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector___x3_unit_vector{T}() where T @@ -29434,8 +29434,8 @@ mutable struct spectrometer_x_ray_crystal__channel___reflector___x2_unit_vector{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___x2_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector___x2_unit_vector{T}() where T @@ -29456,8 +29456,8 @@ mutable struct spectrometer_x_ray_crystal__channel___reflector___x1_unit_vector{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___x1_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector___x1_unit_vector{T}() where T @@ -29476,8 +29476,8 @@ mutable struct spectrometer_x_ray_crystal__channel___reflector___outline{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___outline} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector___outline{T}() where T @@ -29495,8 +29495,8 @@ mutable struct spectrometer_x_ray_crystal__channel___reflector___material{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___material} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___material} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector___material{T}() where T @@ -29514,8 +29514,8 @@ mutable struct spectrometer_x_ray_crystal__channel___reflector___geometry_type{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___geometry_type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector___geometry_type{T}() where T @@ -29533,8 +29533,8 @@ mutable struct spectrometer_x_ray_crystal__channel___reflector___curvature_type{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___curvature_type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector___curvature_type{T}() where T @@ -29555,8 +29555,8 @@ mutable struct spectrometer_x_ray_crystal__channel___reflector___centre{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector___centre} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector___centre{T}() where T @@ -29567,33 +29567,33 @@ end spectrometer_x_ray_crystal__channel___reflector___centre() = spectrometer_x_ray_crystal__channel___reflector___centre{Float64}() mutable struct spectrometer_x_ray_crystal__channel___reflector{T} <: IDSvectorStaticElement{T} - var"centre" :: spectrometer_x_ray_crystal__channel___reflector___centre{T} - var"curvature_type" :: spectrometer_x_ray_crystal__channel___reflector___curvature_type{T} - var"geometry_type" :: spectrometer_x_ray_crystal__channel___reflector___geometry_type{T} + var"centre"::spectrometer_x_ray_crystal__channel___reflector___centre{T} + var"curvature_type"::spectrometer_x_ray_crystal__channel___reflector___curvature_type{T} + var"geometry_type"::spectrometer_x_ray_crystal__channel___reflector___geometry_type{T} var"identifier" :: String - var"material" :: spectrometer_x_ray_crystal__channel___reflector___material{T} - var"outline" :: spectrometer_x_ray_crystal__channel___reflector___outline{T} + var"material"::spectrometer_x_ray_crystal__channel___reflector___material{T} + var"outline"::spectrometer_x_ray_crystal__channel___reflector___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T var"x1_curvature" :: T var"x1_curvature_σ" :: T - var"x1_unit_vector" :: spectrometer_x_ray_crystal__channel___reflector___x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_x_ray_crystal__channel___reflector___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T var"x2_curvature" :: T var"x2_curvature_σ" :: T - var"x2_unit_vector" :: spectrometer_x_ray_crystal__channel___reflector___x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_x_ray_crystal__channel___reflector___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_x_ray_crystal__channel___reflector___x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_x_ray_crystal__channel___reflector___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___reflector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___reflector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___reflector{T}() where T @@ -29620,8 +29620,8 @@ mutable struct spectrometer_x_ray_crystal__channel___profiles_line_integrated__v _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__velocity_tor} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__velocity_tor} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___profiles_line_integrated__velocity_tor{T}() where T @@ -29640,8 +29640,8 @@ mutable struct spectrometer_x_ray_crystal__channel___profiles_line_integrated__t _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_i} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_i} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_i{T}() where T @@ -29660,8 +29660,8 @@ mutable struct spectrometer_x_ray_crystal__channel___profiles_line_integrated__t _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_e} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_e} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_e{T}() where T @@ -29682,8 +29682,8 @@ mutable struct spectrometer_x_ray_crystal__channel___profiles_line_integrated__l _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_second_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_second_point} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_second_point{T}() where T @@ -29702,8 +29702,8 @@ mutable struct spectrometer_x_ray_crystal__channel___profiles_line_integrated__l _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_rho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_rho_tor_norm} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_rho_tor_norm{T}() where T @@ -29714,18 +29714,18 @@ end spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_rho_tor_norm() = spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_rho_tor_norm{Float64}() mutable struct spectrometer_x_ray_crystal__channel___profiles_line_integrated{T} <: IDS{T} - var"lines_of_sight_rho_tor_norm" :: spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_rho_tor_norm{T} - var"lines_of_sight_second_point" :: spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_second_point{T} - var"t_e" :: spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_e{T} - var"t_i" :: spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_i{T} + var"lines_of_sight_rho_tor_norm"::spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_rho_tor_norm{T} + var"lines_of_sight_second_point"::spectrometer_x_ray_crystal__channel___profiles_line_integrated__lines_of_sight_second_point{T} + var"t_e"::spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_e{T} + var"t_i"::spectrometer_x_ray_crystal__channel___profiles_line_integrated__t_i{T} var"time" :: Vector{Float64} - var"velocity_tor" :: spectrometer_x_ray_crystal__channel___profiles_line_integrated__velocity_tor{T} + var"velocity_tor"::spectrometer_x_ray_crystal__channel___profiles_line_integrated__velocity_tor{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___profiles_line_integrated} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___profiles_line_integrated{T}() where T @@ -29748,8 +29748,8 @@ mutable struct spectrometer_x_ray_crystal__channel___instrument_function__type{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___instrument_function__type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___instrument_function__type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___instrument_function__type{T}() where T @@ -29768,7 +29768,7 @@ mutable struct spectrometer_x_ray_crystal__channel___instrument_function{T} <: I var"scale_σ" :: Matrix{<:T} var"sigma" :: Matrix{<:T} var"sigma_σ" :: Matrix{<:T} - var"type" :: spectrometer_x_ray_crystal__channel___instrument_function__type{T} + var"type"::spectrometer_x_ray_crystal__channel___instrument_function__type{T} var"values" :: Array{<:T, 3} var"values_σ" :: Array{<:T, 3} var"wavelengths" :: Vector{<:T} @@ -29777,8 +29777,8 @@ mutable struct spectrometer_x_ray_crystal__channel___instrument_function{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___instrument_function} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___instrument_function} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___instrument_function{T}() where T @@ -29799,8 +29799,8 @@ mutable struct spectrometer_x_ray_crystal__channel___frame{T} <: IDSvectorTimeEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___frame} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___frame} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___frame{T}() where T @@ -29821,8 +29821,8 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window___x3_unit_vec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___x3_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window___x3_unit_vector{T}() where T @@ -29843,8 +29843,8 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window___x2_unit_vec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___x2_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window___x2_unit_vector{T}() where T @@ -29865,8 +29865,8 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window___x1_unit_vec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___x1_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window___x1_unit_vector{T}() where T @@ -29885,8 +29885,8 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window___outline{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___outline} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window___outline{T}() where T @@ -29904,8 +29904,8 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window___material{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___material} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___material} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window___material{T}() where T @@ -29923,8 +29923,8 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window___geometry_ty _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___geometry_type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window___geometry_type{T}() where T @@ -29942,8 +29942,8 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window___curvature_t _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___curvature_type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window___curvature_type{T}() where T @@ -29964,8 +29964,8 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window___centre{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window___centre} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window___centre{T}() where T @@ -29976,12 +29976,12 @@ end spectrometer_x_ray_crystal__channel___filter_window___centre() = spectrometer_x_ray_crystal__channel___filter_window___centre{Float64}() mutable struct spectrometer_x_ray_crystal__channel___filter_window{T} <: IDSvectorStaticElement{T} - var"centre" :: spectrometer_x_ray_crystal__channel___filter_window___centre{T} - var"curvature_type" :: spectrometer_x_ray_crystal__channel___filter_window___curvature_type{T} - var"geometry_type" :: spectrometer_x_ray_crystal__channel___filter_window___geometry_type{T} + var"centre"::spectrometer_x_ray_crystal__channel___filter_window___centre{T} + var"curvature_type"::spectrometer_x_ray_crystal__channel___filter_window___curvature_type{T} + var"geometry_type"::spectrometer_x_ray_crystal__channel___filter_window___geometry_type{T} var"identifier" :: String - var"material" :: spectrometer_x_ray_crystal__channel___filter_window___material{T} - var"outline" :: spectrometer_x_ray_crystal__channel___filter_window___outline{T} + var"material"::spectrometer_x_ray_crystal__channel___filter_window___material{T} + var"outline"::spectrometer_x_ray_crystal__channel___filter_window___outline{T} var"photon_absorption" :: Vector{<:T} var"photon_absorption_σ" :: Vector{<:T} var"radius" :: T @@ -29998,21 +29998,21 @@ mutable struct spectrometer_x_ray_crystal__channel___filter_window{T} <: IDSvect var"wavelengths_σ" :: Vector{<:T} var"x1_curvature" :: T var"x1_curvature_σ" :: T - var"x1_unit_vector" :: spectrometer_x_ray_crystal__channel___filter_window___x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_x_ray_crystal__channel___filter_window___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T var"x2_curvature" :: T var"x2_curvature_σ" :: T - var"x2_unit_vector" :: spectrometer_x_ray_crystal__channel___filter_window___x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_x_ray_crystal__channel___filter_window___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_x_ray_crystal__channel___filter_window___x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_x_ray_crystal__channel___filter_window___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___filter_window} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___filter_window{T}() where T @@ -30041,8 +30041,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__x3_unit_vector{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__x3_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__x3_unit_vector{T}() where T @@ -30063,8 +30063,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__x2_unit_vector{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__x2_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__x2_unit_vector{T}() where T @@ -30085,8 +30085,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__x1_unit_vector{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__x1_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__x1_unit_vector{T}() where T @@ -30105,8 +30105,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__outline{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__outline} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__outline{T}() where T @@ -30124,8 +30124,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__mesh_type{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__mesh_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__mesh_type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__mesh_type{T}() where T @@ -30143,8 +30143,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__material{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__material} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__material} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__material{T}() where T @@ -30162,8 +30162,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__geometry_type{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__geometry_type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__geometry_type{T}() where T @@ -30181,8 +30181,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__curvature_type{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__curvature_type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__curvature_type{T}() where T @@ -30203,8 +30203,8 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal__centre{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal__centre} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal__centre{T}() where T @@ -30217,14 +30217,14 @@ spectrometer_x_ray_crystal__channel___crystal__centre() = spectrometer_x_ray_cry mutable struct spectrometer_x_ray_crystal__channel___crystal{T} <: IDS{T} var"angle_bragg" :: T var"angle_bragg_σ" :: T - var"centre" :: spectrometer_x_ray_crystal__channel___crystal__centre{T} - var"curvature_type" :: spectrometer_x_ray_crystal__channel___crystal__curvature_type{T} + var"centre"::spectrometer_x_ray_crystal__channel___crystal__centre{T} + var"curvature_type"::spectrometer_x_ray_crystal__channel___crystal__curvature_type{T} var"cut" :: Vector{Int} - var"geometry_type" :: spectrometer_x_ray_crystal__channel___crystal__geometry_type{T} + var"geometry_type"::spectrometer_x_ray_crystal__channel___crystal__geometry_type{T} var"identifier" :: String - var"material" :: spectrometer_x_ray_crystal__channel___crystal__material{T} - var"mesh_type" :: spectrometer_x_ray_crystal__channel___crystal__mesh_type{T} - var"outline" :: spectrometer_x_ray_crystal__channel___crystal__outline{T} + var"material"::spectrometer_x_ray_crystal__channel___crystal__material{T} + var"mesh_type"::spectrometer_x_ray_crystal__channel___crystal__mesh_type{T} + var"outline"::spectrometer_x_ray_crystal__channel___crystal__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T @@ -30235,21 +30235,21 @@ mutable struct spectrometer_x_ray_crystal__channel___crystal{T} <: IDS{T} var"wavelength_bragg_σ" :: T var"x1_curvature" :: T var"x1_curvature_σ" :: T - var"x1_unit_vector" :: spectrometer_x_ray_crystal__channel___crystal__x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_x_ray_crystal__channel___crystal__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T var"x2_curvature" :: T var"x2_curvature_σ" :: T - var"x2_unit_vector" :: spectrometer_x_ray_crystal__channel___crystal__x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_x_ray_crystal__channel___crystal__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_x_ray_crystal__channel___crystal__x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_x_ray_crystal__channel___crystal__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___crystal} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___crystal} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___crystal{T}() where T @@ -30279,8 +30279,8 @@ mutable struct spectrometer_x_ray_crystal__channel___camera__x3_unit_vector{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera__x3_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera__x3_unit_vector{T}() where T @@ -30301,8 +30301,8 @@ mutable struct spectrometer_x_ray_crystal__channel___camera__x2_unit_vector{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera__x2_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera__x2_unit_vector{T}() where T @@ -30323,8 +30323,8 @@ mutable struct spectrometer_x_ray_crystal__channel___camera__x1_unit_vector{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera__x1_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera__x1_unit_vector{T}() where T @@ -30345,8 +30345,8 @@ mutable struct spectrometer_x_ray_crystal__channel___camera__pixel_position{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera__pixel_position} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera__pixel_position} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera__pixel_position{T}() where T @@ -30367,8 +30367,8 @@ mutable struct spectrometer_x_ray_crystal__channel___camera__line_of_sight__seco _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera__line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera__line_of_sight__second_point} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera__line_of_sight__second_point{T}() where T @@ -30389,8 +30389,8 @@ mutable struct spectrometer_x_ray_crystal__channel___camera__line_of_sight__firs _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera__line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera__line_of_sight__first_point} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera__line_of_sight__first_point{T}() where T @@ -30401,14 +30401,14 @@ end spectrometer_x_ray_crystal__channel___camera__line_of_sight__first_point() = spectrometer_x_ray_crystal__channel___camera__line_of_sight__first_point{Float64}() mutable struct spectrometer_x_ray_crystal__channel___camera__line_of_sight{T} <: IDS{T} - var"first_point" :: spectrometer_x_ray_crystal__channel___camera__line_of_sight__first_point{T} - var"second_point" :: spectrometer_x_ray_crystal__channel___camera__line_of_sight__second_point{T} + var"first_point"::spectrometer_x_ray_crystal__channel___camera__line_of_sight__first_point{T} + var"second_point"::spectrometer_x_ray_crystal__channel___camera__line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera__line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera__line_of_sight} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera__line_of_sight{T}() where T @@ -30431,8 +30431,8 @@ mutable struct spectrometer_x_ray_crystal__channel___camera__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera__centre} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera__centre{T}() where T @@ -30445,22 +30445,22 @@ spectrometer_x_ray_crystal__channel___camera__centre() = spectrometer_x_ray_crys mutable struct spectrometer_x_ray_crystal__channel___camera{T} <: IDS{T} var"camera_dimensions" :: Vector{<:T} var"camera_dimensions_σ" :: Vector{<:T} - var"centre" :: spectrometer_x_ray_crystal__channel___camera__centre{T} + var"centre"::spectrometer_x_ray_crystal__channel___camera__centre{T} var"identifier" :: String - var"line_of_sight" :: spectrometer_x_ray_crystal__channel___camera__line_of_sight{T} + var"line_of_sight"::spectrometer_x_ray_crystal__channel___camera__line_of_sight{T} var"pixel_dimensions" :: Vector{<:T} var"pixel_dimensions_σ" :: Vector{<:T} - var"pixel_position" :: spectrometer_x_ray_crystal__channel___camera__pixel_position{T} + var"pixel_position"::spectrometer_x_ray_crystal__channel___camera__pixel_position{T} var"pixels_n" :: Vector{Int} - var"x1_unit_vector" :: spectrometer_x_ray_crystal__channel___camera__x1_unit_vector{T} - var"x2_unit_vector" :: spectrometer_x_ray_crystal__channel___camera__x2_unit_vector{T} - var"x3_unit_vector" :: spectrometer_x_ray_crystal__channel___camera__x3_unit_vector{T} + var"x1_unit_vector"::spectrometer_x_ray_crystal__channel___camera__x1_unit_vector{T} + var"x2_unit_vector"::spectrometer_x_ray_crystal__channel___camera__x2_unit_vector{T} + var"x3_unit_vector"::spectrometer_x_ray_crystal__channel___camera__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___camera} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___camera} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___camera{T}() where T @@ -30487,8 +30487,8 @@ mutable struct spectrometer_x_ray_crystal__channel___bin___line_of_sight__second _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___bin___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___bin___line_of_sight__second_point} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___bin___line_of_sight__second_point{T}() where T @@ -30509,8 +30509,8 @@ mutable struct spectrometer_x_ray_crystal__channel___bin___line_of_sight__first_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___bin___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___bin___line_of_sight__first_point} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___bin___line_of_sight__first_point{T}() where T @@ -30521,14 +30521,14 @@ end spectrometer_x_ray_crystal__channel___bin___line_of_sight__first_point() = spectrometer_x_ray_crystal__channel___bin___line_of_sight__first_point{Float64}() mutable struct spectrometer_x_ray_crystal__channel___bin___line_of_sight{T} <: IDS{T} - var"first_point" :: spectrometer_x_ray_crystal__channel___bin___line_of_sight__first_point{T} - var"second_point" :: spectrometer_x_ray_crystal__channel___bin___line_of_sight__second_point{T} + var"first_point"::spectrometer_x_ray_crystal__channel___bin___line_of_sight__first_point{T} + var"second_point"::spectrometer_x_ray_crystal__channel___bin___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___bin___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___bin___line_of_sight} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___bin___line_of_sight{T}() where T @@ -30548,8 +30548,8 @@ mutable struct spectrometer_x_ray_crystal__channel___bin___instrument_function__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___bin___instrument_function__type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___bin___instrument_function__type} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___bin___instrument_function__type{T}() where T @@ -30568,7 +30568,7 @@ mutable struct spectrometer_x_ray_crystal__channel___bin___instrument_function{T var"scale_σ" :: Vector{<:T} var"sigma" :: Vector{<:T} var"sigma_σ" :: Vector{<:T} - var"type" :: spectrometer_x_ray_crystal__channel___bin___instrument_function__type{T} + var"type"::spectrometer_x_ray_crystal__channel___bin___instrument_function__type{T} var"values" :: Matrix{<:T} var"values_σ" :: Matrix{<:T} var"wavelengths" :: Vector{<:T} @@ -30577,8 +30577,8 @@ mutable struct spectrometer_x_ray_crystal__channel___bin___instrument_function{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___bin___instrument_function} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___bin___instrument_function} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___bin___instrument_function{T}() where T @@ -30590,8 +30590,8 @@ end spectrometer_x_ray_crystal__channel___bin___instrument_function() = spectrometer_x_ray_crystal__channel___bin___instrument_function{Float64}() mutable struct spectrometer_x_ray_crystal__channel___bin{T} <: IDSvectorStaticElement{T} - var"instrument_function" :: spectrometer_x_ray_crystal__channel___bin___instrument_function{T} - var"line_of_sight" :: spectrometer_x_ray_crystal__channel___bin___line_of_sight{T} + var"instrument_function"::spectrometer_x_ray_crystal__channel___bin___instrument_function{T} + var"line_of_sight"::spectrometer_x_ray_crystal__channel___bin___line_of_sight{T} var"wavelength" :: Vector{<:T} var"wavelength_σ" :: Vector{<:T} var"z_pixel_range" :: Vector{Int} @@ -30599,8 +30599,8 @@ mutable struct spectrometer_x_ray_crystal__channel___bin{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___bin} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___bin} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___bin{T}() where T @@ -30623,8 +30623,8 @@ mutable struct spectrometer_x_ray_crystal__channel___aperture__x3_unit_vector{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__x3_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___aperture__x3_unit_vector{T}() where T @@ -30645,8 +30645,8 @@ mutable struct spectrometer_x_ray_crystal__channel___aperture__x2_unit_vector{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__x2_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___aperture__x2_unit_vector{T}() where T @@ -30667,8 +30667,8 @@ mutable struct spectrometer_x_ray_crystal__channel___aperture__x1_unit_vector{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__x1_unit_vector} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___aperture__x1_unit_vector{T}() where T @@ -30687,8 +30687,8 @@ mutable struct spectrometer_x_ray_crystal__channel___aperture__outline{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__outline} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___aperture__outline{T}() where T @@ -30709,8 +30709,8 @@ mutable struct spectrometer_x_ray_crystal__channel___aperture__centre{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___aperture__centre} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___aperture__centre{T}() where T @@ -30721,26 +30721,26 @@ end spectrometer_x_ray_crystal__channel___aperture__centre() = spectrometer_x_ray_crystal__channel___aperture__centre{Float64}() mutable struct spectrometer_x_ray_crystal__channel___aperture{T} <: IDS{T} - var"centre" :: spectrometer_x_ray_crystal__channel___aperture__centre{T} + var"centre"::spectrometer_x_ray_crystal__channel___aperture__centre{T} var"geometry_type" :: Int - var"outline" :: spectrometer_x_ray_crystal__channel___aperture__outline{T} + var"outline"::spectrometer_x_ray_crystal__channel___aperture__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: spectrometer_x_ray_crystal__channel___aperture__x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_x_ray_crystal__channel___aperture__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: spectrometer_x_ray_crystal__channel___aperture__x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_x_ray_crystal__channel___aperture__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_x_ray_crystal__channel___aperture__x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_x_ray_crystal__channel___aperture__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel___aperture} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel___aperture} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel___aperture{T}() where T @@ -30756,10 +30756,10 @@ end spectrometer_x_ray_crystal__channel___aperture() = spectrometer_x_ray_crystal__channel___aperture{Float64}() mutable struct spectrometer_x_ray_crystal__channel{T} <: IDSvectorStaticElement{T} - var"aperture" :: spectrometer_x_ray_crystal__channel___aperture{T} - var"bin" :: IDSvector{spectrometer_x_ray_crystal__channel___bin{T}} - var"camera" :: spectrometer_x_ray_crystal__channel___camera{T} - var"crystal" :: spectrometer_x_ray_crystal__channel___crystal{T} + var"aperture"::spectrometer_x_ray_crystal__channel___aperture{T} + var"bin"::IDSvector{spectrometer_x_ray_crystal__channel___bin{T}} + var"camera"::spectrometer_x_ray_crystal__channel___camera{T} + var"crystal"::spectrometer_x_ray_crystal__channel___crystal{T} var"detection_efficiency" :: Vector{<:T} var"detection_efficiency_σ" :: Vector{<:T} var"energies" :: Vector{<:T} @@ -30770,11 +30770,11 @@ mutable struct spectrometer_x_ray_crystal__channel{T} <: IDSvectorStaticElement{ var"energy_bound_upper_σ" :: Matrix{<:T} var"exposure_time" :: T var"exposure_time_σ" :: T - var"filter_window" :: IDSvector{spectrometer_x_ray_crystal__channel___filter_window{T}} - var"frame" :: IDSvector{spectrometer_x_ray_crystal__channel___frame{T}} - var"instrument_function" :: spectrometer_x_ray_crystal__channel___instrument_function{T} - var"profiles_line_integrated" :: spectrometer_x_ray_crystal__channel___profiles_line_integrated{T} - var"reflector" :: IDSvector{spectrometer_x_ray_crystal__channel___reflector{T}} + var"filter_window"::IDSvector{spectrometer_x_ray_crystal__channel___filter_window{T}} + var"frame"::IDSvector{spectrometer_x_ray_crystal__channel___frame{T}} + var"instrument_function"::spectrometer_x_ray_crystal__channel___instrument_function{T} + var"profiles_line_integrated"::spectrometer_x_ray_crystal__channel___profiles_line_integrated{T} + var"reflector"::IDSvector{spectrometer_x_ray_crystal__channel___reflector{T}} var"wavelength_frames" :: Matrix{<:T} var"wavelength_frames_σ" :: Matrix{<:T} var"z_frames" :: Vector{<:T} @@ -30783,8 +30783,8 @@ mutable struct spectrometer_x_ray_crystal__channel{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal__channel} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal__channel} + _parent::WeakRef end function spectrometer_x_ray_crystal__channel{T}() where T @@ -30804,9 +30804,9 @@ end spectrometer_x_ray_crystal__channel() = spectrometer_x_ray_crystal__channel{Float64}() mutable struct spectrometer_x_ray_crystal{T} <: IDStop{T} - var"channel" :: IDSvector{spectrometer_x_ray_crystal__channel{T}} - var"code" :: spectrometer_x_ray_crystal__code{T} - var"ids_properties" :: spectrometer_x_ray_crystal__ids_properties{T} + var"channel"::IDSvector{spectrometer_x_ray_crystal__channel{T}} + var"code"::spectrometer_x_ray_crystal__code{T} + var"ids_properties"::spectrometer_x_ray_crystal__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -30814,8 +30814,8 @@ mutable struct spectrometer_x_ray_crystal{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_x_ray_crystal} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_x_ray_crystal} + _parent::WeakRef end function spectrometer_x_ray_crystal{T}() where T @@ -30836,8 +30836,8 @@ mutable struct spectrometer_visible__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__version_put} + _parent::WeakRef end function spectrometer_visible__ids_properties__version_put{T}() where T @@ -30854,8 +30854,8 @@ mutable struct spectrometer_visible__ids_properties__provenance__node{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__provenance__node} + _parent::WeakRef end function spectrometer_visible__ids_properties__provenance__node{T}() where T @@ -30866,13 +30866,13 @@ end spectrometer_visible__ids_properties__provenance__node() = spectrometer_visible__ids_properties__provenance__node{Float64}() mutable struct spectrometer_visible__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{spectrometer_visible__ids_properties__provenance__node{T}} + var"node"::IDSvector{spectrometer_visible__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__provenance} + _parent::WeakRef end function spectrometer_visible__ids_properties__provenance{T}() where T @@ -30894,8 +30894,8 @@ mutable struct spectrometer_visible__ids_properties__plugins__node___readback{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__plugins__node___readback} + _parent::WeakRef end function spectrometer_visible__ids_properties__plugins__node___readback{T}() where T @@ -30916,8 +30916,8 @@ mutable struct spectrometer_visible__ids_properties__plugins__node___put_operati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function spectrometer_visible__ids_properties__plugins__node___put_operation{T}() where T @@ -30938,8 +30938,8 @@ mutable struct spectrometer_visible__ids_properties__plugins__node___get_operati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function spectrometer_visible__ids_properties__plugins__node___get_operation{T}() where T @@ -30950,16 +30950,16 @@ end spectrometer_visible__ids_properties__plugins__node___get_operation() = spectrometer_visible__ids_properties__plugins__node___get_operation{Float64}() mutable struct spectrometer_visible__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{spectrometer_visible__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{spectrometer_visible__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{spectrometer_visible__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{spectrometer_visible__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{spectrometer_visible__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{spectrometer_visible__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__plugins__node} + _parent::WeakRef end function spectrometer_visible__ids_properties__plugins__node{T}() where T @@ -30982,8 +30982,8 @@ mutable struct spectrometer_visible__ids_properties__plugins__infrastructure_put _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function spectrometer_visible__ids_properties__plugins__infrastructure_put{T}() where T @@ -31003,8 +31003,8 @@ mutable struct spectrometer_visible__ids_properties__plugins__infrastructure_get _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function spectrometer_visible__ids_properties__plugins__infrastructure_get{T}() where T @@ -31015,15 +31015,15 @@ end spectrometer_visible__ids_properties__plugins__infrastructure_get() = spectrometer_visible__ids_properties__plugins__infrastructure_get{Float64}() mutable struct spectrometer_visible__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: spectrometer_visible__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: spectrometer_visible__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{spectrometer_visible__ids_properties__plugins__node{T}} + var"infrastructure_get"::spectrometer_visible__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::spectrometer_visible__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{spectrometer_visible__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__plugins} + _parent::WeakRef end function spectrometer_visible__ids_properties__plugins{T}() where T @@ -31044,8 +31044,8 @@ mutable struct spectrometer_visible__ids_properties__occurrence_type{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties__occurrence_type} + _parent::WeakRef end function spectrometer_visible__ids_properties__occurrence_type{T}() where T @@ -31061,17 +31061,17 @@ mutable struct spectrometer_visible__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: spectrometer_visible__ids_properties__occurrence_type{T} - var"plugins" :: spectrometer_visible__ids_properties__plugins{T} - var"provenance" :: spectrometer_visible__ids_properties__provenance{T} + var"occurrence_type"::spectrometer_visible__ids_properties__occurrence_type{T} + var"plugins"::spectrometer_visible__ids_properties__plugins{T} + var"provenance"::spectrometer_visible__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: spectrometer_visible__ids_properties__version_put{T} + var"version_put"::spectrometer_visible__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__ids_properties} + _parent::WeakRef end function spectrometer_visible__ids_properties{T}() where T @@ -31096,8 +31096,8 @@ mutable struct spectrometer_visible__code__library{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__code__library} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__code__library} + _parent::WeakRef end function spectrometer_visible__code__library{T}() where T @@ -31110,7 +31110,7 @@ spectrometer_visible__code__library() = spectrometer_visible__code__library{Floa mutable struct spectrometer_visible__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{spectrometer_visible__code__library{T}} + var"library"::IDSvector{spectrometer_visible__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -31120,8 +31120,8 @@ mutable struct spectrometer_visible__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__code} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__code} + _parent::WeakRef end function spectrometer_visible__code{T}() where T @@ -31139,8 +31139,8 @@ mutable struct spectrometer_visible__channel___validity_timed{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___validity_timed} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___validity_timed} + _parent::WeakRef end function spectrometer_visible__channel___validity_timed{T}() where T @@ -31158,8 +31158,8 @@ mutable struct spectrometer_visible__channel___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___type} + _parent::WeakRef end function spectrometer_visible__channel___type{T}() where T @@ -31180,8 +31180,8 @@ mutable struct spectrometer_visible__channel___polarizer__x3_unit_vector{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___polarizer__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___polarizer__x3_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___polarizer__x3_unit_vector{T}() where T @@ -31202,8 +31202,8 @@ mutable struct spectrometer_visible__channel___polarizer__x2_unit_vector{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___polarizer__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___polarizer__x2_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___polarizer__x2_unit_vector{T}() where T @@ -31224,8 +31224,8 @@ mutable struct spectrometer_visible__channel___polarizer__x1_unit_vector{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___polarizer__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___polarizer__x1_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___polarizer__x1_unit_vector{T}() where T @@ -31244,8 +31244,8 @@ mutable struct spectrometer_visible__channel___polarizer__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___polarizer__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___polarizer__outline} + _parent::WeakRef end function spectrometer_visible__channel___polarizer__outline{T}() where T @@ -31266,8 +31266,8 @@ mutable struct spectrometer_visible__channel___polarizer__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___polarizer__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___polarizer__centre} + _parent::WeakRef end function spectrometer_visible__channel___polarizer__centre{T}() where T @@ -31278,26 +31278,26 @@ end spectrometer_visible__channel___polarizer__centre() = spectrometer_visible__channel___polarizer__centre{Float64}() mutable struct spectrometer_visible__channel___polarizer{T} <: IDS{T} - var"centre" :: spectrometer_visible__channel___polarizer__centre{T} + var"centre"::spectrometer_visible__channel___polarizer__centre{T} var"geometry_type" :: Int - var"outline" :: spectrometer_visible__channel___polarizer__outline{T} + var"outline"::spectrometer_visible__channel___polarizer__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: spectrometer_visible__channel___polarizer__x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_visible__channel___polarizer__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: spectrometer_visible__channel___polarizer__x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_visible__channel___polarizer__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_visible__channel___polarizer__x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_visible__channel___polarizer__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___polarizer} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___polarizer} + _parent::WeakRef end function spectrometer_visible__channel___polarizer{T}() where T @@ -31336,8 +31336,8 @@ mutable struct spectrometer_visible__channel___polarization_spectroscopy{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___polarization_spectroscopy} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___polarization_spectroscopy} + _parent::WeakRef end function spectrometer_visible__channel___polarization_spectroscopy{T}() where T @@ -31355,8 +31355,8 @@ mutable struct spectrometer_visible__channel___optical_element___type{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___type} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___type{T}() where T @@ -31374,8 +31374,8 @@ mutable struct spectrometer_visible__channel___optical_element___material_proper _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___material_properties__type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___material_properties__type} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___material_properties__type{T}() where T @@ -31394,15 +31394,15 @@ mutable struct spectrometer_visible__channel___optical_element___material_proper var"roughness_σ" :: Vector{<:T} var"transmission_coefficient" :: Vector{<:T} var"transmission_coefficient_σ" :: Vector{<:T} - var"type" :: spectrometer_visible__channel___optical_element___material_properties__type{T} + var"type"::spectrometer_visible__channel___optical_element___material_properties__type{T} var"wavelengths" :: Vector{<:T} var"wavelengths_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___material_properties} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___material_properties} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___material_properties{T}() where T @@ -31424,8 +31424,8 @@ mutable struct spectrometer_visible__channel___optical_element___geometry__x3_un _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___geometry__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___geometry__x3_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___geometry__x3_unit_vector{T}() where T @@ -31446,8 +31446,8 @@ mutable struct spectrometer_visible__channel___optical_element___geometry__x2_un _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___geometry__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___geometry__x2_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___geometry__x2_unit_vector{T}() where T @@ -31468,8 +31468,8 @@ mutable struct spectrometer_visible__channel___optical_element___geometry__x1_un _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___geometry__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___geometry__x1_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___geometry__x1_unit_vector{T}() where T @@ -31488,8 +31488,8 @@ mutable struct spectrometer_visible__channel___optical_element___geometry__outli _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___geometry__outline} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___geometry__outline{T}() where T @@ -31510,8 +31510,8 @@ mutable struct spectrometer_visible__channel___optical_element___geometry__centr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___geometry__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___geometry__centre} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___geometry__centre{T}() where T @@ -31522,26 +31522,26 @@ end spectrometer_visible__channel___optical_element___geometry__centre() = spectrometer_visible__channel___optical_element___geometry__centre{Float64}() mutable struct spectrometer_visible__channel___optical_element___geometry{T} <: IDS{T} - var"centre" :: spectrometer_visible__channel___optical_element___geometry__centre{T} + var"centre"::spectrometer_visible__channel___optical_element___geometry__centre{T} var"geometry_type" :: Int - var"outline" :: spectrometer_visible__channel___optical_element___geometry__outline{T} + var"outline"::spectrometer_visible__channel___optical_element___geometry__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: spectrometer_visible__channel___optical_element___geometry__x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_visible__channel___optical_element___geometry__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: spectrometer_visible__channel___optical_element___geometry__x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_visible__channel___optical_element___geometry__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_visible__channel___optical_element___geometry__x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_visible__channel___optical_element___geometry__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___geometry} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___geometry} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___geometry{T}() where T @@ -31564,8 +31564,8 @@ mutable struct spectrometer_visible__channel___optical_element___front_surface__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___front_surface__curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___front_surface__curvature_type} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___front_surface__curvature_type{T}() where T @@ -31576,7 +31576,7 @@ end spectrometer_visible__channel___optical_element___front_surface__curvature_type() = spectrometer_visible__channel___optical_element___front_surface__curvature_type{Float64}() mutable struct spectrometer_visible__channel___optical_element___front_surface{T} <: IDS{T} - var"curvature_type" :: spectrometer_visible__channel___optical_element___front_surface__curvature_type{T} + var"curvature_type"::spectrometer_visible__channel___optical_element___front_surface__curvature_type{T} var"x1_curvature" :: T var"x1_curvature_σ" :: T var"x2_curvature" :: T @@ -31585,8 +31585,8 @@ mutable struct spectrometer_visible__channel___optical_element___front_surface{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___front_surface} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___front_surface} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___front_surface{T}() where T @@ -31605,8 +31605,8 @@ mutable struct spectrometer_visible__channel___optical_element___back_surface__c _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___back_surface__curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___back_surface__curvature_type} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___back_surface__curvature_type{T}() where T @@ -31617,7 +31617,7 @@ end spectrometer_visible__channel___optical_element___back_surface__curvature_type() = spectrometer_visible__channel___optical_element___back_surface__curvature_type{Float64}() mutable struct spectrometer_visible__channel___optical_element___back_surface{T} <: IDS{T} - var"curvature_type" :: spectrometer_visible__channel___optical_element___back_surface__curvature_type{T} + var"curvature_type"::spectrometer_visible__channel___optical_element___back_surface__curvature_type{T} var"x1_curvature" :: T var"x1_curvature_σ" :: T var"x2_curvature" :: T @@ -31626,8 +31626,8 @@ mutable struct spectrometer_visible__channel___optical_element___back_surface{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element___back_surface} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element___back_surface} + _parent::WeakRef end function spectrometer_visible__channel___optical_element___back_surface{T}() where T @@ -31639,19 +31639,19 @@ end spectrometer_visible__channel___optical_element___back_surface() = spectrometer_visible__channel___optical_element___back_surface{Float64}() mutable struct spectrometer_visible__channel___optical_element{T} <: IDSvectorStaticElement{T} - var"back_surface" :: spectrometer_visible__channel___optical_element___back_surface{T} - var"front_surface" :: spectrometer_visible__channel___optical_element___front_surface{T} - var"geometry" :: spectrometer_visible__channel___optical_element___geometry{T} - var"material_properties" :: spectrometer_visible__channel___optical_element___material_properties{T} + var"back_surface"::spectrometer_visible__channel___optical_element___back_surface{T} + var"front_surface"::spectrometer_visible__channel___optical_element___front_surface{T} + var"geometry"::spectrometer_visible__channel___optical_element___geometry{T} + var"material_properties"::spectrometer_visible__channel___optical_element___material_properties{T} var"thickness" :: T var"thickness_σ" :: T - var"type" :: spectrometer_visible__channel___optical_element___type{T} + var"type"::spectrometer_visible__channel___optical_element___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___optical_element} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___optical_element} + _parent::WeakRef end function spectrometer_visible__channel___optical_element{T}() where T @@ -31677,8 +31677,8 @@ mutable struct spectrometer_visible__channel___line_of_sight__second_point{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___line_of_sight__second_point} + _parent::WeakRef end function spectrometer_visible__channel___line_of_sight__second_point{T}() where T @@ -31699,8 +31699,8 @@ mutable struct spectrometer_visible__channel___line_of_sight__first_point{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___line_of_sight__first_point} + _parent::WeakRef end function spectrometer_visible__channel___line_of_sight__first_point{T}() where T @@ -31711,14 +31711,14 @@ end spectrometer_visible__channel___line_of_sight__first_point() = spectrometer_visible__channel___line_of_sight__first_point{Float64}() mutable struct spectrometer_visible__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: spectrometer_visible__channel___line_of_sight__first_point{T} - var"second_point" :: spectrometer_visible__channel___line_of_sight__second_point{T} + var"first_point"::spectrometer_visible__channel___line_of_sight__first_point{T} + var"second_point"::spectrometer_visible__channel___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___line_of_sight} + _parent::WeakRef end function spectrometer_visible__channel___line_of_sight{T}() where T @@ -31741,8 +31741,8 @@ mutable struct spectrometer_visible__channel___light_collection_efficiencies__po _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___light_collection_efficiencies__positions} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___light_collection_efficiencies__positions} + _parent::WeakRef end function spectrometer_visible__channel___light_collection_efficiencies__positions{T}() where T @@ -31753,15 +31753,15 @@ end spectrometer_visible__channel___light_collection_efficiencies__positions() = spectrometer_visible__channel___light_collection_efficiencies__positions{Float64}() mutable struct spectrometer_visible__channel___light_collection_efficiencies{T} <: IDS{T} - var"positions" :: spectrometer_visible__channel___light_collection_efficiencies__positions{T} + var"positions"::spectrometer_visible__channel___light_collection_efficiencies__positions{T} var"values" :: Vector{<:T} var"values_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___light_collection_efficiencies} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___light_collection_efficiencies} + _parent::WeakRef end function spectrometer_visible__channel___light_collection_efficiencies{T}() where T @@ -31780,8 +31780,8 @@ mutable struct spectrometer_visible__channel___isotope_ratios__method{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___isotope_ratios__method} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___isotope_ratios__method} + _parent::WeakRef end function spectrometer_visible__channel___isotope_ratios__method{T}() where T @@ -31801,8 +31801,8 @@ mutable struct spectrometer_visible__channel___isotope_ratios__isotope___element _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___isotope_ratios__isotope___element} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___isotope_ratios__isotope___element} + _parent::WeakRef end function spectrometer_visible__channel___isotope_ratios__isotope___element{T}() where T @@ -31819,7 +31819,7 @@ mutable struct spectrometer_visible__channel___isotope_ratios__isotope{T} <: IDS var"cold_neutrals_temperature_σ" :: Vector{<:T} var"density_ratio" :: Vector{<:T} var"density_ratio_σ" :: Vector{<:T} - var"element" :: IDSvector{spectrometer_visible__channel___isotope_ratios__isotope___element{T}} + var"element"::IDSvector{spectrometer_visible__channel___isotope_ratios__isotope___element{T}} var"hot_neutrals_fraction" :: Vector{<:T} var"hot_neutrals_fraction_σ" :: Vector{<:T} var"hot_neutrals_temperature" :: Vector{<:T} @@ -31830,8 +31830,8 @@ mutable struct spectrometer_visible__channel___isotope_ratios__isotope{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___isotope_ratios__isotope} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___isotope_ratios__isotope} + _parent::WeakRef end function spectrometer_visible__channel___isotope_ratios__isotope{T}() where T @@ -31843,8 +31843,8 @@ end spectrometer_visible__channel___isotope_ratios__isotope() = spectrometer_visible__channel___isotope_ratios__isotope{Float64}() mutable struct spectrometer_visible__channel___isotope_ratios{T} <: IDS{T} - var"isotope" :: IDSvector{spectrometer_visible__channel___isotope_ratios__isotope{T}} - var"method" :: spectrometer_visible__channel___isotope_ratios__method{T} + var"isotope"::IDSvector{spectrometer_visible__channel___isotope_ratios__isotope{T}} + var"method"::spectrometer_visible__channel___isotope_ratios__method{T} var"signal_to_noise" :: Vector{<:T} var"signal_to_noise_σ" :: Vector{<:T} var"time" :: Vector{Float64} @@ -31854,8 +31854,8 @@ mutable struct spectrometer_visible__channel___isotope_ratios{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___isotope_ratios} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___isotope_ratios} + _parent::WeakRef end function spectrometer_visible__channel___isotope_ratios{T}() where T @@ -31876,8 +31876,8 @@ mutable struct spectrometer_visible__channel___grating_spectrometer__wavelength_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___grating_spectrometer__wavelength_calibration} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___grating_spectrometer__wavelength_calibration} + _parent::WeakRef end function spectrometer_visible__channel___grating_spectrometer__wavelength_calibration{T}() where T @@ -31895,8 +31895,8 @@ mutable struct spectrometer_visible__channel___grating_spectrometer__radiance_sp _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___grating_spectrometer__radiance_spectral} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___grating_spectrometer__radiance_spectral} + _parent::WeakRef end function spectrometer_visible__channel___grating_spectrometer__radiance_spectral{T}() where T @@ -31914,8 +31914,8 @@ mutable struct spectrometer_visible__channel___grating_spectrometer__processed_l _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___grating_spectrometer__processed_line___radiance} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___grating_spectrometer__processed_line___radiance} + _parent::WeakRef end function spectrometer_visible__channel___grating_spectrometer__processed_line___radiance{T}() where T @@ -31933,8 +31933,8 @@ mutable struct spectrometer_visible__channel___grating_spectrometer__processed_l _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___grating_spectrometer__processed_line___intensity} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___grating_spectrometer__processed_line___intensity} + _parent::WeakRef end function spectrometer_visible__channel___grating_spectrometer__processed_line___intensity{T}() where T @@ -31945,17 +31945,17 @@ end spectrometer_visible__channel___grating_spectrometer__processed_line___intensity() = spectrometer_visible__channel___grating_spectrometer__processed_line___intensity{Float64}() mutable struct spectrometer_visible__channel___grating_spectrometer__processed_line{T} <: IDSvectorStaticElement{T} - var"intensity" :: spectrometer_visible__channel___grating_spectrometer__processed_line___intensity{T} + var"intensity"::spectrometer_visible__channel___grating_spectrometer__processed_line___intensity{T} var"label" :: String - var"radiance" :: spectrometer_visible__channel___grating_spectrometer__processed_line___radiance{T} + var"radiance"::spectrometer_visible__channel___grating_spectrometer__processed_line___radiance{T} var"wavelength_central" :: T var"wavelength_central_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___grating_spectrometer__processed_line} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___grating_spectrometer__processed_line} + _parent::WeakRef end function spectrometer_visible__channel___grating_spectrometer__processed_line{T}() where T @@ -31975,8 +31975,8 @@ mutable struct spectrometer_visible__channel___grating_spectrometer__intensity_s _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___grating_spectrometer__intensity_spectrum} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___grating_spectrometer__intensity_spectrum} + _parent::WeakRef end function spectrometer_visible__channel___grating_spectrometer__intensity_spectrum{T}() where T @@ -31993,15 +31993,15 @@ mutable struct spectrometer_visible__channel___grating_spectrometer{T} <: IDS{T} var"grating_σ" :: T var"instrument_function" :: Matrix{<:T} var"instrument_function_σ" :: Matrix{<:T} - var"intensity_spectrum" :: spectrometer_visible__channel___grating_spectrometer__intensity_spectrum{T} - var"processed_line" :: IDSvector{spectrometer_visible__channel___grating_spectrometer__processed_line{T}} + var"intensity_spectrum"::spectrometer_visible__channel___grating_spectrometer__intensity_spectrum{T} + var"processed_line"::IDSvector{spectrometer_visible__channel___grating_spectrometer__processed_line{T}} var"radiance_calibration" :: Vector{<:T} var"radiance_calibration_σ" :: Vector{<:T} var"radiance_calibration_date" :: String - var"radiance_spectral" :: spectrometer_visible__channel___grating_spectrometer__radiance_spectral{T} + var"radiance_spectral"::spectrometer_visible__channel___grating_spectrometer__radiance_spectral{T} var"slit_width" :: T var"slit_width_σ" :: T - var"wavelength_calibration" :: spectrometer_visible__channel___grating_spectrometer__wavelength_calibration{T} + var"wavelength_calibration"::spectrometer_visible__channel___grating_spectrometer__wavelength_calibration{T} var"wavelength_calibration_date" :: String var"wavelengths" :: Vector{<:T} var"wavelengths_σ" :: Vector{<:T} @@ -32009,8 +32009,8 @@ mutable struct spectrometer_visible__channel___grating_spectrometer{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___grating_spectrometer} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___grating_spectrometer} + _parent::WeakRef end function spectrometer_visible__channel___grating_spectrometer{T}() where T @@ -32032,8 +32032,8 @@ mutable struct spectrometer_visible__channel___geometry_matrix__without_reflecti _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___geometry_matrix__without_reflections} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___geometry_matrix__without_reflections} + _parent::WeakRef end function spectrometer_visible__channel___geometry_matrix__without_reflections{T}() where T @@ -32051,8 +32051,8 @@ mutable struct spectrometer_visible__channel___geometry_matrix__with_reflections _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___geometry_matrix__with_reflections} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___geometry_matrix__with_reflections} + _parent::WeakRef end function spectrometer_visible__channel___geometry_matrix__with_reflections{T}() where T @@ -32075,8 +32075,8 @@ mutable struct spectrometer_visible__channel___geometry_matrix__interpolated{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___geometry_matrix__interpolated} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___geometry_matrix__interpolated} + _parent::WeakRef end function spectrometer_visible__channel___geometry_matrix__interpolated{T}() where T @@ -32094,8 +32094,8 @@ mutable struct spectrometer_visible__channel___geometry_matrix__emission_grid__g _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___geometry_matrix__emission_grid__grid_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___geometry_matrix__emission_grid__grid_type} + _parent::WeakRef end function spectrometer_visible__channel___geometry_matrix__emission_grid__grid_type{T}() where T @@ -32112,13 +32112,13 @@ mutable struct spectrometer_visible__channel___geometry_matrix__emission_grid{T} var"dim2_σ" :: Vector{<:T} var"dim3" :: Vector{<:T} var"dim3_σ" :: Vector{<:T} - var"grid_type" :: spectrometer_visible__channel___geometry_matrix__emission_grid__grid_type{T} + var"grid_type"::spectrometer_visible__channel___geometry_matrix__emission_grid__grid_type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___geometry_matrix__emission_grid} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___geometry_matrix__emission_grid} + _parent::WeakRef end function spectrometer_visible__channel___geometry_matrix__emission_grid{T}() where T @@ -32130,18 +32130,18 @@ end spectrometer_visible__channel___geometry_matrix__emission_grid() = spectrometer_visible__channel___geometry_matrix__emission_grid{Float64}() mutable struct spectrometer_visible__channel___geometry_matrix{T} <: IDS{T} - var"emission_grid" :: spectrometer_visible__channel___geometry_matrix__emission_grid{T} - var"interpolated" :: spectrometer_visible__channel___geometry_matrix__interpolated{T} + var"emission_grid"::spectrometer_visible__channel___geometry_matrix__emission_grid{T} + var"interpolated"::spectrometer_visible__channel___geometry_matrix__interpolated{T} var"voxel_map" :: Array{Int, 3} var"voxels_n" :: Int - var"with_reflections" :: spectrometer_visible__channel___geometry_matrix__with_reflections{T} - var"without_reflections" :: spectrometer_visible__channel___geometry_matrix__without_reflections{T} + var"with_reflections"::spectrometer_visible__channel___geometry_matrix__with_reflections{T} + var"without_reflections"::spectrometer_visible__channel___geometry_matrix__without_reflections{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___geometry_matrix} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___geometry_matrix} + _parent::WeakRef end function spectrometer_visible__channel___geometry_matrix{T}() where T @@ -32163,8 +32163,8 @@ mutable struct spectrometer_visible__channel___filter_spectrometer__processed_li _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___filter_spectrometer__processed_line} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___filter_spectrometer__processed_line} + _parent::WeakRef end function spectrometer_visible__channel___filter_spectrometer__processed_line{T}() where T @@ -32182,8 +32182,8 @@ mutable struct spectrometer_visible__channel___filter_spectrometer__photon_count _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___filter_spectrometer__photon_count} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___filter_spectrometer__photon_count} + _parent::WeakRef end function spectrometer_visible__channel___filter_spectrometer__photon_count{T}() where T @@ -32201,8 +32201,8 @@ mutable struct spectrometer_visible__channel___filter_spectrometer__photoelectri _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___filter_spectrometer__photoelectric_voltage} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___filter_spectrometer__photoelectric_voltage} + _parent::WeakRef end function spectrometer_visible__channel___filter_spectrometer__photoelectric_voltage{T}() where T @@ -32220,8 +32220,8 @@ mutable struct spectrometer_visible__channel___filter_spectrometer__output_volta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___filter_spectrometer__output_voltage} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___filter_spectrometer__output_voltage} + _parent::WeakRef end function spectrometer_visible__channel___filter_spectrometer__output_voltage{T}() where T @@ -32240,8 +32240,8 @@ mutable struct spectrometer_visible__channel___filter_spectrometer__filter{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___filter_spectrometer__filter} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___filter_spectrometer__filter} + _parent::WeakRef end function spectrometer_visible__channel___filter_spectrometer__filter{T}() where T @@ -32254,11 +32254,11 @@ spectrometer_visible__channel___filter_spectrometer__filter() = spectrometer_vis mutable struct spectrometer_visible__channel___filter_spectrometer{T} <: IDS{T} var"exposure_time" :: T var"exposure_time_σ" :: T - var"filter" :: spectrometer_visible__channel___filter_spectrometer__filter{T} - var"output_voltage" :: spectrometer_visible__channel___filter_spectrometer__output_voltage{T} - var"photoelectric_voltage" :: spectrometer_visible__channel___filter_spectrometer__photoelectric_voltage{T} - var"photon_count" :: spectrometer_visible__channel___filter_spectrometer__photon_count{T} - var"processed_line" :: IDSvector{spectrometer_visible__channel___filter_spectrometer__processed_line{T}} + var"filter"::spectrometer_visible__channel___filter_spectrometer__filter{T} + var"output_voltage"::spectrometer_visible__channel___filter_spectrometer__output_voltage{T} + var"photoelectric_voltage"::spectrometer_visible__channel___filter_spectrometer__photoelectric_voltage{T} + var"photon_count"::spectrometer_visible__channel___filter_spectrometer__photon_count{T} + var"processed_line"::IDSvector{spectrometer_visible__channel___filter_spectrometer__processed_line{T}} var"radiance_calibration" :: Vector{<:T} var"radiance_calibration_σ" :: Vector{<:T} var"radiance_calibration_date" :: String @@ -32270,8 +32270,8 @@ mutable struct spectrometer_visible__channel___filter_spectrometer{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___filter_spectrometer} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___filter_spectrometer} + _parent::WeakRef end function spectrometer_visible__channel___filter_spectrometer{T}() where T @@ -32297,8 +32297,8 @@ mutable struct spectrometer_visible__channel___fibre_image__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_image__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_image__outline} + _parent::WeakRef end function spectrometer_visible__channel___fibre_image__outline{T}() where T @@ -32317,8 +32317,8 @@ mutable struct spectrometer_visible__channel___fibre_image__circular{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_image__circular} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_image__circular} + _parent::WeakRef end function spectrometer_visible__channel___fibre_image__circular{T}() where T @@ -32329,15 +32329,15 @@ end spectrometer_visible__channel___fibre_image__circular() = spectrometer_visible__channel___fibre_image__circular{Float64}() mutable struct spectrometer_visible__channel___fibre_image{T} <: IDS{T} - var"circular" :: spectrometer_visible__channel___fibre_image__circular{T} + var"circular"::spectrometer_visible__channel___fibre_image__circular{T} var"geometry_type" :: Int - var"outline" :: spectrometer_visible__channel___fibre_image__outline{T} + var"outline"::spectrometer_visible__channel___fibre_image__outline{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_image} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_image} + _parent::WeakRef end function spectrometer_visible__channel___fibre_image{T}() where T @@ -32360,8 +32360,8 @@ mutable struct spectrometer_visible__channel___fibre_bundle__geometry__x3_unit_v _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__x3_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___fibre_bundle__geometry__x3_unit_vector{T}() where T @@ -32382,8 +32382,8 @@ mutable struct spectrometer_visible__channel___fibre_bundle__geometry__x2_unit_v _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__x2_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___fibre_bundle__geometry__x2_unit_vector{T}() where T @@ -32404,8 +32404,8 @@ mutable struct spectrometer_visible__channel___fibre_bundle__geometry__x1_unit_v _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__x1_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___fibre_bundle__geometry__x1_unit_vector{T}() where T @@ -32424,8 +32424,8 @@ mutable struct spectrometer_visible__channel___fibre_bundle__geometry__outline{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__outline} + _parent::WeakRef end function spectrometer_visible__channel___fibre_bundle__geometry__outline{T}() where T @@ -32446,8 +32446,8 @@ mutable struct spectrometer_visible__channel___fibre_bundle__geometry__centre{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry__centre} + _parent::WeakRef end function spectrometer_visible__channel___fibre_bundle__geometry__centre{T}() where T @@ -32458,26 +32458,26 @@ end spectrometer_visible__channel___fibre_bundle__geometry__centre() = spectrometer_visible__channel___fibre_bundle__geometry__centre{Float64}() mutable struct spectrometer_visible__channel___fibre_bundle__geometry{T} <: IDS{T} - var"centre" :: spectrometer_visible__channel___fibre_bundle__geometry__centre{T} + var"centre"::spectrometer_visible__channel___fibre_bundle__geometry__centre{T} var"geometry_type" :: Int - var"outline" :: spectrometer_visible__channel___fibre_bundle__geometry__outline{T} + var"outline"::spectrometer_visible__channel___fibre_bundle__geometry__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: spectrometer_visible__channel___fibre_bundle__geometry__x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_visible__channel___fibre_bundle__geometry__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: spectrometer_visible__channel___fibre_bundle__geometry__x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_visible__channel___fibre_bundle__geometry__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_visible__channel___fibre_bundle__geometry__x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_visible__channel___fibre_bundle__geometry__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_bundle__geometry} + _parent::WeakRef end function spectrometer_visible__channel___fibre_bundle__geometry{T}() where T @@ -32501,8 +32501,8 @@ mutable struct spectrometer_visible__channel___fibre_bundle__fibre_positions{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_bundle__fibre_positions} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_bundle__fibre_positions} + _parent::WeakRef end function spectrometer_visible__channel___fibre_bundle__fibre_positions{T}() where T @@ -32513,16 +32513,16 @@ end spectrometer_visible__channel___fibre_bundle__fibre_positions() = spectrometer_visible__channel___fibre_bundle__fibre_positions{Float64}() mutable struct spectrometer_visible__channel___fibre_bundle{T} <: IDS{T} - var"fibre_positions" :: spectrometer_visible__channel___fibre_bundle__fibre_positions{T} + var"fibre_positions"::spectrometer_visible__channel___fibre_bundle__fibre_positions{T} var"fibre_radius" :: T var"fibre_radius_σ" :: T - var"geometry" :: spectrometer_visible__channel___fibre_bundle__geometry{T} + var"geometry"::spectrometer_visible__channel___fibre_bundle__geometry{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___fibre_bundle} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___fibre_bundle} + _parent::WeakRef end function spectrometer_visible__channel___fibre_bundle{T}() where T @@ -32542,8 +32542,8 @@ mutable struct spectrometer_visible__channel___etendue_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___etendue_method} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___etendue_method} + _parent::WeakRef end function spectrometer_visible__channel___etendue_method{T}() where T @@ -32564,8 +32564,8 @@ mutable struct spectrometer_visible__channel___detector_image__outline{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector_image__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector_image__outline} + _parent::WeakRef end function spectrometer_visible__channel___detector_image__outline{T}() where T @@ -32584,8 +32584,8 @@ mutable struct spectrometer_visible__channel___detector_image__circular{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector_image__circular} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector_image__circular} + _parent::WeakRef end function spectrometer_visible__channel___detector_image__circular{T}() where T @@ -32596,15 +32596,15 @@ end spectrometer_visible__channel___detector_image__circular() = spectrometer_visible__channel___detector_image__circular{Float64}() mutable struct spectrometer_visible__channel___detector_image{T} <: IDS{T} - var"circular" :: spectrometer_visible__channel___detector_image__circular{T} + var"circular"::spectrometer_visible__channel___detector_image__circular{T} var"geometry_type" :: Int - var"outline" :: spectrometer_visible__channel___detector_image__outline{T} + var"outline"::spectrometer_visible__channel___detector_image__outline{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector_image} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector_image} + _parent::WeakRef end function spectrometer_visible__channel___detector_image{T}() where T @@ -32627,8 +32627,8 @@ mutable struct spectrometer_visible__channel___detector__x3_unit_vector{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector__x3_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___detector__x3_unit_vector{T}() where T @@ -32649,8 +32649,8 @@ mutable struct spectrometer_visible__channel___detector__x2_unit_vector{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector__x2_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___detector__x2_unit_vector{T}() where T @@ -32671,8 +32671,8 @@ mutable struct spectrometer_visible__channel___detector__x1_unit_vector{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector__x1_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___detector__x1_unit_vector{T}() where T @@ -32691,8 +32691,8 @@ mutable struct spectrometer_visible__channel___detector__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector__outline} + _parent::WeakRef end function spectrometer_visible__channel___detector__outline{T}() where T @@ -32713,8 +32713,8 @@ mutable struct spectrometer_visible__channel___detector__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector__centre} + _parent::WeakRef end function spectrometer_visible__channel___detector__centre{T}() where T @@ -32725,26 +32725,26 @@ end spectrometer_visible__channel___detector__centre() = spectrometer_visible__channel___detector__centre{Float64}() mutable struct spectrometer_visible__channel___detector{T} <: IDS{T} - var"centre" :: spectrometer_visible__channel___detector__centre{T} + var"centre"::spectrometer_visible__channel___detector__centre{T} var"geometry_type" :: Int - var"outline" :: spectrometer_visible__channel___detector__outline{T} + var"outline"::spectrometer_visible__channel___detector__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: spectrometer_visible__channel___detector__x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_visible__channel___detector__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: spectrometer_visible__channel___detector__x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_visible__channel___detector__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_visible__channel___detector__x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_visible__channel___detector__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___detector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___detector} + _parent::WeakRef end function spectrometer_visible__channel___detector{T}() where T @@ -32770,8 +32770,8 @@ mutable struct spectrometer_visible__channel___aperture___x3_unit_vector{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___aperture___x3_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___aperture___x3_unit_vector{T}() where T @@ -32792,8 +32792,8 @@ mutable struct spectrometer_visible__channel___aperture___x2_unit_vector{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___aperture___x2_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___aperture___x2_unit_vector{T}() where T @@ -32814,8 +32814,8 @@ mutable struct spectrometer_visible__channel___aperture___x1_unit_vector{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___aperture___x1_unit_vector} + _parent::WeakRef end function spectrometer_visible__channel___aperture___x1_unit_vector{T}() where T @@ -32834,8 +32834,8 @@ mutable struct spectrometer_visible__channel___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___aperture___outline} + _parent::WeakRef end function spectrometer_visible__channel___aperture___outline{T}() where T @@ -32856,8 +32856,8 @@ mutable struct spectrometer_visible__channel___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___aperture___centre} + _parent::WeakRef end function spectrometer_visible__channel___aperture___centre{T}() where T @@ -32868,26 +32868,26 @@ end spectrometer_visible__channel___aperture___centre() = spectrometer_visible__channel___aperture___centre{Float64}() mutable struct spectrometer_visible__channel___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: spectrometer_visible__channel___aperture___centre{T} + var"centre"::spectrometer_visible__channel___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: spectrometer_visible__channel___aperture___outline{T} + var"outline"::spectrometer_visible__channel___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: spectrometer_visible__channel___aperture___x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_visible__channel___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: spectrometer_visible__channel___aperture___x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_visible__channel___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_visible__channel___aperture___x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_visible__channel___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___aperture} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___aperture} + _parent::WeakRef end function spectrometer_visible__channel___aperture{T}() where T @@ -32913,8 +32913,8 @@ mutable struct spectrometer_visible__channel___active_spatial_resolution___width _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___active_spatial_resolution___width} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___active_spatial_resolution___width} + _parent::WeakRef end function spectrometer_visible__channel___active_spatial_resolution___width{T}() where T @@ -32935,8 +32935,8 @@ mutable struct spectrometer_visible__channel___active_spatial_resolution___centr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___active_spatial_resolution___centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___active_spatial_resolution___centre} + _parent::WeakRef end function spectrometer_visible__channel___active_spatial_resolution___centre{T}() where T @@ -32947,15 +32947,15 @@ end spectrometer_visible__channel___active_spatial_resolution___centre() = spectrometer_visible__channel___active_spatial_resolution___centre{Float64}() mutable struct spectrometer_visible__channel___active_spatial_resolution{T} <: IDSvectorTimeElement{T} - var"centre" :: spectrometer_visible__channel___active_spatial_resolution___centre{T} + var"centre"::spectrometer_visible__channel___active_spatial_resolution___centre{T} var"time" :: Float64 - var"width" :: spectrometer_visible__channel___active_spatial_resolution___width{T} + var"width"::spectrometer_visible__channel___active_spatial_resolution___width{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel___active_spatial_resolution} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel___active_spatial_resolution} + _parent::WeakRef end function spectrometer_visible__channel___active_spatial_resolution{T}() where T @@ -32968,36 +32968,36 @@ end spectrometer_visible__channel___active_spatial_resolution() = spectrometer_visible__channel___active_spatial_resolution{Float64}() mutable struct spectrometer_visible__channel{T} <: IDSvectorStaticElement{T} - var"active_spatial_resolution" :: IDSvector{spectrometer_visible__channel___active_spatial_resolution{T}} - var"aperture" :: IDSvector{spectrometer_visible__channel___aperture{T}} - var"detector" :: spectrometer_visible__channel___detector{T} - var"detector_image" :: spectrometer_visible__channel___detector_image{T} + var"active_spatial_resolution"::IDSvector{spectrometer_visible__channel___active_spatial_resolution{T}} + var"aperture"::IDSvector{spectrometer_visible__channel___aperture{T}} + var"detector"::spectrometer_visible__channel___detector{T} + var"detector_image"::spectrometer_visible__channel___detector_image{T} var"etendue" :: T var"etendue_σ" :: T - var"etendue_method" :: spectrometer_visible__channel___etendue_method{T} - var"fibre_bundle" :: spectrometer_visible__channel___fibre_bundle{T} - var"fibre_image" :: spectrometer_visible__channel___fibre_image{T} - var"filter_spectrometer" :: spectrometer_visible__channel___filter_spectrometer{T} - var"geometry_matrix" :: spectrometer_visible__channel___geometry_matrix{T} - var"grating_spectrometer" :: spectrometer_visible__channel___grating_spectrometer{T} - var"isotope_ratios" :: spectrometer_visible__channel___isotope_ratios{T} - var"light_collection_efficiencies" :: spectrometer_visible__channel___light_collection_efficiencies{T} - var"line_of_sight" :: spectrometer_visible__channel___line_of_sight{T} + var"etendue_method"::spectrometer_visible__channel___etendue_method{T} + var"fibre_bundle"::spectrometer_visible__channel___fibre_bundle{T} + var"fibre_image"::spectrometer_visible__channel___fibre_image{T} + var"filter_spectrometer"::spectrometer_visible__channel___filter_spectrometer{T} + var"geometry_matrix"::spectrometer_visible__channel___geometry_matrix{T} + var"grating_spectrometer"::spectrometer_visible__channel___grating_spectrometer{T} + var"isotope_ratios"::spectrometer_visible__channel___isotope_ratios{T} + var"light_collection_efficiencies"::spectrometer_visible__channel___light_collection_efficiencies{T} + var"line_of_sight"::spectrometer_visible__channel___line_of_sight{T} var"name" :: String var"object_observed" :: String - var"optical_element" :: IDSvector{spectrometer_visible__channel___optical_element{T}} - var"polarization_spectroscopy" :: spectrometer_visible__channel___polarization_spectroscopy{T} - var"polarizer" :: spectrometer_visible__channel___polarizer{T} + var"optical_element"::IDSvector{spectrometer_visible__channel___optical_element{T}} + var"polarization_spectroscopy"::spectrometer_visible__channel___polarization_spectroscopy{T} + var"polarizer"::spectrometer_visible__channel___polarizer{T} var"polarizer_active" :: Int - var"type" :: spectrometer_visible__channel___type{T} + var"type"::spectrometer_visible__channel___type{T} var"validity" :: Int - var"validity_timed" :: spectrometer_visible__channel___validity_timed{T} + var"validity_timed"::spectrometer_visible__channel___validity_timed{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible__channel} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible__channel} + _parent::WeakRef end function spectrometer_visible__channel{T}() where T @@ -33026,10 +33026,10 @@ end spectrometer_visible__channel() = spectrometer_visible__channel{Float64}() mutable struct spectrometer_visible{T} <: IDStop{T} - var"channel" :: IDSvector{spectrometer_visible__channel{T}} - var"code" :: spectrometer_visible__code{T} + var"channel"::IDSvector{spectrometer_visible__channel{T}} + var"code"::spectrometer_visible__code{T} var"detector_layout" :: String - var"ids_properties" :: spectrometer_visible__ids_properties{T} + var"ids_properties"::spectrometer_visible__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -33037,8 +33037,8 @@ mutable struct spectrometer_visible{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_visible} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_visible} + _parent::WeakRef end function spectrometer_visible{T}() where T @@ -33059,8 +33059,8 @@ mutable struct spectrometer_uv__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__version_put} + _parent::WeakRef end function spectrometer_uv__ids_properties__version_put{T}() where T @@ -33077,8 +33077,8 @@ mutable struct spectrometer_uv__ids_properties__provenance__node{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__provenance__node} + _parent::WeakRef end function spectrometer_uv__ids_properties__provenance__node{T}() where T @@ -33089,13 +33089,13 @@ end spectrometer_uv__ids_properties__provenance__node() = spectrometer_uv__ids_properties__provenance__node{Float64}() mutable struct spectrometer_uv__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{spectrometer_uv__ids_properties__provenance__node{T}} + var"node"::IDSvector{spectrometer_uv__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__provenance} + _parent::WeakRef end function spectrometer_uv__ids_properties__provenance{T}() where T @@ -33117,8 +33117,8 @@ mutable struct spectrometer_uv__ids_properties__plugins__node___readback{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__plugins__node___readback} + _parent::WeakRef end function spectrometer_uv__ids_properties__plugins__node___readback{T}() where T @@ -33139,8 +33139,8 @@ mutable struct spectrometer_uv__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function spectrometer_uv__ids_properties__plugins__node___put_operation{T}() where T @@ -33161,8 +33161,8 @@ mutable struct spectrometer_uv__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function spectrometer_uv__ids_properties__plugins__node___get_operation{T}() where T @@ -33173,16 +33173,16 @@ end spectrometer_uv__ids_properties__plugins__node___get_operation() = spectrometer_uv__ids_properties__plugins__node___get_operation{Float64}() mutable struct spectrometer_uv__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{spectrometer_uv__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{spectrometer_uv__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{spectrometer_uv__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{spectrometer_uv__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{spectrometer_uv__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{spectrometer_uv__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__plugins__node} + _parent::WeakRef end function spectrometer_uv__ids_properties__plugins__node{T}() where T @@ -33205,8 +33205,8 @@ mutable struct spectrometer_uv__ids_properties__plugins__infrastructure_put{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function spectrometer_uv__ids_properties__plugins__infrastructure_put{T}() where T @@ -33226,8 +33226,8 @@ mutable struct spectrometer_uv__ids_properties__plugins__infrastructure_get{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function spectrometer_uv__ids_properties__plugins__infrastructure_get{T}() where T @@ -33238,15 +33238,15 @@ end spectrometer_uv__ids_properties__plugins__infrastructure_get() = spectrometer_uv__ids_properties__plugins__infrastructure_get{Float64}() mutable struct spectrometer_uv__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: spectrometer_uv__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: spectrometer_uv__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{spectrometer_uv__ids_properties__plugins__node{T}} + var"infrastructure_get"::spectrometer_uv__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::spectrometer_uv__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{spectrometer_uv__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__plugins} + _parent::WeakRef end function spectrometer_uv__ids_properties__plugins{T}() where T @@ -33267,8 +33267,8 @@ mutable struct spectrometer_uv__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties__occurrence_type} + _parent::WeakRef end function spectrometer_uv__ids_properties__occurrence_type{T}() where T @@ -33284,17 +33284,17 @@ mutable struct spectrometer_uv__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: spectrometer_uv__ids_properties__occurrence_type{T} - var"plugins" :: spectrometer_uv__ids_properties__plugins{T} - var"provenance" :: spectrometer_uv__ids_properties__provenance{T} + var"occurrence_type"::spectrometer_uv__ids_properties__occurrence_type{T} + var"plugins"::spectrometer_uv__ids_properties__plugins{T} + var"provenance"::spectrometer_uv__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: spectrometer_uv__ids_properties__version_put{T} + var"version_put"::spectrometer_uv__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__ids_properties} + _parent::WeakRef end function spectrometer_uv__ids_properties{T}() where T @@ -33316,8 +33316,8 @@ mutable struct spectrometer_uv__etendue_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__etendue_method} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__etendue_method} + _parent::WeakRef end function spectrometer_uv__etendue_method{T}() where T @@ -33338,8 +33338,8 @@ mutable struct spectrometer_uv__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__code__library} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__code__library} + _parent::WeakRef end function spectrometer_uv__code__library{T}() where T @@ -33352,7 +33352,7 @@ spectrometer_uv__code__library() = spectrometer_uv__code__library{Float64}() mutable struct spectrometer_uv__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{spectrometer_uv__code__library{T}} + var"library"::IDSvector{spectrometer_uv__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -33362,8 +33362,8 @@ mutable struct spectrometer_uv__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__code} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__code} + _parent::WeakRef end function spectrometer_uv__code{T}() where T @@ -33383,8 +33383,8 @@ mutable struct spectrometer_uv__channel___wavelength_calibration{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___wavelength_calibration} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___wavelength_calibration} + _parent::WeakRef end function spectrometer_uv__channel___wavelength_calibration{T}() where T @@ -33401,8 +33401,8 @@ mutable struct spectrometer_uv__channel___validity_timed{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___validity_timed} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___validity_timed} + _parent::WeakRef end function spectrometer_uv__channel___validity_timed{T}() where T @@ -33420,8 +33420,8 @@ mutable struct spectrometer_uv__channel___supply_high_voltage___voltage_set{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___supply_high_voltage___voltage_set} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___supply_high_voltage___voltage_set} + _parent::WeakRef end function spectrometer_uv__channel___supply_high_voltage___voltage_set{T}() where T @@ -33433,13 +33433,13 @@ spectrometer_uv__channel___supply_high_voltage___voltage_set() = spectrometer_uv mutable struct spectrometer_uv__channel___supply_high_voltage{T} <: IDSvectorStaticElement{T} var"object" :: String - var"voltage_set" :: spectrometer_uv__channel___supply_high_voltage___voltage_set{T} + var"voltage_set"::spectrometer_uv__channel___supply_high_voltage___voltage_set{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___supply_high_voltage} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___supply_high_voltage} + _parent::WeakRef end function spectrometer_uv__channel___supply_high_voltage{T}() where T @@ -33458,8 +33458,8 @@ mutable struct spectrometer_uv__channel___radiance_spectral{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___radiance_spectral} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___radiance_spectral} + _parent::WeakRef end function spectrometer_uv__channel___radiance_spectral{T}() where T @@ -33477,8 +33477,8 @@ mutable struct spectrometer_uv__channel___processed_line___radiance{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___processed_line___radiance} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___processed_line___radiance} + _parent::WeakRef end function spectrometer_uv__channel___processed_line___radiance{T}() where T @@ -33496,8 +33496,8 @@ mutable struct spectrometer_uv__channel___processed_line___intensity{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___processed_line___intensity} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___processed_line___intensity} + _parent::WeakRef end function spectrometer_uv__channel___processed_line___intensity{T}() where T @@ -33508,17 +33508,17 @@ end spectrometer_uv__channel___processed_line___intensity() = spectrometer_uv__channel___processed_line___intensity{Float64}() mutable struct spectrometer_uv__channel___processed_line{T} <: IDSvectorStaticElement{T} - var"intensity" :: spectrometer_uv__channel___processed_line___intensity{T} + var"intensity"::spectrometer_uv__channel___processed_line___intensity{T} var"label" :: String - var"radiance" :: spectrometer_uv__channel___processed_line___radiance{T} + var"radiance"::spectrometer_uv__channel___processed_line___radiance{T} var"wavelength_central" :: T var"wavelength_central_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___processed_line} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___processed_line} + _parent::WeakRef end function spectrometer_uv__channel___processed_line{T}() where T @@ -33542,8 +33542,8 @@ mutable struct spectrometer_uv__channel___line_of_sight__second_point{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___line_of_sight__second_point} + _parent::WeakRef end function spectrometer_uv__channel___line_of_sight__second_point{T}() where T @@ -33561,8 +33561,8 @@ mutable struct spectrometer_uv__channel___line_of_sight__position_parameter{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___line_of_sight__position_parameter} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___line_of_sight__position_parameter} + _parent::WeakRef end function spectrometer_uv__channel___line_of_sight__position_parameter{T}() where T @@ -33580,8 +33580,8 @@ mutable struct spectrometer_uv__channel___line_of_sight__moving_mode{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___line_of_sight__moving_mode} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___line_of_sight__moving_mode} + _parent::WeakRef end function spectrometer_uv__channel___line_of_sight__moving_mode{T}() where T @@ -33602,8 +33602,8 @@ mutable struct spectrometer_uv__channel___line_of_sight__first_point{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___line_of_sight__first_point} + _parent::WeakRef end function spectrometer_uv__channel___line_of_sight__first_point{T}() where T @@ -33616,18 +33616,18 @@ spectrometer_uv__channel___line_of_sight__first_point() = spectrometer_uv__chann mutable struct spectrometer_uv__channel___line_of_sight{T} <: IDS{T} var"amplitude_parameter" :: T var"amplitude_parameter_σ" :: T - var"first_point" :: spectrometer_uv__channel___line_of_sight__first_point{T} - var"moving_mode" :: spectrometer_uv__channel___line_of_sight__moving_mode{T} + var"first_point"::spectrometer_uv__channel___line_of_sight__first_point{T} + var"moving_mode"::spectrometer_uv__channel___line_of_sight__moving_mode{T} var"period" :: T var"period_σ" :: T - var"position_parameter" :: spectrometer_uv__channel___line_of_sight__position_parameter{T} - var"second_point" :: spectrometer_uv__channel___line_of_sight__second_point{T} + var"position_parameter"::spectrometer_uv__channel___line_of_sight__position_parameter{T} + var"second_point"::spectrometer_uv__channel___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___line_of_sight} + _parent::WeakRef end function spectrometer_uv__channel___line_of_sight{T}() where T @@ -33649,8 +33649,8 @@ mutable struct spectrometer_uv__channel___intensity_spectrum{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___intensity_spectrum} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___intensity_spectrum} + _parent::WeakRef end function spectrometer_uv__channel___intensity_spectrum{T}() where T @@ -33671,8 +33671,8 @@ mutable struct spectrometer_uv__channel___grating__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__x3_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___grating__x3_unit_vector{T}() where T @@ -33693,8 +33693,8 @@ mutable struct spectrometer_uv__channel___grating__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__x2_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___grating__x2_unit_vector{T}() where T @@ -33715,8 +33715,8 @@ mutable struct spectrometer_uv__channel___grating__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__x1_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___grating__x1_unit_vector{T}() where T @@ -33734,8 +33734,8 @@ mutable struct spectrometer_uv__channel___grating__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__type} + _parent::WeakRef end function spectrometer_uv__channel___grating__type{T}() where T @@ -33756,8 +33756,8 @@ mutable struct spectrometer_uv__channel___grating__summit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__summit} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__summit} + _parent::WeakRef end function spectrometer_uv__channel___grating__summit{T}() where T @@ -33776,8 +33776,8 @@ mutable struct spectrometer_uv__channel___grating__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__outline} + _parent::WeakRef end function spectrometer_uv__channel___grating__outline{T}() where T @@ -33798,8 +33798,8 @@ mutable struct spectrometer_uv__channel___grating__image_field__x3_unit_vector{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__image_field__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__image_field__x3_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___grating__image_field__x3_unit_vector{T}() where T @@ -33817,8 +33817,8 @@ mutable struct spectrometer_uv__channel___grating__image_field__geometry_type{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__image_field__geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__image_field__geometry_type} + _parent::WeakRef end function spectrometer_uv__channel___grating__image_field__geometry_type{T}() where T @@ -33839,8 +33839,8 @@ mutable struct spectrometer_uv__channel___grating__image_field__centre{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__image_field__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__image_field__centre} + _parent::WeakRef end function spectrometer_uv__channel___grating__image_field__centre{T}() where T @@ -33851,17 +33851,17 @@ end spectrometer_uv__channel___grating__image_field__centre() = spectrometer_uv__channel___grating__image_field__centre{Float64}() mutable struct spectrometer_uv__channel___grating__image_field{T} <: IDS{T} - var"centre" :: spectrometer_uv__channel___grating__image_field__centre{T} + var"centre"::spectrometer_uv__channel___grating__image_field__centre{T} var"curvature_radius" :: T var"curvature_radius_σ" :: T - var"geometry_type" :: spectrometer_uv__channel___grating__image_field__geometry_type{T} - var"x3_unit_vector" :: spectrometer_uv__channel___grating__image_field__x3_unit_vector{T} + var"geometry_type"::spectrometer_uv__channel___grating__image_field__geometry_type{T} + var"x3_unit_vector"::spectrometer_uv__channel___grating__image_field__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__image_field} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__image_field} + _parent::WeakRef end function spectrometer_uv__channel___grating__image_field{T}() where T @@ -33882,8 +33882,8 @@ mutable struct spectrometer_uv__channel___grating__geometry_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__geometry_type} + _parent::WeakRef end function spectrometer_uv__channel___grating__geometry_type{T}() where T @@ -33904,8 +33904,8 @@ mutable struct spectrometer_uv__channel___grating__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating__centre} + _parent::WeakRef end function spectrometer_uv__channel___grating__centre{T}() where T @@ -33916,25 +33916,25 @@ end spectrometer_uv__channel___grating__centre() = spectrometer_uv__channel___grating__centre{Float64}() mutable struct spectrometer_uv__channel___grating{T} <: IDS{T} - var"centre" :: spectrometer_uv__channel___grating__centre{T} + var"centre"::spectrometer_uv__channel___grating__centre{T} var"curvature_radius" :: T var"curvature_radius_σ" :: T - var"geometry_type" :: spectrometer_uv__channel___grating__geometry_type{T} + var"geometry_type"::spectrometer_uv__channel___grating__geometry_type{T} var"groove_density" :: T var"groove_density_σ" :: T - var"image_field" :: spectrometer_uv__channel___grating__image_field{T} - var"outline" :: spectrometer_uv__channel___grating__outline{T} - var"summit" :: spectrometer_uv__channel___grating__summit{T} - var"type" :: spectrometer_uv__channel___grating__type{T} - var"x1_unit_vector" :: spectrometer_uv__channel___grating__x1_unit_vector{T} - var"x2_unit_vector" :: spectrometer_uv__channel___grating__x2_unit_vector{T} - var"x3_unit_vector" :: spectrometer_uv__channel___grating__x3_unit_vector{T} + var"image_field"::spectrometer_uv__channel___grating__image_field{T} + var"outline"::spectrometer_uv__channel___grating__outline{T} + var"summit"::spectrometer_uv__channel___grating__summit{T} + var"type"::spectrometer_uv__channel___grating__type{T} + var"x1_unit_vector"::spectrometer_uv__channel___grating__x1_unit_vector{T} + var"x2_unit_vector"::spectrometer_uv__channel___grating__x2_unit_vector{T} + var"x3_unit_vector"::spectrometer_uv__channel___grating__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___grating} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___grating} + _parent::WeakRef end function spectrometer_uv__channel___grating{T}() where T @@ -33961,8 +33961,8 @@ mutable struct spectrometer_uv__channel___detector_position_parameter{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___detector_position_parameter} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___detector_position_parameter} + _parent::WeakRef end function spectrometer_uv__channel___detector_position_parameter{T}() where T @@ -33982,8 +33982,8 @@ mutable struct spectrometer_uv__channel___detector_layout{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___detector_layout} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___detector_layout} + _parent::WeakRef end function spectrometer_uv__channel___detector_layout{T}() where T @@ -34004,8 +34004,8 @@ mutable struct spectrometer_uv__channel___detector__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___detector__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___detector__x3_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___detector__x3_unit_vector{T}() where T @@ -34026,8 +34026,8 @@ mutable struct spectrometer_uv__channel___detector__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___detector__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___detector__x2_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___detector__x2_unit_vector{T}() where T @@ -34048,8 +34048,8 @@ mutable struct spectrometer_uv__channel___detector__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___detector__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___detector__x1_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___detector__x1_unit_vector{T}() where T @@ -34068,8 +34068,8 @@ mutable struct spectrometer_uv__channel___detector__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___detector__outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___detector__outline} + _parent::WeakRef end function spectrometer_uv__channel___detector__outline{T}() where T @@ -34090,8 +34090,8 @@ mutable struct spectrometer_uv__channel___detector__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___detector__centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___detector__centre} + _parent::WeakRef end function spectrometer_uv__channel___detector__centre{T}() where T @@ -34102,26 +34102,26 @@ end spectrometer_uv__channel___detector__centre() = spectrometer_uv__channel___detector__centre{Float64}() mutable struct spectrometer_uv__channel___detector{T} <: IDS{T} - var"centre" :: spectrometer_uv__channel___detector__centre{T} + var"centre"::spectrometer_uv__channel___detector__centre{T} var"geometry_type" :: Int - var"outline" :: spectrometer_uv__channel___detector__outline{T} + var"outline"::spectrometer_uv__channel___detector__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: spectrometer_uv__channel___detector__x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_uv__channel___detector__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: spectrometer_uv__channel___detector__x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_uv__channel___detector__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_uv__channel___detector__x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_uv__channel___detector__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___detector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___detector} + _parent::WeakRef end function spectrometer_uv__channel___detector{T}() where T @@ -34147,8 +34147,8 @@ mutable struct spectrometer_uv__channel___aperture___x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___aperture___x3_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___aperture___x3_unit_vector{T}() where T @@ -34169,8 +34169,8 @@ mutable struct spectrometer_uv__channel___aperture___x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___aperture___x2_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___aperture___x2_unit_vector{T}() where T @@ -34191,8 +34191,8 @@ mutable struct spectrometer_uv__channel___aperture___x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___aperture___x1_unit_vector} + _parent::WeakRef end function spectrometer_uv__channel___aperture___x1_unit_vector{T}() where T @@ -34211,8 +34211,8 @@ mutable struct spectrometer_uv__channel___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___aperture___outline} + _parent::WeakRef end function spectrometer_uv__channel___aperture___outline{T}() where T @@ -34233,8 +34233,8 @@ mutable struct spectrometer_uv__channel___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___aperture___centre} + _parent::WeakRef end function spectrometer_uv__channel___aperture___centre{T}() where T @@ -34245,26 +34245,26 @@ end spectrometer_uv__channel___aperture___centre() = spectrometer_uv__channel___aperture___centre{Float64}() mutable struct spectrometer_uv__channel___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: spectrometer_uv__channel___aperture___centre{T} + var"centre"::spectrometer_uv__channel___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: spectrometer_uv__channel___aperture___outline{T} + var"outline"::spectrometer_uv__channel___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: spectrometer_uv__channel___aperture___x1_unit_vector{T} + var"x1_unit_vector"::spectrometer_uv__channel___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: spectrometer_uv__channel___aperture___x2_unit_vector{T} + var"x2_unit_vector"::spectrometer_uv__channel___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: spectrometer_uv__channel___aperture___x3_unit_vector{T} + var"x3_unit_vector"::spectrometer_uv__channel___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel___aperture} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel___aperture} + _parent::WeakRef end function spectrometer_uv__channel___aperture{T}() where T @@ -34280,25 +34280,25 @@ end spectrometer_uv__channel___aperture() = spectrometer_uv__channel___aperture{Float64}() mutable struct spectrometer_uv__channel{T} <: IDSvectorStaticElement{T} - var"aperture" :: IDSvector{spectrometer_uv__channel___aperture{T}} - var"detector" :: spectrometer_uv__channel___detector{T} - var"detector_layout" :: spectrometer_uv__channel___detector_layout{T} - var"detector_position_parameter" :: spectrometer_uv__channel___detector_position_parameter{T} + var"aperture"::IDSvector{spectrometer_uv__channel___aperture{T}} + var"detector"::spectrometer_uv__channel___detector{T} + var"detector_layout"::spectrometer_uv__channel___detector_layout{T} + var"detector_position_parameter"::spectrometer_uv__channel___detector_position_parameter{T} var"exposure_time" :: T var"exposure_time_σ" :: T - var"grating" :: spectrometer_uv__channel___grating{T} - var"intensity_spectrum" :: spectrometer_uv__channel___intensity_spectrum{T} - var"line_of_sight" :: spectrometer_uv__channel___line_of_sight{T} + var"grating"::spectrometer_uv__channel___grating{T} + var"intensity_spectrum"::spectrometer_uv__channel___intensity_spectrum{T} + var"line_of_sight"::spectrometer_uv__channel___line_of_sight{T} var"name" :: String - var"processed_line" :: IDSvector{spectrometer_uv__channel___processed_line{T}} + var"processed_line"::IDSvector{spectrometer_uv__channel___processed_line{T}} var"radiance_calibration" :: Vector{<:T} var"radiance_calibration_σ" :: Vector{<:T} var"radiance_calibration_date" :: String - var"radiance_spectral" :: spectrometer_uv__channel___radiance_spectral{T} - var"supply_high_voltage" :: IDSvector{spectrometer_uv__channel___supply_high_voltage{T}} + var"radiance_spectral"::spectrometer_uv__channel___radiance_spectral{T} + var"supply_high_voltage"::IDSvector{spectrometer_uv__channel___supply_high_voltage{T}} var"validity" :: Int - var"validity_timed" :: spectrometer_uv__channel___validity_timed{T} - var"wavelength_calibration" :: spectrometer_uv__channel___wavelength_calibration{T} + var"validity_timed"::spectrometer_uv__channel___validity_timed{T} + var"wavelength_calibration"::spectrometer_uv__channel___wavelength_calibration{T} var"wavelength_calibration_date" :: String var"wavelengths" :: Vector{<:T} var"wavelengths_σ" :: Vector{<:T} @@ -34306,8 +34306,8 @@ mutable struct spectrometer_uv__channel{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv__channel} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv__channel} + _parent::WeakRef end function spectrometer_uv__channel{T}() where T @@ -34330,12 +34330,12 @@ end spectrometer_uv__channel() = spectrometer_uv__channel{Float64}() mutable struct spectrometer_uv{T} <: IDStop{T} - var"channel" :: IDSvector{spectrometer_uv__channel{T}} - var"code" :: spectrometer_uv__code{T} + var"channel"::IDSvector{spectrometer_uv__channel{T}} + var"code"::spectrometer_uv__code{T} var"etendue" :: T var"etendue_σ" :: T - var"etendue_method" :: spectrometer_uv__etendue_method{T} - var"ids_properties" :: spectrometer_uv__ids_properties{T} + var"etendue_method"::spectrometer_uv__etendue_method{T} + var"ids_properties"::spectrometer_uv__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -34343,8 +34343,8 @@ mutable struct spectrometer_uv{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_uv} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_uv} + _parent::WeakRef end function spectrometer_uv{T}() where T @@ -34368,8 +34368,8 @@ mutable struct spectrometer_mass__residual_spectrum{T} <: IDSvectorTimeElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__residual_spectrum} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__residual_spectrum} + _parent::WeakRef end function spectrometer_mass__residual_spectrum{T}() where T @@ -34387,8 +34387,8 @@ mutable struct spectrometer_mass__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__version_put} + _parent::WeakRef end function spectrometer_mass__ids_properties__version_put{T}() where T @@ -34405,8 +34405,8 @@ mutable struct spectrometer_mass__ids_properties__provenance__node{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__provenance__node} + _parent::WeakRef end function spectrometer_mass__ids_properties__provenance__node{T}() where T @@ -34417,13 +34417,13 @@ end spectrometer_mass__ids_properties__provenance__node() = spectrometer_mass__ids_properties__provenance__node{Float64}() mutable struct spectrometer_mass__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{spectrometer_mass__ids_properties__provenance__node{T}} + var"node"::IDSvector{spectrometer_mass__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__provenance} + _parent::WeakRef end function spectrometer_mass__ids_properties__provenance{T}() where T @@ -34445,8 +34445,8 @@ mutable struct spectrometer_mass__ids_properties__plugins__node___readback{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__plugins__node___readback} + _parent::WeakRef end function spectrometer_mass__ids_properties__plugins__node___readback{T}() where T @@ -34467,8 +34467,8 @@ mutable struct spectrometer_mass__ids_properties__plugins__node___put_operation{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function spectrometer_mass__ids_properties__plugins__node___put_operation{T}() where T @@ -34489,8 +34489,8 @@ mutable struct spectrometer_mass__ids_properties__plugins__node___get_operation{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function spectrometer_mass__ids_properties__plugins__node___get_operation{T}() where T @@ -34501,16 +34501,16 @@ end spectrometer_mass__ids_properties__plugins__node___get_operation() = spectrometer_mass__ids_properties__plugins__node___get_operation{Float64}() mutable struct spectrometer_mass__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{spectrometer_mass__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{spectrometer_mass__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{spectrometer_mass__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{spectrometer_mass__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{spectrometer_mass__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{spectrometer_mass__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__plugins__node} + _parent::WeakRef end function spectrometer_mass__ids_properties__plugins__node{T}() where T @@ -34533,8 +34533,8 @@ mutable struct spectrometer_mass__ids_properties__plugins__infrastructure_put{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function spectrometer_mass__ids_properties__plugins__infrastructure_put{T}() where T @@ -34554,8 +34554,8 @@ mutable struct spectrometer_mass__ids_properties__plugins__infrastructure_get{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function spectrometer_mass__ids_properties__plugins__infrastructure_get{T}() where T @@ -34566,15 +34566,15 @@ end spectrometer_mass__ids_properties__plugins__infrastructure_get() = spectrometer_mass__ids_properties__plugins__infrastructure_get{Float64}() mutable struct spectrometer_mass__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: spectrometer_mass__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: spectrometer_mass__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{spectrometer_mass__ids_properties__plugins__node{T}} + var"infrastructure_get"::spectrometer_mass__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::spectrometer_mass__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{spectrometer_mass__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__plugins} + _parent::WeakRef end function spectrometer_mass__ids_properties__plugins{T}() where T @@ -34595,8 +34595,8 @@ mutable struct spectrometer_mass__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties__occurrence_type} + _parent::WeakRef end function spectrometer_mass__ids_properties__occurrence_type{T}() where T @@ -34612,17 +34612,17 @@ mutable struct spectrometer_mass__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: spectrometer_mass__ids_properties__occurrence_type{T} - var"plugins" :: spectrometer_mass__ids_properties__plugins{T} - var"provenance" :: spectrometer_mass__ids_properties__provenance{T} + var"occurrence_type"::spectrometer_mass__ids_properties__occurrence_type{T} + var"plugins"::spectrometer_mass__ids_properties__plugins{T} + var"provenance"::spectrometer_mass__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: spectrometer_mass__ids_properties__version_put{T} + var"version_put"::spectrometer_mass__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__ids_properties} + _parent::WeakRef end function spectrometer_mass__ids_properties{T}() where T @@ -34647,8 +34647,8 @@ mutable struct spectrometer_mass__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__code__library} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__code__library} + _parent::WeakRef end function spectrometer_mass__code__library{T}() where T @@ -34661,7 +34661,7 @@ spectrometer_mass__code__library() = spectrometer_mass__code__library{Float64}() mutable struct spectrometer_mass__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{spectrometer_mass__code__library{T}} + var"library"::IDSvector{spectrometer_mass__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -34671,8 +34671,8 @@ mutable struct spectrometer_mass__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__code} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__code} + _parent::WeakRef end function spectrometer_mass__code{T}() where T @@ -34699,8 +34699,8 @@ mutable struct spectrometer_mass__channel{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass__channel} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass__channel} + _parent::WeakRef end function spectrometer_mass__channel{T}() where T @@ -34711,21 +34711,21 @@ end spectrometer_mass__channel() = spectrometer_mass__channel{Float64}() mutable struct spectrometer_mass{T} <: IDStop{T} - var"channel" :: IDSvector{spectrometer_mass__channel{T}} - var"code" :: spectrometer_mass__code{T} + var"channel"::IDSvector{spectrometer_mass__channel{T}} + var"code"::spectrometer_mass__code{T} var"identifier" :: String - var"ids_properties" :: spectrometer_mass__ids_properties{T} + var"ids_properties"::spectrometer_mass__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"name" :: String - var"residual_spectrum" :: IDSvector{spectrometer_mass__residual_spectrum{T}} + var"residual_spectrum"::IDSvector{spectrometer_mass__residual_spectrum{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,spectrometer_mass} - _parent :: WeakRef + _ref::Union{Nothing,spectrometer_mass} + _parent::WeakRef end function spectrometer_mass{T}() where T @@ -34747,8 +34747,8 @@ mutable struct solid_mechanics__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__version_put} + _parent::WeakRef end function solid_mechanics__ids_properties__version_put{T}() where T @@ -34765,8 +34765,8 @@ mutable struct solid_mechanics__ids_properties__provenance__node{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__provenance__node} + _parent::WeakRef end function solid_mechanics__ids_properties__provenance__node{T}() where T @@ -34777,13 +34777,13 @@ end solid_mechanics__ids_properties__provenance__node() = solid_mechanics__ids_properties__provenance__node{Float64}() mutable struct solid_mechanics__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{solid_mechanics__ids_properties__provenance__node{T}} + var"node"::IDSvector{solid_mechanics__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__provenance} + _parent::WeakRef end function solid_mechanics__ids_properties__provenance{T}() where T @@ -34805,8 +34805,8 @@ mutable struct solid_mechanics__ids_properties__plugins__node___readback{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__plugins__node___readback} + _parent::WeakRef end function solid_mechanics__ids_properties__plugins__node___readback{T}() where T @@ -34827,8 +34827,8 @@ mutable struct solid_mechanics__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function solid_mechanics__ids_properties__plugins__node___put_operation{T}() where T @@ -34849,8 +34849,8 @@ mutable struct solid_mechanics__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function solid_mechanics__ids_properties__plugins__node___get_operation{T}() where T @@ -34861,16 +34861,16 @@ end solid_mechanics__ids_properties__plugins__node___get_operation() = solid_mechanics__ids_properties__plugins__node___get_operation{Float64}() mutable struct solid_mechanics__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{solid_mechanics__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{solid_mechanics__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{solid_mechanics__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{solid_mechanics__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{solid_mechanics__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{solid_mechanics__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__plugins__node} + _parent::WeakRef end function solid_mechanics__ids_properties__plugins__node{T}() where T @@ -34893,8 +34893,8 @@ mutable struct solid_mechanics__ids_properties__plugins__infrastructure_put{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function solid_mechanics__ids_properties__plugins__infrastructure_put{T}() where T @@ -34914,8 +34914,8 @@ mutable struct solid_mechanics__ids_properties__plugins__infrastructure_get{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function solid_mechanics__ids_properties__plugins__infrastructure_get{T}() where T @@ -34926,15 +34926,15 @@ end solid_mechanics__ids_properties__plugins__infrastructure_get() = solid_mechanics__ids_properties__plugins__infrastructure_get{Float64}() mutable struct solid_mechanics__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: solid_mechanics__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: solid_mechanics__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{solid_mechanics__ids_properties__plugins__node{T}} + var"infrastructure_get"::solid_mechanics__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::solid_mechanics__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{solid_mechanics__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__plugins} + _parent::WeakRef end function solid_mechanics__ids_properties__plugins{T}() where T @@ -34955,8 +34955,8 @@ mutable struct solid_mechanics__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties__occurrence_type} + _parent::WeakRef end function solid_mechanics__ids_properties__occurrence_type{T}() where T @@ -34972,17 +34972,17 @@ mutable struct solid_mechanics__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: solid_mechanics__ids_properties__occurrence_type{T} - var"plugins" :: solid_mechanics__ids_properties__plugins{T} - var"provenance" :: solid_mechanics__ids_properties__provenance{T} + var"occurrence_type"::solid_mechanics__ids_properties__occurrence_type{T} + var"plugins"::solid_mechanics__ids_properties__plugins{T} + var"provenance"::solid_mechanics__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: solid_mechanics__ids_properties__version_put{T} + var"version_put"::solid_mechanics__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__ids_properties} + _parent::WeakRef end function solid_mechanics__ids_properties{T}() where T @@ -35007,8 +35007,8 @@ mutable struct solid_mechanics__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__code__library} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__code__library} + _parent::WeakRef end function solid_mechanics__code__library{T}() where T @@ -35021,7 +35021,7 @@ solid_mechanics__code__library() = solid_mechanics__code__library{Float64}() mutable struct solid_mechanics__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{solid_mechanics__code__library{T}} + var"library"::IDSvector{solid_mechanics__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -35031,8 +35031,8 @@ mutable struct solid_mechanics__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__code} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__code} + _parent::WeakRef end function solid_mechanics__code{T}() where T @@ -35054,8 +35054,8 @@ mutable struct solid_mechanics__center_stack__stress__vonmises{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__stress__vonmises} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__stress__vonmises} + _parent::WeakRef end function solid_mechanics__center_stack__stress__vonmises{T}() where T @@ -35076,8 +35076,8 @@ mutable struct solid_mechanics__center_stack__stress__radial{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__stress__radial} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__stress__radial} + _parent::WeakRef end function solid_mechanics__center_stack__stress__radial{T}() where T @@ -35098,8 +35098,8 @@ mutable struct solid_mechanics__center_stack__stress__hoop{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__stress__hoop} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__stress__hoop} + _parent::WeakRef end function solid_mechanics__center_stack__stress__hoop{T}() where T @@ -35120,8 +35120,8 @@ mutable struct solid_mechanics__center_stack__stress__axial{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__stress__axial} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__stress__axial} + _parent::WeakRef end function solid_mechanics__center_stack__stress__axial{T}() where T @@ -35132,16 +35132,16 @@ end solid_mechanics__center_stack__stress__axial() = solid_mechanics__center_stack__stress__axial{Float64}() mutable struct solid_mechanics__center_stack__stress{T} <: IDS{T} - var"axial" :: solid_mechanics__center_stack__stress__axial{T} - var"hoop" :: solid_mechanics__center_stack__stress__hoop{T} - var"radial" :: solid_mechanics__center_stack__stress__radial{T} - var"vonmises" :: solid_mechanics__center_stack__stress__vonmises{T} + var"axial"::solid_mechanics__center_stack__stress__axial{T} + var"hoop"::solid_mechanics__center_stack__stress__hoop{T} + var"radial"::solid_mechanics__center_stack__stress__radial{T} + var"vonmises"::solid_mechanics__center_stack__stress__vonmises{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__stress} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__stress} + _parent::WeakRef end function solid_mechanics__center_stack__stress{T}() where T @@ -35166,8 +35166,8 @@ mutable struct solid_mechanics__center_stack__properties__young_modulus{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__properties__young_modulus} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__properties__young_modulus} + _parent::WeakRef end function solid_mechanics__center_stack__properties__young_modulus{T}() where T @@ -35188,8 +35188,8 @@ mutable struct solid_mechanics__center_stack__properties__yield_strength{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__properties__yield_strength} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__properties__yield_strength} + _parent::WeakRef end function solid_mechanics__center_stack__properties__yield_strength{T}() where T @@ -35210,8 +35210,8 @@ mutable struct solid_mechanics__center_stack__properties__poisson_ratio{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__properties__poisson_ratio} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__properties__poisson_ratio} + _parent::WeakRef end function solid_mechanics__center_stack__properties__poisson_ratio{T}() where T @@ -35222,15 +35222,15 @@ end solid_mechanics__center_stack__properties__poisson_ratio() = solid_mechanics__center_stack__properties__poisson_ratio{Float64}() mutable struct solid_mechanics__center_stack__properties{T} <: IDS{T} - var"poisson_ratio" :: solid_mechanics__center_stack__properties__poisson_ratio{T} - var"yield_strength" :: solid_mechanics__center_stack__properties__yield_strength{T} - var"young_modulus" :: solid_mechanics__center_stack__properties__young_modulus{T} + var"poisson_ratio"::solid_mechanics__center_stack__properties__poisson_ratio{T} + var"yield_strength"::solid_mechanics__center_stack__properties__yield_strength{T} + var"young_modulus"::solid_mechanics__center_stack__properties__young_modulus{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__properties} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__properties} + _parent::WeakRef end function solid_mechanics__center_stack__properties{T}() where T @@ -35254,8 +35254,8 @@ mutable struct solid_mechanics__center_stack__grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__grid} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__grid} + _parent::WeakRef end function solid_mechanics__center_stack__grid{T}() where T @@ -35276,8 +35276,8 @@ mutable struct solid_mechanics__center_stack__displacement{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack__displacement} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack__displacement} + _parent::WeakRef end function solid_mechanics__center_stack__displacement{T}() where T @@ -35289,18 +35289,18 @@ solid_mechanics__center_stack__displacement() = solid_mechanics__center_stack__d mutable struct solid_mechanics__center_stack{T} <: IDS{T} var"bucked" :: Int - var"displacement" :: solid_mechanics__center_stack__displacement{T} - var"grid" :: solid_mechanics__center_stack__grid{T} + var"displacement"::solid_mechanics__center_stack__displacement{T} + var"grid"::solid_mechanics__center_stack__grid{T} var"noslip" :: Int var"plug" :: Int - var"properties" :: solid_mechanics__center_stack__properties{T} - var"stress" :: solid_mechanics__center_stack__stress{T} + var"properties"::solid_mechanics__center_stack__properties{T} + var"stress"::solid_mechanics__center_stack__stress{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics__center_stack} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics__center_stack} + _parent::WeakRef end function solid_mechanics__center_stack{T}() where T @@ -35315,16 +35315,16 @@ end solid_mechanics__center_stack() = solid_mechanics__center_stack{Float64}() mutable struct solid_mechanics{T} <: IDStop{T} - var"center_stack" :: solid_mechanics__center_stack{T} - var"code" :: solid_mechanics__code{T} - var"ids_properties" :: solid_mechanics__ids_properties{T} + var"center_stack"::solid_mechanics__center_stack{T} + var"code"::solid_mechanics__code{T} + var"ids_properties"::solid_mechanics__ids_properties{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,solid_mechanics} - _parent :: WeakRef + _ref::Union{Nothing,solid_mechanics} + _parent::WeakRef end function solid_mechanics{T}() where T @@ -35345,8 +35345,8 @@ mutable struct soft_x_rays__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__version_put} + _parent::WeakRef end function soft_x_rays__ids_properties__version_put{T}() where T @@ -35363,8 +35363,8 @@ mutable struct soft_x_rays__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__provenance__node} + _parent::WeakRef end function soft_x_rays__ids_properties__provenance__node{T}() where T @@ -35375,13 +35375,13 @@ end soft_x_rays__ids_properties__provenance__node() = soft_x_rays__ids_properties__provenance__node{Float64}() mutable struct soft_x_rays__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{soft_x_rays__ids_properties__provenance__node{T}} + var"node"::IDSvector{soft_x_rays__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__provenance} + _parent::WeakRef end function soft_x_rays__ids_properties__provenance{T}() where T @@ -35403,8 +35403,8 @@ mutable struct soft_x_rays__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__plugins__node___readback} + _parent::WeakRef end function soft_x_rays__ids_properties__plugins__node___readback{T}() where T @@ -35425,8 +35425,8 @@ mutable struct soft_x_rays__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function soft_x_rays__ids_properties__plugins__node___put_operation{T}() where T @@ -35447,8 +35447,8 @@ mutable struct soft_x_rays__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function soft_x_rays__ids_properties__plugins__node___get_operation{T}() where T @@ -35459,16 +35459,16 @@ end soft_x_rays__ids_properties__plugins__node___get_operation() = soft_x_rays__ids_properties__plugins__node___get_operation{Float64}() mutable struct soft_x_rays__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{soft_x_rays__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{soft_x_rays__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{soft_x_rays__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{soft_x_rays__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{soft_x_rays__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{soft_x_rays__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__plugins__node} + _parent::WeakRef end function soft_x_rays__ids_properties__plugins__node{T}() where T @@ -35491,8 +35491,8 @@ mutable struct soft_x_rays__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function soft_x_rays__ids_properties__plugins__infrastructure_put{T}() where T @@ -35512,8 +35512,8 @@ mutable struct soft_x_rays__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function soft_x_rays__ids_properties__plugins__infrastructure_get{T}() where T @@ -35524,15 +35524,15 @@ end soft_x_rays__ids_properties__plugins__infrastructure_get() = soft_x_rays__ids_properties__plugins__infrastructure_get{Float64}() mutable struct soft_x_rays__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: soft_x_rays__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: soft_x_rays__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{soft_x_rays__ids_properties__plugins__node{T}} + var"infrastructure_get"::soft_x_rays__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::soft_x_rays__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{soft_x_rays__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__plugins} + _parent::WeakRef end function soft_x_rays__ids_properties__plugins{T}() where T @@ -35553,8 +35553,8 @@ mutable struct soft_x_rays__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties__occurrence_type} + _parent::WeakRef end function soft_x_rays__ids_properties__occurrence_type{T}() where T @@ -35570,17 +35570,17 @@ mutable struct soft_x_rays__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: soft_x_rays__ids_properties__occurrence_type{T} - var"plugins" :: soft_x_rays__ids_properties__plugins{T} - var"provenance" :: soft_x_rays__ids_properties__provenance{T} + var"occurrence_type"::soft_x_rays__ids_properties__occurrence_type{T} + var"plugins"::soft_x_rays__ids_properties__plugins{T} + var"provenance"::soft_x_rays__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: soft_x_rays__ids_properties__version_put{T} + var"version_put"::soft_x_rays__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__ids_properties} + _parent::WeakRef end function soft_x_rays__ids_properties{T}() where T @@ -35605,8 +35605,8 @@ mutable struct soft_x_rays__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__code__library} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__code__library} + _parent::WeakRef end function soft_x_rays__code__library{T}() where T @@ -35619,7 +35619,7 @@ soft_x_rays__code__library() = soft_x_rays__code__library{Float64}() mutable struct soft_x_rays__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{soft_x_rays__code__library{T}} + var"library"::IDSvector{soft_x_rays__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -35629,8 +35629,8 @@ mutable struct soft_x_rays__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__code} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__code} + _parent::WeakRef end function soft_x_rays__code{T}() where T @@ -35648,8 +35648,8 @@ mutable struct soft_x_rays__channel___validity_timed{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___validity_timed} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___validity_timed} + _parent::WeakRef end function soft_x_rays__channel___validity_timed{T}() where T @@ -35667,8 +35667,8 @@ mutable struct soft_x_rays__channel___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___power} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___power} + _parent::WeakRef end function soft_x_rays__channel___power{T}() where T @@ -35689,8 +35689,8 @@ mutable struct soft_x_rays__channel___line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___line_of_sight__second_point} + _parent::WeakRef end function soft_x_rays__channel___line_of_sight__second_point{T}() where T @@ -35711,8 +35711,8 @@ mutable struct soft_x_rays__channel___line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___line_of_sight__first_point} + _parent::WeakRef end function soft_x_rays__channel___line_of_sight__first_point{T}() where T @@ -35723,14 +35723,14 @@ end soft_x_rays__channel___line_of_sight__first_point() = soft_x_rays__channel___line_of_sight__first_point{Float64}() mutable struct soft_x_rays__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: soft_x_rays__channel___line_of_sight__first_point{T} - var"second_point" :: soft_x_rays__channel___line_of_sight__second_point{T} + var"first_point"::soft_x_rays__channel___line_of_sight__first_point{T} + var"second_point"::soft_x_rays__channel___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___line_of_sight} + _parent::WeakRef end function soft_x_rays__channel___line_of_sight{T}() where T @@ -35753,8 +35753,8 @@ mutable struct soft_x_rays__channel___filter_window___x3_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window___x3_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___filter_window___x3_unit_vector{T}() where T @@ -35775,8 +35775,8 @@ mutable struct soft_x_rays__channel___filter_window___x2_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window___x2_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___filter_window___x2_unit_vector{T}() where T @@ -35797,8 +35797,8 @@ mutable struct soft_x_rays__channel___filter_window___x1_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window___x1_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___filter_window___x1_unit_vector{T}() where T @@ -35817,8 +35817,8 @@ mutable struct soft_x_rays__channel___filter_window___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window___outline} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window___outline} + _parent::WeakRef end function soft_x_rays__channel___filter_window___outline{T}() where T @@ -35836,8 +35836,8 @@ mutable struct soft_x_rays__channel___filter_window___material{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window___material} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window___material} + _parent::WeakRef end function soft_x_rays__channel___filter_window___material{T}() where T @@ -35855,8 +35855,8 @@ mutable struct soft_x_rays__channel___filter_window___geometry_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window___geometry_type} + _parent::WeakRef end function soft_x_rays__channel___filter_window___geometry_type{T}() where T @@ -35874,8 +35874,8 @@ mutable struct soft_x_rays__channel___filter_window___curvature_type{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window___curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window___curvature_type} + _parent::WeakRef end function soft_x_rays__channel___filter_window___curvature_type{T}() where T @@ -35896,8 +35896,8 @@ mutable struct soft_x_rays__channel___filter_window___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window___centre} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window___centre} + _parent::WeakRef end function soft_x_rays__channel___filter_window___centre{T}() where T @@ -35908,12 +35908,12 @@ end soft_x_rays__channel___filter_window___centre() = soft_x_rays__channel___filter_window___centre{Float64}() mutable struct soft_x_rays__channel___filter_window{T} <: IDSvectorStaticElement{T} - var"centre" :: soft_x_rays__channel___filter_window___centre{T} - var"curvature_type" :: soft_x_rays__channel___filter_window___curvature_type{T} - var"geometry_type" :: soft_x_rays__channel___filter_window___geometry_type{T} + var"centre"::soft_x_rays__channel___filter_window___centre{T} + var"curvature_type"::soft_x_rays__channel___filter_window___curvature_type{T} + var"geometry_type"::soft_x_rays__channel___filter_window___geometry_type{T} var"identifier" :: String - var"material" :: soft_x_rays__channel___filter_window___material{T} - var"outline" :: soft_x_rays__channel___filter_window___outline{T} + var"material"::soft_x_rays__channel___filter_window___material{T} + var"outline"::soft_x_rays__channel___filter_window___outline{T} var"photon_absorption" :: Vector{<:T} var"photon_absorption_σ" :: Vector{<:T} var"radius" :: T @@ -35930,21 +35930,21 @@ mutable struct soft_x_rays__channel___filter_window{T} <: IDSvectorStaticElement var"wavelengths_σ" :: Vector{<:T} var"x1_curvature" :: T var"x1_curvature_σ" :: T - var"x1_unit_vector" :: soft_x_rays__channel___filter_window___x1_unit_vector{T} + var"x1_unit_vector"::soft_x_rays__channel___filter_window___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T var"x2_curvature" :: T var"x2_curvature_σ" :: T - var"x2_unit_vector" :: soft_x_rays__channel___filter_window___x2_unit_vector{T} + var"x2_unit_vector"::soft_x_rays__channel___filter_window___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: soft_x_rays__channel___filter_window___x3_unit_vector{T} + var"x3_unit_vector"::soft_x_rays__channel___filter_window___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___filter_window} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___filter_window} + _parent::WeakRef end function soft_x_rays__channel___filter_window{T}() where T @@ -35970,8 +35970,8 @@ mutable struct soft_x_rays__channel___etendue_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___etendue_method} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___etendue_method} + _parent::WeakRef end function soft_x_rays__channel___etendue_method{T}() where T @@ -35994,8 +35994,8 @@ mutable struct soft_x_rays__channel___energy_band{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___energy_band} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___energy_band} + _parent::WeakRef end function soft_x_rays__channel___energy_band{T}() where T @@ -36016,8 +36016,8 @@ mutable struct soft_x_rays__channel___detector__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___detector__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___detector__x3_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___detector__x3_unit_vector{T}() where T @@ -36038,8 +36038,8 @@ mutable struct soft_x_rays__channel___detector__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___detector__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___detector__x2_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___detector__x2_unit_vector{T}() where T @@ -36060,8 +36060,8 @@ mutable struct soft_x_rays__channel___detector__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___detector__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___detector__x1_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___detector__x1_unit_vector{T}() where T @@ -36080,8 +36080,8 @@ mutable struct soft_x_rays__channel___detector__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___detector__outline} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___detector__outline} + _parent::WeakRef end function soft_x_rays__channel___detector__outline{T}() where T @@ -36102,8 +36102,8 @@ mutable struct soft_x_rays__channel___detector__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___detector__centre} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___detector__centre} + _parent::WeakRef end function soft_x_rays__channel___detector__centre{T}() where T @@ -36114,26 +36114,26 @@ end soft_x_rays__channel___detector__centre() = soft_x_rays__channel___detector__centre{Float64}() mutable struct soft_x_rays__channel___detector{T} <: IDS{T} - var"centre" :: soft_x_rays__channel___detector__centre{T} + var"centre"::soft_x_rays__channel___detector__centre{T} var"geometry_type" :: Int - var"outline" :: soft_x_rays__channel___detector__outline{T} + var"outline"::soft_x_rays__channel___detector__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: soft_x_rays__channel___detector__x1_unit_vector{T} + var"x1_unit_vector"::soft_x_rays__channel___detector__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: soft_x_rays__channel___detector__x2_unit_vector{T} + var"x2_unit_vector"::soft_x_rays__channel___detector__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: soft_x_rays__channel___detector__x3_unit_vector{T} + var"x3_unit_vector"::soft_x_rays__channel___detector__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___detector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___detector} + _parent::WeakRef end function soft_x_rays__channel___detector{T}() where T @@ -36156,8 +36156,8 @@ mutable struct soft_x_rays__channel___brightness{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___brightness} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___brightness} + _parent::WeakRef end function soft_x_rays__channel___brightness{T}() where T @@ -36178,8 +36178,8 @@ mutable struct soft_x_rays__channel___aperture___x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___aperture___x3_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___aperture___x3_unit_vector{T}() where T @@ -36200,8 +36200,8 @@ mutable struct soft_x_rays__channel___aperture___x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___aperture___x2_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___aperture___x2_unit_vector{T}() where T @@ -36222,8 +36222,8 @@ mutable struct soft_x_rays__channel___aperture___x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___aperture___x1_unit_vector} + _parent::WeakRef end function soft_x_rays__channel___aperture___x1_unit_vector{T}() where T @@ -36242,8 +36242,8 @@ mutable struct soft_x_rays__channel___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___aperture___outline} + _parent::WeakRef end function soft_x_rays__channel___aperture___outline{T}() where T @@ -36264,8 +36264,8 @@ mutable struct soft_x_rays__channel___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___aperture___centre} + _parent::WeakRef end function soft_x_rays__channel___aperture___centre{T}() where T @@ -36276,26 +36276,26 @@ end soft_x_rays__channel___aperture___centre() = soft_x_rays__channel___aperture___centre{Float64}() mutable struct soft_x_rays__channel___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: soft_x_rays__channel___aperture___centre{T} + var"centre"::soft_x_rays__channel___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: soft_x_rays__channel___aperture___outline{T} + var"outline"::soft_x_rays__channel___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: soft_x_rays__channel___aperture___x1_unit_vector{T} + var"x1_unit_vector"::soft_x_rays__channel___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: soft_x_rays__channel___aperture___x2_unit_vector{T} + var"x2_unit_vector"::soft_x_rays__channel___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: soft_x_rays__channel___aperture___x3_unit_vector{T} + var"x3_unit_vector"::soft_x_rays__channel___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel___aperture} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel___aperture} + _parent::WeakRef end function soft_x_rays__channel___aperture{T}() where T @@ -36311,26 +36311,26 @@ end soft_x_rays__channel___aperture() = soft_x_rays__channel___aperture{Float64}() mutable struct soft_x_rays__channel{T} <: IDSvectorStaticElement{T} - var"aperture" :: IDSvector{soft_x_rays__channel___aperture{T}} - var"brightness" :: soft_x_rays__channel___brightness{T} - var"detector" :: soft_x_rays__channel___detector{T} - var"energy_band" :: IDSvector{soft_x_rays__channel___energy_band{T}} + var"aperture"::IDSvector{soft_x_rays__channel___aperture{T}} + var"brightness"::soft_x_rays__channel___brightness{T} + var"detector"::soft_x_rays__channel___detector{T} + var"energy_band"::IDSvector{soft_x_rays__channel___energy_band{T}} var"etendue" :: T var"etendue_σ" :: T - var"etendue_method" :: soft_x_rays__channel___etendue_method{T} - var"filter_window" :: IDSvector{soft_x_rays__channel___filter_window{T}} + var"etendue_method"::soft_x_rays__channel___etendue_method{T} + var"filter_window"::IDSvector{soft_x_rays__channel___filter_window{T}} var"identifier" :: String - var"line_of_sight" :: soft_x_rays__channel___line_of_sight{T} + var"line_of_sight"::soft_x_rays__channel___line_of_sight{T} var"name" :: String - var"power" :: soft_x_rays__channel___power{T} + var"power"::soft_x_rays__channel___power{T} var"validity" :: Int - var"validity_timed" :: soft_x_rays__channel___validity_timed{T} + var"validity_timed"::soft_x_rays__channel___validity_timed{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays__channel} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays__channel} + _parent::WeakRef end function soft_x_rays__channel{T}() where T @@ -36350,9 +36350,9 @@ end soft_x_rays__channel() = soft_x_rays__channel{Float64}() mutable struct soft_x_rays{T} <: IDStop{T} - var"channel" :: IDSvector{soft_x_rays__channel{T}} - var"code" :: soft_x_rays__code{T} - var"ids_properties" :: soft_x_rays__ids_properties{T} + var"channel"::IDSvector{soft_x_rays__channel{T}} + var"code"::soft_x_rays__code{T} + var"ids_properties"::soft_x_rays__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -36360,8 +36360,8 @@ mutable struct soft_x_rays{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,soft_x_rays} - _parent :: WeakRef + _ref::Union{Nothing,soft_x_rays} + _parent::WeakRef end function soft_x_rays{T}() where T @@ -36383,8 +36383,8 @@ mutable struct sawteeth__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__vacuum_toroidal_field} + _parent::WeakRef end function sawteeth__vacuum_toroidal_field{T}() where T @@ -36417,8 +36417,8 @@ mutable struct sawteeth__profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__profiles_1d___grid} + _parent::WeakRef end function sawteeth__profiles_1d___grid{T}() where T @@ -36433,7 +36433,7 @@ mutable struct sawteeth__profiles_1d{T} <: IDSvectorTimeElement{T} var"conductivity_parallel_σ" :: Vector{<:T} var"e_field_parallel" :: Vector{<:T} var"e_field_parallel_σ" :: Vector{<:T} - var"grid" :: sawteeth__profiles_1d___grid{T} + var"grid"::sawteeth__profiles_1d___grid{T} var"j_bootstrap" :: Vector{<:T} var"j_bootstrap_σ" :: Vector{<:T} var"j_non_inductive" :: Vector{<:T} @@ -36491,8 +36491,8 @@ mutable struct sawteeth__profiles_1d{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__profiles_1d} + _parent::WeakRef end function sawteeth__profiles_1d{T}() where T @@ -36511,8 +36511,8 @@ mutable struct sawteeth__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__version_put} + _parent::WeakRef end function sawteeth__ids_properties__version_put{T}() where T @@ -36529,8 +36529,8 @@ mutable struct sawteeth__ids_properties__provenance__node{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__provenance__node} + _parent::WeakRef end function sawteeth__ids_properties__provenance__node{T}() where T @@ -36541,13 +36541,13 @@ end sawteeth__ids_properties__provenance__node() = sawteeth__ids_properties__provenance__node{Float64}() mutable struct sawteeth__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{sawteeth__ids_properties__provenance__node{T}} + var"node"::IDSvector{sawteeth__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__provenance} + _parent::WeakRef end function sawteeth__ids_properties__provenance{T}() where T @@ -36569,8 +36569,8 @@ mutable struct sawteeth__ids_properties__plugins__node___readback{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__plugins__node___readback} + _parent::WeakRef end function sawteeth__ids_properties__plugins__node___readback{T}() where T @@ -36591,8 +36591,8 @@ mutable struct sawteeth__ids_properties__plugins__node___put_operation{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function sawteeth__ids_properties__plugins__node___put_operation{T}() where T @@ -36613,8 +36613,8 @@ mutable struct sawteeth__ids_properties__plugins__node___get_operation{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function sawteeth__ids_properties__plugins__node___get_operation{T}() where T @@ -36625,16 +36625,16 @@ end sawteeth__ids_properties__plugins__node___get_operation() = sawteeth__ids_properties__plugins__node___get_operation{Float64}() mutable struct sawteeth__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{sawteeth__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{sawteeth__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{sawteeth__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{sawteeth__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{sawteeth__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{sawteeth__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__plugins__node} + _parent::WeakRef end function sawteeth__ids_properties__plugins__node{T}() where T @@ -36657,8 +36657,8 @@ mutable struct sawteeth__ids_properties__plugins__infrastructure_put{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function sawteeth__ids_properties__plugins__infrastructure_put{T}() where T @@ -36678,8 +36678,8 @@ mutable struct sawteeth__ids_properties__plugins__infrastructure_get{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function sawteeth__ids_properties__plugins__infrastructure_get{T}() where T @@ -36690,15 +36690,15 @@ end sawteeth__ids_properties__plugins__infrastructure_get() = sawteeth__ids_properties__plugins__infrastructure_get{Float64}() mutable struct sawteeth__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: sawteeth__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: sawteeth__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{sawteeth__ids_properties__plugins__node{T}} + var"infrastructure_get"::sawteeth__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::sawteeth__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{sawteeth__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__plugins} + _parent::WeakRef end function sawteeth__ids_properties__plugins{T}() where T @@ -36719,8 +36719,8 @@ mutable struct sawteeth__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties__occurrence_type} + _parent::WeakRef end function sawteeth__ids_properties__occurrence_type{T}() where T @@ -36736,17 +36736,17 @@ mutable struct sawteeth__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: sawteeth__ids_properties__occurrence_type{T} - var"plugins" :: sawteeth__ids_properties__plugins{T} - var"provenance" :: sawteeth__ids_properties__provenance{T} + var"occurrence_type"::sawteeth__ids_properties__occurrence_type{T} + var"plugins"::sawteeth__ids_properties__plugins{T} + var"provenance"::sawteeth__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: sawteeth__ids_properties__version_put{T} + var"version_put"::sawteeth__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__ids_properties} + _parent::WeakRef end function sawteeth__ids_properties{T}() where T @@ -36778,8 +36778,8 @@ mutable struct sawteeth__diagnostics{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__diagnostics} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__diagnostics} + _parent::WeakRef end function sawteeth__diagnostics{T}() where T @@ -36800,8 +36800,8 @@ mutable struct sawteeth__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__code__library} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__code__library} + _parent::WeakRef end function sawteeth__code__library{T}() where T @@ -36814,7 +36814,7 @@ sawteeth__code__library() = sawteeth__code__library{Float64}() mutable struct sawteeth__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{sawteeth__code__library{T}} + var"library"::IDSvector{sawteeth__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -36824,8 +36824,8 @@ mutable struct sawteeth__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth__code} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth__code} + _parent::WeakRef end function sawteeth__code{T}() where T @@ -36837,19 +36837,19 @@ end sawteeth__code() = sawteeth__code{Float64}() mutable struct sawteeth{T} <: IDStop{T} - var"code" :: sawteeth__code{T} + var"code"::sawteeth__code{T} var"crash_trigger" :: Vector{Int} - var"diagnostics" :: sawteeth__diagnostics{T} - var"ids_properties" :: sawteeth__ids_properties{T} - var"profiles_1d" :: IDSvector{sawteeth__profiles_1d{T}} + var"diagnostics"::sawteeth__diagnostics{T} + var"ids_properties"::sawteeth__ids_properties{T} + var"profiles_1d"::IDSvector{sawteeth__profiles_1d{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: sawteeth__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::sawteeth__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,sawteeth} - _parent :: WeakRef + _ref::Union{Nothing,sawteeth} + _parent::WeakRef end function sawteeth{T}() where T @@ -36873,8 +36873,8 @@ mutable struct runaway_electrons__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__vacuum_toroidal_field} + _parent::WeakRef end function runaway_electrons__vacuum_toroidal_field{T}() where T @@ -36895,8 +36895,8 @@ mutable struct runaway_electrons__profiles_1d___transport_perpendicular{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__profiles_1d___transport_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__profiles_1d___transport_perpendicular} + _parent::WeakRef end function runaway_electrons__profiles_1d___transport_perpendicular{T}() where T @@ -36929,8 +36929,8 @@ mutable struct runaway_electrons__profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__profiles_1d___grid} + _parent::WeakRef end function runaway_electrons__profiles_1d___grid{T}() where T @@ -36961,7 +36961,7 @@ mutable struct runaway_electrons__profiles_1d{T} <: IDSvectorTimeElement{T} var"e_field_dreicer_σ" :: Vector{<:T} var"energy_density_kinetic" :: Vector{<:T} var"energy_density_kinetic_σ" :: Vector{<:T} - var"grid" :: runaway_electrons__profiles_1d___grid{T} + var"grid"::runaway_electrons__profiles_1d___grid{T} var"momentum_critical_avalanche" :: Vector{<:T} var"momentum_critical_avalanche_σ" :: Vector{<:T} var"momentum_critical_hot_tail" :: Vector{<:T} @@ -36969,13 +36969,13 @@ mutable struct runaway_electrons__profiles_1d{T} <: IDSvectorTimeElement{T} var"pitch_angle" :: Vector{<:T} var"pitch_angle_σ" :: Vector{<:T} var"time" :: Float64 - var"transport_perpendicular" :: runaway_electrons__profiles_1d___transport_perpendicular{T} + var"transport_perpendicular"::runaway_electrons__profiles_1d___transport_perpendicular{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__profiles_1d} + _parent::WeakRef end function runaway_electrons__profiles_1d{T}() where T @@ -36995,8 +36995,8 @@ mutable struct runaway_electrons__momentum_critical_hot_tail_definition{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__momentum_critical_hot_tail_definition} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__momentum_critical_hot_tail_definition} + _parent::WeakRef end function runaway_electrons__momentum_critical_hot_tail_definition{T}() where T @@ -37014,8 +37014,8 @@ mutable struct runaway_electrons__momentum_critical_avalanche_definition{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__momentum_critical_avalanche_definition} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__momentum_critical_avalanche_definition} + _parent::WeakRef end function runaway_electrons__momentum_critical_avalanche_definition{T}() where T @@ -37033,8 +37033,8 @@ mutable struct runaway_electrons__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__version_put} + _parent::WeakRef end function runaway_electrons__ids_properties__version_put{T}() where T @@ -37051,8 +37051,8 @@ mutable struct runaway_electrons__ids_properties__provenance__node{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__provenance__node} + _parent::WeakRef end function runaway_electrons__ids_properties__provenance__node{T}() where T @@ -37063,13 +37063,13 @@ end runaway_electrons__ids_properties__provenance__node() = runaway_electrons__ids_properties__provenance__node{Float64}() mutable struct runaway_electrons__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{runaway_electrons__ids_properties__provenance__node{T}} + var"node"::IDSvector{runaway_electrons__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__provenance} + _parent::WeakRef end function runaway_electrons__ids_properties__provenance{T}() where T @@ -37091,8 +37091,8 @@ mutable struct runaway_electrons__ids_properties__plugins__node___readback{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__plugins__node___readback} + _parent::WeakRef end function runaway_electrons__ids_properties__plugins__node___readback{T}() where T @@ -37113,8 +37113,8 @@ mutable struct runaway_electrons__ids_properties__plugins__node___put_operation{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function runaway_electrons__ids_properties__plugins__node___put_operation{T}() where T @@ -37135,8 +37135,8 @@ mutable struct runaway_electrons__ids_properties__plugins__node___get_operation{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function runaway_electrons__ids_properties__plugins__node___get_operation{T}() where T @@ -37147,16 +37147,16 @@ end runaway_electrons__ids_properties__plugins__node___get_operation() = runaway_electrons__ids_properties__plugins__node___get_operation{Float64}() mutable struct runaway_electrons__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{runaway_electrons__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{runaway_electrons__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{runaway_electrons__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{runaway_electrons__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{runaway_electrons__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{runaway_electrons__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__plugins__node} + _parent::WeakRef end function runaway_electrons__ids_properties__plugins__node{T}() where T @@ -37179,8 +37179,8 @@ mutable struct runaway_electrons__ids_properties__plugins__infrastructure_put{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function runaway_electrons__ids_properties__plugins__infrastructure_put{T}() where T @@ -37200,8 +37200,8 @@ mutable struct runaway_electrons__ids_properties__plugins__infrastructure_get{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function runaway_electrons__ids_properties__plugins__infrastructure_get{T}() where T @@ -37212,15 +37212,15 @@ end runaway_electrons__ids_properties__plugins__infrastructure_get() = runaway_electrons__ids_properties__plugins__infrastructure_get{Float64}() mutable struct runaway_electrons__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: runaway_electrons__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: runaway_electrons__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{runaway_electrons__ids_properties__plugins__node{T}} + var"infrastructure_get"::runaway_electrons__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::runaway_electrons__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{runaway_electrons__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__plugins} + _parent::WeakRef end function runaway_electrons__ids_properties__plugins{T}() where T @@ -37241,8 +37241,8 @@ mutable struct runaway_electrons__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties__occurrence_type} + _parent::WeakRef end function runaway_electrons__ids_properties__occurrence_type{T}() where T @@ -37258,17 +37258,17 @@ mutable struct runaway_electrons__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: runaway_electrons__ids_properties__occurrence_type{T} - var"plugins" :: runaway_electrons__ids_properties__plugins{T} - var"provenance" :: runaway_electrons__ids_properties__provenance{T} + var"occurrence_type"::runaway_electrons__ids_properties__occurrence_type{T} + var"plugins"::runaway_electrons__ids_properties__plugins{T} + var"provenance"::runaway_electrons__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: runaway_electrons__ids_properties__version_put{T} + var"version_put"::runaway_electrons__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ids_properties} + _parent::WeakRef end function runaway_electrons__ids_properties{T}() where T @@ -37289,8 +37289,8 @@ mutable struct runaway_electrons__grid_ggd___space___objects_per_dimension___obj _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function runaway_electrons__grid_ggd___space___objects_per_dimension___object___boundary{T}() where T @@ -37301,7 +37301,7 @@ end runaway_electrons__grid_ggd___space___objects_per_dimension___object___boundary() = runaway_electrons__grid_ggd___space___objects_per_dimension___object___boundary{Float64}() mutable struct runaway_electrons__grid_ggd___space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{runaway_electrons__grid_ggd___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{runaway_electrons__grid_ggd___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -37313,8 +37313,8 @@ mutable struct runaway_electrons__grid_ggd___space___objects_per_dimension___obj _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___space___objects_per_dimension___object} + _parent::WeakRef end function runaway_electrons__grid_ggd___space___objects_per_dimension___object{T}() where T @@ -37333,8 +37333,8 @@ mutable struct runaway_electrons__grid_ggd___space___objects_per_dimension___geo _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function runaway_electrons__grid_ggd___space___objects_per_dimension___geometry_content{T}() where T @@ -37345,14 +37345,14 @@ end runaway_electrons__grid_ggd___space___objects_per_dimension___geometry_content() = runaway_electrons__grid_ggd___space___objects_per_dimension___geometry_content{Float64}() mutable struct runaway_electrons__grid_ggd___space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: runaway_electrons__grid_ggd___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{runaway_electrons__grid_ggd___space___objects_per_dimension___object{T}} + var"geometry_content"::runaway_electrons__grid_ggd___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{runaway_electrons__grid_ggd___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___space___objects_per_dimension} + _parent::WeakRef end function runaway_electrons__grid_ggd___space___objects_per_dimension{T}() where T @@ -37372,8 +37372,8 @@ mutable struct runaway_electrons__grid_ggd___space___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___space___identifier} + _parent::WeakRef end function runaway_electrons__grid_ggd___space___identifier{T}() where T @@ -37391,8 +37391,8 @@ mutable struct runaway_electrons__grid_ggd___space___geometry_type{T} <: IDSraw{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___space___geometry_type} + _parent::WeakRef end function runaway_electrons__grid_ggd___space___geometry_type{T}() where T @@ -37404,15 +37404,15 @@ runaway_electrons__grid_ggd___space___geometry_type() = runaway_electrons__grid_ mutable struct runaway_electrons__grid_ggd___space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: runaway_electrons__grid_ggd___space___geometry_type{T} - var"identifier" :: runaway_electrons__grid_ggd___space___identifier{T} - var"objects_per_dimension" :: IDSvector{runaway_electrons__grid_ggd___space___objects_per_dimension{T}} + var"geometry_type"::runaway_electrons__grid_ggd___space___geometry_type{T} + var"identifier"::runaway_electrons__grid_ggd___space___identifier{T} + var"objects_per_dimension"::IDSvector{runaway_electrons__grid_ggd___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___space} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___space} + _parent::WeakRef end function runaway_electrons__grid_ggd___space{T}() where T @@ -37433,8 +37433,8 @@ mutable struct runaway_electrons__grid_ggd___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___identifier} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___identifier} + _parent::WeakRef end function runaway_electrons__grid_ggd___identifier{T}() where T @@ -37455,8 +37455,8 @@ mutable struct runaway_electrons__grid_ggd___grid_subset___metric{T} <: IDSraw{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___grid_subset___metric} + _parent::WeakRef end function runaway_electrons__grid_ggd___grid_subset___metric{T}() where T @@ -37474,8 +37474,8 @@ mutable struct runaway_electrons__grid_ggd___grid_subset___identifier{T} <: IDSr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___grid_subset___identifier} + _parent::WeakRef end function runaway_electrons__grid_ggd___grid_subset___identifier{T}() where T @@ -37493,8 +37493,8 @@ mutable struct runaway_electrons__grid_ggd___grid_subset___element___object{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___grid_subset___element___object} + _parent::WeakRef end function runaway_electrons__grid_ggd___grid_subset___element___object{T}() where T @@ -37505,13 +37505,13 @@ end runaway_electrons__grid_ggd___grid_subset___element___object() = runaway_electrons__grid_ggd___grid_subset___element___object{Float64}() mutable struct runaway_electrons__grid_ggd___grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{runaway_electrons__grid_ggd___grid_subset___element___object{T}} + var"object"::IDSvector{runaway_electrons__grid_ggd___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___grid_subset___element} + _parent::WeakRef end function runaway_electrons__grid_ggd___grid_subset___element{T}() where T @@ -37533,8 +37533,8 @@ mutable struct runaway_electrons__grid_ggd___grid_subset___base{T} <: IDSvectorR _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___grid_subset___base} + _parent::WeakRef end function runaway_electrons__grid_ggd___grid_subset___base{T}() where T @@ -37545,17 +37545,17 @@ end runaway_electrons__grid_ggd___grid_subset___base() = runaway_electrons__grid_ggd___grid_subset___base{Float64}() mutable struct runaway_electrons__grid_ggd___grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{runaway_electrons__grid_ggd___grid_subset___base{T}} + var"base"::IDSvector{runaway_electrons__grid_ggd___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{runaway_electrons__grid_ggd___grid_subset___element{T}} - var"identifier" :: runaway_electrons__grid_ggd___grid_subset___identifier{T} - var"metric" :: runaway_electrons__grid_ggd___grid_subset___metric{T} + var"element"::IDSvector{runaway_electrons__grid_ggd___grid_subset___element{T}} + var"identifier"::runaway_electrons__grid_ggd___grid_subset___identifier{T} + var"metric"::runaway_electrons__grid_ggd___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd___grid_subset} + _parent::WeakRef end function runaway_electrons__grid_ggd___grid_subset{T}() where T @@ -37570,17 +37570,17 @@ end runaway_electrons__grid_ggd___grid_subset() = runaway_electrons__grid_ggd___grid_subset{Float64}() mutable struct runaway_electrons__grid_ggd{T} <: IDSvectorRawElement{T} - var"grid_subset" :: IDSvector{runaway_electrons__grid_ggd___grid_subset{T}} - var"identifier" :: runaway_electrons__grid_ggd___identifier{T} + var"grid_subset"::IDSvector{runaway_electrons__grid_ggd___grid_subset{T}} + var"identifier"::runaway_electrons__grid_ggd___identifier{T} var"path" :: String - var"space" :: IDSvector{runaway_electrons__grid_ggd___space{T}} + var"space"::IDSvector{runaway_electrons__grid_ggd___space{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__grid_ggd} + _parent::WeakRef end function runaway_electrons__grid_ggd{T}() where T @@ -37624,8 +37624,8 @@ mutable struct runaway_electrons__global_quantities__volume_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__global_quantities__volume_average} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__global_quantities__volume_average} + _parent::WeakRef end function runaway_electrons__global_quantities__volume_average{T}() where T @@ -37640,13 +37640,13 @@ mutable struct runaway_electrons__global_quantities{T} <: IDS{T} var"current_tor_σ" :: Vector{<:T} var"energy_kinetic" :: Vector{<:T} var"energy_kinetic_σ" :: Vector{<:T} - var"volume_average" :: runaway_electrons__global_quantities__volume_average{T} + var"volume_average"::runaway_electrons__global_quantities__volume_average{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__global_quantities} + _parent::WeakRef end function runaway_electrons__global_quantities{T}() where T @@ -37668,8 +37668,8 @@ mutable struct runaway_electrons__ggd_fluid___pitch_angle{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___pitch_angle} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___pitch_angle} + _parent::WeakRef end function runaway_electrons__ggd_fluid___pitch_angle{T}() where T @@ -37690,8 +37690,8 @@ mutable struct runaway_electrons__ggd_fluid___momentum_critical_hot_tail{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___momentum_critical_hot_tail} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___momentum_critical_hot_tail} + _parent::WeakRef end function runaway_electrons__ggd_fluid___momentum_critical_hot_tail{T}() where T @@ -37712,8 +37712,8 @@ mutable struct runaway_electrons__ggd_fluid___momentum_critical_avalanche{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___momentum_critical_avalanche} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___momentum_critical_avalanche} + _parent::WeakRef end function runaway_electrons__ggd_fluid___momentum_critical_avalanche{T}() where T @@ -37734,8 +37734,8 @@ mutable struct runaway_electrons__ggd_fluid___energy_density_kinetic{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___energy_density_kinetic} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___energy_density_kinetic} + _parent::WeakRef end function runaway_electrons__ggd_fluid___energy_density_kinetic{T}() where T @@ -37756,8 +37756,8 @@ mutable struct runaway_electrons__ggd_fluid___e_field_dreicer{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___e_field_dreicer} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___e_field_dreicer} + _parent::WeakRef end function runaway_electrons__ggd_fluid___e_field_dreicer{T}() where T @@ -37778,8 +37778,8 @@ mutable struct runaway_electrons__ggd_fluid___e_field_critical{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___e_field_critical} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___e_field_critical} + _parent::WeakRef end function runaway_electrons__ggd_fluid___e_field_critical{T}() where T @@ -37800,8 +37800,8 @@ mutable struct runaway_electrons__ggd_fluid___density{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___density} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___density} + _parent::WeakRef end function runaway_electrons__ggd_fluid___density{T}() where T @@ -37822,8 +37822,8 @@ mutable struct runaway_electrons__ggd_fluid___ddensity_dt_tritium{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_tritium} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_tritium} + _parent::WeakRef end function runaway_electrons__ggd_fluid___ddensity_dt_tritium{T}() where T @@ -37844,8 +37844,8 @@ mutable struct runaway_electrons__ggd_fluid___ddensity_dt_total{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_total} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_total} + _parent::WeakRef end function runaway_electrons__ggd_fluid___ddensity_dt_total{T}() where T @@ -37866,8 +37866,8 @@ mutable struct runaway_electrons__ggd_fluid___ddensity_dt_hot_tail{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_hot_tail} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_hot_tail} + _parent::WeakRef end function runaway_electrons__ggd_fluid___ddensity_dt_hot_tail{T}() where T @@ -37888,8 +37888,8 @@ mutable struct runaway_electrons__ggd_fluid___ddensity_dt_dreicer{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_dreicer} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_dreicer} + _parent::WeakRef end function runaway_electrons__ggd_fluid___ddensity_dt_dreicer{T}() where T @@ -37910,8 +37910,8 @@ mutable struct runaway_electrons__ggd_fluid___ddensity_dt_compton{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_compton} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___ddensity_dt_compton} + _parent::WeakRef end function runaway_electrons__ggd_fluid___ddensity_dt_compton{T}() where T @@ -37932,8 +37932,8 @@ mutable struct runaway_electrons__ggd_fluid___current_density{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid___current_density} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid___current_density} + _parent::WeakRef end function runaway_electrons__ggd_fluid___current_density{T}() where T @@ -37944,26 +37944,26 @@ end runaway_electrons__ggd_fluid___current_density() = runaway_electrons__ggd_fluid___current_density{Float64}() mutable struct runaway_electrons__ggd_fluid{T} <: IDSvectorTimeElement{T} - var"current_density" :: IDSvector{runaway_electrons__ggd_fluid___current_density{T}} - var"ddensity_dt_compton" :: IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_compton{T}} - var"ddensity_dt_dreicer" :: IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_dreicer{T}} - var"ddensity_dt_hot_tail" :: IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_hot_tail{T}} - var"ddensity_dt_total" :: IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_total{T}} - var"ddensity_dt_tritium" :: IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_tritium{T}} - var"density" :: IDSvector{runaway_electrons__ggd_fluid___density{T}} - var"e_field_critical" :: IDSvector{runaway_electrons__ggd_fluid___e_field_critical{T}} - var"e_field_dreicer" :: IDSvector{runaway_electrons__ggd_fluid___e_field_dreicer{T}} - var"energy_density_kinetic" :: IDSvector{runaway_electrons__ggd_fluid___energy_density_kinetic{T}} - var"momentum_critical_avalanche" :: IDSvector{runaway_electrons__ggd_fluid___momentum_critical_avalanche{T}} - var"momentum_critical_hot_tail" :: IDSvector{runaway_electrons__ggd_fluid___momentum_critical_hot_tail{T}} - var"pitch_angle" :: IDSvector{runaway_electrons__ggd_fluid___pitch_angle{T}} + var"current_density"::IDSvector{runaway_electrons__ggd_fluid___current_density{T}} + var"ddensity_dt_compton"::IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_compton{T}} + var"ddensity_dt_dreicer"::IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_dreicer{T}} + var"ddensity_dt_hot_tail"::IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_hot_tail{T}} + var"ddensity_dt_total"::IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_total{T}} + var"ddensity_dt_tritium"::IDSvector{runaway_electrons__ggd_fluid___ddensity_dt_tritium{T}} + var"density"::IDSvector{runaway_electrons__ggd_fluid___density{T}} + var"e_field_critical"::IDSvector{runaway_electrons__ggd_fluid___e_field_critical{T}} + var"e_field_dreicer"::IDSvector{runaway_electrons__ggd_fluid___e_field_dreicer{T}} + var"energy_density_kinetic"::IDSvector{runaway_electrons__ggd_fluid___energy_density_kinetic{T}} + var"momentum_critical_avalanche"::IDSvector{runaway_electrons__ggd_fluid___momentum_critical_avalanche{T}} + var"momentum_critical_hot_tail"::IDSvector{runaway_electrons__ggd_fluid___momentum_critical_hot_tail{T}} + var"pitch_angle"::IDSvector{runaway_electrons__ggd_fluid___pitch_angle{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__ggd_fluid} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__ggd_fluid} + _parent::WeakRef end function runaway_electrons__ggd_fluid{T}() where T @@ -37994,8 +37994,8 @@ mutable struct runaway_electrons__e_field_critical_definition{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__e_field_critical_definition} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__e_field_critical_definition} + _parent::WeakRef end function runaway_electrons__e_field_critical_definition{T}() where T @@ -38014,8 +38014,8 @@ mutable struct runaway_electrons__distribution__markers___orbit_integrals_instan _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__markers___orbit_integrals_instant} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__markers___orbit_integrals_instant} + _parent::WeakRef end function runaway_electrons__distribution__markers___orbit_integrals_instant{T}() where T @@ -38035,8 +38035,8 @@ mutable struct runaway_electrons__distribution__markers___orbit_integrals{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__markers___orbit_integrals} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__markers___orbit_integrals} + _parent::WeakRef end function runaway_electrons__distribution__markers___orbit_integrals{T}() where T @@ -38054,8 +38054,8 @@ mutable struct runaway_electrons__distribution__markers___coordinate_identifier{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__markers___coordinate_identifier} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__markers___coordinate_identifier} + _parent::WeakRef end function runaway_electrons__distribution__markers___coordinate_identifier{T}() where T @@ -38066,9 +38066,9 @@ end runaway_electrons__distribution__markers___coordinate_identifier() = runaway_electrons__distribution__markers___coordinate_identifier{Float64}() mutable struct runaway_electrons__distribution__markers{T} <: IDSvectorTimeElement{T} - var"coordinate_identifier" :: IDSvector{runaway_electrons__distribution__markers___coordinate_identifier{T}} - var"orbit_integrals" :: runaway_electrons__distribution__markers___orbit_integrals{T} - var"orbit_integrals_instant" :: runaway_electrons__distribution__markers___orbit_integrals_instant{T} + var"coordinate_identifier"::IDSvector{runaway_electrons__distribution__markers___coordinate_identifier{T}} + var"orbit_integrals"::runaway_electrons__distribution__markers___orbit_integrals{T} + var"orbit_integrals_instant"::runaway_electrons__distribution__markers___orbit_integrals_instant{T} var"positions" :: Matrix{<:T} var"positions_σ" :: Matrix{<:T} var"time" :: Float64 @@ -38079,8 +38079,8 @@ mutable struct runaway_electrons__distribution__markers{T} <: IDSvectorTimeEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__markers} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__markers} + _parent::WeakRef end function runaway_electrons__distribution__markers{T}() where T @@ -38104,8 +38104,8 @@ mutable struct runaway_electrons__distribution__ggd___expansion_fd3v___grid_subs _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__ggd___expansion_fd3v___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__ggd___expansion_fd3v___grid_subset} + _parent::WeakRef end function runaway_electrons__distribution__ggd___expansion_fd3v___grid_subset{T}() where T @@ -38116,13 +38116,13 @@ end runaway_electrons__distribution__ggd___expansion_fd3v___grid_subset() = runaway_electrons__distribution__ggd___expansion_fd3v___grid_subset{Float64}() mutable struct runaway_electrons__distribution__ggd___expansion_fd3v{T} <: IDSvectorStaticElement{T} - var"grid_subset" :: IDSvector{runaway_electrons__distribution__ggd___expansion_fd3v___grid_subset{T}} + var"grid_subset"::IDSvector{runaway_electrons__distribution__ggd___expansion_fd3v___grid_subset{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__ggd___expansion_fd3v} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__ggd___expansion_fd3v} + _parent::WeakRef end function runaway_electrons__distribution__ggd___expansion_fd3v{T}() where T @@ -38144,8 +38144,8 @@ mutable struct runaway_electrons__distribution__ggd___expansion___grid_subset{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__ggd___expansion___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__ggd___expansion___grid_subset} + _parent::WeakRef end function runaway_electrons__distribution__ggd___expansion___grid_subset{T}() where T @@ -38156,13 +38156,13 @@ end runaway_electrons__distribution__ggd___expansion___grid_subset() = runaway_electrons__distribution__ggd___expansion___grid_subset{Float64}() mutable struct runaway_electrons__distribution__ggd___expansion{T} <: IDSvectorStaticElement{T} - var"grid_subset" :: IDSvector{runaway_electrons__distribution__ggd___expansion___grid_subset{T}} + var"grid_subset"::IDSvector{runaway_electrons__distribution__ggd___expansion___grid_subset{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__ggd___expansion} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__ggd___expansion} + _parent::WeakRef end function runaway_electrons__distribution__ggd___expansion{T}() where T @@ -38174,8 +38174,8 @@ end runaway_electrons__distribution__ggd___expansion() = runaway_electrons__distribution__ggd___expansion{Float64}() mutable struct runaway_electrons__distribution__ggd{T} <: IDSvectorTimeElement{T} - var"expansion" :: IDSvector{runaway_electrons__distribution__ggd___expansion{T}} - var"expansion_fd3v" :: IDSvector{runaway_electrons__distribution__ggd___expansion_fd3v{T}} + var"expansion"::IDSvector{runaway_electrons__distribution__ggd___expansion{T}} + var"expansion_fd3v"::IDSvector{runaway_electrons__distribution__ggd___expansion_fd3v{T}} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} var"time" :: Float64 @@ -38183,8 +38183,8 @@ mutable struct runaway_electrons__distribution__ggd{T} <: IDSvectorTimeElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution__ggd} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution__ggd} + _parent::WeakRef end function runaway_electrons__distribution__ggd{T}() where T @@ -38197,15 +38197,15 @@ end runaway_electrons__distribution__ggd() = runaway_electrons__distribution__ggd{Float64}() mutable struct runaway_electrons__distribution{T} <: IDS{T} - var"ggd" :: IDSvector{runaway_electrons__distribution__ggd{T}} + var"ggd"::IDSvector{runaway_electrons__distribution__ggd{T}} var"gyro_type" :: Int - var"markers" :: IDSvector{runaway_electrons__distribution__markers{T}} + var"markers"::IDSvector{runaway_electrons__distribution__markers{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__distribution} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__distribution} + _parent::WeakRef end function runaway_electrons__distribution{T}() where T @@ -38228,8 +38228,8 @@ mutable struct runaway_electrons__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__code__library} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__code__library} + _parent::WeakRef end function runaway_electrons__code__library{T}() where T @@ -38242,7 +38242,7 @@ runaway_electrons__code__library() = runaway_electrons__code__library{Float64}() mutable struct runaway_electrons__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{runaway_electrons__code__library{T}} + var"library"::IDSvector{runaway_electrons__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -38252,8 +38252,8 @@ mutable struct runaway_electrons__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons__code} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons__code} + _parent::WeakRef end function runaway_electrons__code{T}() where T @@ -38265,24 +38265,24 @@ end runaway_electrons__code() = runaway_electrons__code{Float64}() mutable struct runaway_electrons{T} <: IDStop{T} - var"code" :: runaway_electrons__code{T} - var"distribution" :: runaway_electrons__distribution{T} - var"e_field_critical_definition" :: runaway_electrons__e_field_critical_definition{T} - var"ggd_fluid" :: IDSvector{runaway_electrons__ggd_fluid{T}} - var"global_quantities" :: runaway_electrons__global_quantities{T} - var"grid_ggd" :: IDSvector{runaway_electrons__grid_ggd{T}} - var"ids_properties" :: runaway_electrons__ids_properties{T} - var"momentum_critical_avalanche_definition" :: runaway_electrons__momentum_critical_avalanche_definition{T} - var"momentum_critical_hot_tail_definition" :: runaway_electrons__momentum_critical_hot_tail_definition{T} - var"profiles_1d" :: IDSvector{runaway_electrons__profiles_1d{T}} + var"code"::runaway_electrons__code{T} + var"distribution"::runaway_electrons__distribution{T} + var"e_field_critical_definition"::runaway_electrons__e_field_critical_definition{T} + var"ggd_fluid"::IDSvector{runaway_electrons__ggd_fluid{T}} + var"global_quantities"::runaway_electrons__global_quantities{T} + var"grid_ggd"::IDSvector{runaway_electrons__grid_ggd{T}} + var"ids_properties"::runaway_electrons__ids_properties{T} + var"momentum_critical_avalanche_definition"::runaway_electrons__momentum_critical_avalanche_definition{T} + var"momentum_critical_hot_tail_definition"::runaway_electrons__momentum_critical_hot_tail_definition{T} + var"profiles_1d"::IDSvector{runaway_electrons__profiles_1d{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: runaway_electrons__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::runaway_electrons__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,runaway_electrons} - _parent :: WeakRef + _ref::Union{Nothing,runaway_electrons} + _parent::WeakRef end function runaway_electrons{T}() where T @@ -38311,8 +38311,8 @@ mutable struct requirements__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__version_put} + _parent::WeakRef end function requirements__ids_properties__version_put{T}() where T @@ -38329,8 +38329,8 @@ mutable struct requirements__ids_properties__provenance__node{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__provenance__node} + _parent::WeakRef end function requirements__ids_properties__provenance__node{T}() where T @@ -38341,13 +38341,13 @@ end requirements__ids_properties__provenance__node() = requirements__ids_properties__provenance__node{Float64}() mutable struct requirements__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{requirements__ids_properties__provenance__node{T}} + var"node"::IDSvector{requirements__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__provenance} + _parent::WeakRef end function requirements__ids_properties__provenance{T}() where T @@ -38369,8 +38369,8 @@ mutable struct requirements__ids_properties__plugins__node___readback{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__plugins__node___readback} + _parent::WeakRef end function requirements__ids_properties__plugins__node___readback{T}() where T @@ -38391,8 +38391,8 @@ mutable struct requirements__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function requirements__ids_properties__plugins__node___put_operation{T}() where T @@ -38413,8 +38413,8 @@ mutable struct requirements__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function requirements__ids_properties__plugins__node___get_operation{T}() where T @@ -38425,16 +38425,16 @@ end requirements__ids_properties__plugins__node___get_operation() = requirements__ids_properties__plugins__node___get_operation{Float64}() mutable struct requirements__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{requirements__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{requirements__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{requirements__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{requirements__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{requirements__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{requirements__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__plugins__node} + _parent::WeakRef end function requirements__ids_properties__plugins__node{T}() where T @@ -38457,8 +38457,8 @@ mutable struct requirements__ids_properties__plugins__infrastructure_put{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function requirements__ids_properties__plugins__infrastructure_put{T}() where T @@ -38478,8 +38478,8 @@ mutable struct requirements__ids_properties__plugins__infrastructure_get{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function requirements__ids_properties__plugins__infrastructure_get{T}() where T @@ -38490,15 +38490,15 @@ end requirements__ids_properties__plugins__infrastructure_get() = requirements__ids_properties__plugins__infrastructure_get{Float64}() mutable struct requirements__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: requirements__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: requirements__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{requirements__ids_properties__plugins__node{T}} + var"infrastructure_get"::requirements__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::requirements__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{requirements__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__plugins} + _parent::WeakRef end function requirements__ids_properties__plugins{T}() where T @@ -38519,8 +38519,8 @@ mutable struct requirements__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties__occurrence_type} + _parent::WeakRef end function requirements__ids_properties__occurrence_type{T}() where T @@ -38536,17 +38536,17 @@ mutable struct requirements__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: requirements__ids_properties__occurrence_type{T} - var"plugins" :: requirements__ids_properties__plugins{T} - var"provenance" :: requirements__ids_properties__provenance{T} + var"occurrence_type"::requirements__ids_properties__occurrence_type{T} + var"plugins"::requirements__ids_properties__plugins{T} + var"provenance"::requirements__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: requirements__ids_properties__version_put{T} + var"version_put"::requirements__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,requirements__ids_properties} + _parent::WeakRef end function requirements__ids_properties{T}() where T @@ -38571,8 +38571,8 @@ mutable struct requirements__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__code__library} - _parent :: WeakRef + _ref::Union{Nothing,requirements__code__library} + _parent::WeakRef end function requirements__code__library{T}() where T @@ -38585,7 +38585,7 @@ requirements__code__library() = requirements__code__library{Float64}() mutable struct requirements__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{requirements__code__library{T}} + var"library"::IDSvector{requirements__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -38595,8 +38595,8 @@ mutable struct requirements__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements__code} - _parent :: WeakRef + _ref::Union{Nothing,requirements__code} + _parent::WeakRef end function requirements__code{T}() where T @@ -38612,7 +38612,7 @@ mutable struct requirements{T} <: IDStop{T} var"Psol_R_σ" :: T var"beta_normal" :: T var"beta_normal_σ" :: T - var"code" :: requirements__code{T} + var"code"::requirements__code{T} var"coil_j_margin" :: T var"coil_j_margin_σ" :: T var"coil_stress_margin" :: T @@ -38625,7 +38625,7 @@ mutable struct requirements{T} <: IDStop{T} var"h98y2_σ" :: T var"hds03" :: T var"hds03_σ" :: T - var"ids_properties" :: requirements__ids_properties{T} + var"ids_properties"::requirements__ids_properties{T} var"lh_power_threshold_fraction" :: T var"lh_power_threshold_fraction_σ" :: T var"ne_peaking" :: T @@ -38643,8 +38643,8 @@ mutable struct requirements{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,requirements} - _parent :: WeakRef + _ref::Union{Nothing,requirements} + _parent::WeakRef end function requirements{T}() where T @@ -38664,8 +38664,8 @@ mutable struct refractometer__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__version_put} + _parent::WeakRef end function refractometer__ids_properties__version_put{T}() where T @@ -38682,8 +38682,8 @@ mutable struct refractometer__ids_properties__provenance__node{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__provenance__node} + _parent::WeakRef end function refractometer__ids_properties__provenance__node{T}() where T @@ -38694,13 +38694,13 @@ end refractometer__ids_properties__provenance__node() = refractometer__ids_properties__provenance__node{Float64}() mutable struct refractometer__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{refractometer__ids_properties__provenance__node{T}} + var"node"::IDSvector{refractometer__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__provenance} + _parent::WeakRef end function refractometer__ids_properties__provenance{T}() where T @@ -38722,8 +38722,8 @@ mutable struct refractometer__ids_properties__plugins__node___readback{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__plugins__node___readback} + _parent::WeakRef end function refractometer__ids_properties__plugins__node___readback{T}() where T @@ -38744,8 +38744,8 @@ mutable struct refractometer__ids_properties__plugins__node___put_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function refractometer__ids_properties__plugins__node___put_operation{T}() where T @@ -38766,8 +38766,8 @@ mutable struct refractometer__ids_properties__plugins__node___get_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function refractometer__ids_properties__plugins__node___get_operation{T}() where T @@ -38778,16 +38778,16 @@ end refractometer__ids_properties__plugins__node___get_operation() = refractometer__ids_properties__plugins__node___get_operation{Float64}() mutable struct refractometer__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{refractometer__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{refractometer__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{refractometer__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{refractometer__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{refractometer__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{refractometer__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__plugins__node} + _parent::WeakRef end function refractometer__ids_properties__plugins__node{T}() where T @@ -38810,8 +38810,8 @@ mutable struct refractometer__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function refractometer__ids_properties__plugins__infrastructure_put{T}() where T @@ -38831,8 +38831,8 @@ mutable struct refractometer__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function refractometer__ids_properties__plugins__infrastructure_get{T}() where T @@ -38843,15 +38843,15 @@ end refractometer__ids_properties__plugins__infrastructure_get() = refractometer__ids_properties__plugins__infrastructure_get{Float64}() mutable struct refractometer__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: refractometer__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: refractometer__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{refractometer__ids_properties__plugins__node{T}} + var"infrastructure_get"::refractometer__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::refractometer__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{refractometer__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__plugins} + _parent::WeakRef end function refractometer__ids_properties__plugins{T}() where T @@ -38872,8 +38872,8 @@ mutable struct refractometer__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties__occurrence_type} + _parent::WeakRef end function refractometer__ids_properties__occurrence_type{T}() where T @@ -38889,17 +38889,17 @@ mutable struct refractometer__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: refractometer__ids_properties__occurrence_type{T} - var"plugins" :: refractometer__ids_properties__plugins{T} - var"provenance" :: refractometer__ids_properties__provenance{T} + var"occurrence_type"::refractometer__ids_properties__occurrence_type{T} + var"plugins"::refractometer__ids_properties__plugins{T} + var"provenance"::refractometer__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: refractometer__ids_properties__version_put{T} + var"version_put"::refractometer__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__ids_properties} + _parent::WeakRef end function refractometer__ids_properties{T}() where T @@ -38924,8 +38924,8 @@ mutable struct refractometer__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__code__library} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__code__library} + _parent::WeakRef end function refractometer__code__library{T}() where T @@ -38938,7 +38938,7 @@ refractometer__code__library() = refractometer__code__library{Float64}() mutable struct refractometer__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{refractometer__code__library{T}} + var"library"::IDSvector{refractometer__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -38948,8 +38948,8 @@ mutable struct refractometer__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__code} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__code} + _parent::WeakRef end function refractometer__code{T}() where T @@ -38968,8 +38968,8 @@ mutable struct refractometer__channel___n_e_profile_approximation__formula{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___n_e_profile_approximation__formula} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___n_e_profile_approximation__formula} + _parent::WeakRef end function refractometer__channel___n_e_profile_approximation__formula{T}() where T @@ -38980,15 +38980,15 @@ end refractometer__channel___n_e_profile_approximation__formula() = refractometer__channel___n_e_profile_approximation__formula{Float64}() mutable struct refractometer__channel___n_e_profile_approximation{T} <: IDS{T} - var"formula" :: refractometer__channel___n_e_profile_approximation__formula{T} + var"formula"::refractometer__channel___n_e_profile_approximation__formula{T} var"parameters" :: Matrix{<:T} var"parameters_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___n_e_profile_approximation} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___n_e_profile_approximation} + _parent::WeakRef end function refractometer__channel___n_e_profile_approximation{T}() where T @@ -39007,8 +39007,8 @@ mutable struct refractometer__channel___n_e_line{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___n_e_line} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___n_e_line} + _parent::WeakRef end function refractometer__channel___n_e_line{T}() where T @@ -39029,8 +39029,8 @@ mutable struct refractometer__channel___line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___line_of_sight__second_point} + _parent::WeakRef end function refractometer__channel___line_of_sight__second_point{T}() where T @@ -39051,8 +39051,8 @@ mutable struct refractometer__channel___line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___line_of_sight__first_point} + _parent::WeakRef end function refractometer__channel___line_of_sight__first_point{T}() where T @@ -39063,14 +39063,14 @@ end refractometer__channel___line_of_sight__first_point() = refractometer__channel___line_of_sight__first_point{Float64}() mutable struct refractometer__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: refractometer__channel___line_of_sight__first_point{T} - var"second_point" :: refractometer__channel___line_of_sight__second_point{T} + var"first_point"::refractometer__channel___line_of_sight__first_point{T} + var"second_point"::refractometer__channel___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___line_of_sight} + _parent::WeakRef end function refractometer__channel___line_of_sight{T}() where T @@ -39090,8 +39090,8 @@ mutable struct refractometer__channel___bandwidth___phase_quadrature{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___bandwidth___phase_quadrature} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___bandwidth___phase_quadrature} + _parent::WeakRef end function refractometer__channel___bandwidth___phase_quadrature{T}() where T @@ -39109,8 +39109,8 @@ mutable struct refractometer__channel___bandwidth___n_e_line{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___bandwidth___n_e_line} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___bandwidth___n_e_line} + _parent::WeakRef end function refractometer__channel___bandwidth___n_e_line{T}() where T @@ -39125,10 +39125,10 @@ mutable struct refractometer__channel___bandwidth{T} <: IDSvectorStaticElement{T var"frequency_main_σ" :: T var"i_component" :: Matrix{<:T} var"i_component_σ" :: Matrix{<:T} - var"n_e_line" :: refractometer__channel___bandwidth___n_e_line{T} + var"n_e_line"::refractometer__channel___bandwidth___n_e_line{T} var"phase" :: Vector{<:T} var"phase_σ" :: Vector{<:T} - var"phase_quadrature" :: refractometer__channel___bandwidth___phase_quadrature{T} + var"phase_quadrature"::refractometer__channel___bandwidth___phase_quadrature{T} var"q_component" :: Matrix{<:T} var"q_component_σ" :: Matrix{<:T} var"time" :: Vector{Float64} @@ -39138,8 +39138,8 @@ mutable struct refractometer__channel___bandwidth{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel___bandwidth} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel___bandwidth} + _parent::WeakRef end function refractometer__channel___bandwidth{T}() where T @@ -39152,19 +39152,19 @@ end refractometer__channel___bandwidth() = refractometer__channel___bandwidth{Float64}() mutable struct refractometer__channel{T} <: IDSvectorStaticElement{T} - var"bandwidth" :: IDSvector{refractometer__channel___bandwidth{T}} + var"bandwidth"::IDSvector{refractometer__channel___bandwidth{T}} var"identifier" :: String - var"line_of_sight" :: refractometer__channel___line_of_sight{T} + var"line_of_sight"::refractometer__channel___line_of_sight{T} var"mode" :: String - var"n_e_line" :: refractometer__channel___n_e_line{T} - var"n_e_profile_approximation" :: refractometer__channel___n_e_profile_approximation{T} + var"n_e_line"::refractometer__channel___n_e_line{T} + var"n_e_profile_approximation"::refractometer__channel___n_e_profile_approximation{T} var"name" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer__channel} - _parent :: WeakRef + _ref::Union{Nothing,refractometer__channel} + _parent::WeakRef end function refractometer__channel{T}() where T @@ -39179,9 +39179,9 @@ end refractometer__channel() = refractometer__channel{Float64}() mutable struct refractometer{T} <: IDStop{T} - var"channel" :: IDSvector{refractometer__channel{T}} - var"code" :: refractometer__code{T} - var"ids_properties" :: refractometer__ids_properties{T} + var"channel"::IDSvector{refractometer__channel{T}} + var"code"::refractometer__code{T} + var"ids_properties"::refractometer__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -39190,8 +39190,8 @@ mutable struct refractometer{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,refractometer} - _parent :: WeakRef + _ref::Union{Nothing,refractometer} + _parent::WeakRef end function refractometer{T}() where T @@ -39214,8 +39214,8 @@ mutable struct reflectometer_profile__psi_normalization{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__psi_normalization} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__psi_normalization} + _parent::WeakRef end function reflectometer_profile__psi_normalization{T}() where T @@ -39244,8 +39244,8 @@ mutable struct reflectometer_profile__position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__position} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__position} + _parent::WeakRef end function reflectometer_profile__position{T}() where T @@ -39263,8 +39263,8 @@ mutable struct reflectometer_profile__n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__n_e} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__n_e} + _parent::WeakRef end function reflectometer_profile__n_e{T}() where T @@ -39282,8 +39282,8 @@ mutable struct reflectometer_profile__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__version_put} + _parent::WeakRef end function reflectometer_profile__ids_properties__version_put{T}() where T @@ -39300,8 +39300,8 @@ mutable struct reflectometer_profile__ids_properties__provenance__node{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__provenance__node} + _parent::WeakRef end function reflectometer_profile__ids_properties__provenance__node{T}() where T @@ -39312,13 +39312,13 @@ end reflectometer_profile__ids_properties__provenance__node() = reflectometer_profile__ids_properties__provenance__node{Float64}() mutable struct reflectometer_profile__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{reflectometer_profile__ids_properties__provenance__node{T}} + var"node"::IDSvector{reflectometer_profile__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__provenance} + _parent::WeakRef end function reflectometer_profile__ids_properties__provenance{T}() where T @@ -39340,8 +39340,8 @@ mutable struct reflectometer_profile__ids_properties__plugins__node___readback{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__plugins__node___readback} + _parent::WeakRef end function reflectometer_profile__ids_properties__plugins__node___readback{T}() where T @@ -39362,8 +39362,8 @@ mutable struct reflectometer_profile__ids_properties__plugins__node___put_operat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function reflectometer_profile__ids_properties__plugins__node___put_operation{T}() where T @@ -39384,8 +39384,8 @@ mutable struct reflectometer_profile__ids_properties__plugins__node___get_operat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function reflectometer_profile__ids_properties__plugins__node___get_operation{T}() where T @@ -39396,16 +39396,16 @@ end reflectometer_profile__ids_properties__plugins__node___get_operation() = reflectometer_profile__ids_properties__plugins__node___get_operation{Float64}() mutable struct reflectometer_profile__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{reflectometer_profile__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{reflectometer_profile__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{reflectometer_profile__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{reflectometer_profile__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{reflectometer_profile__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{reflectometer_profile__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__plugins__node} + _parent::WeakRef end function reflectometer_profile__ids_properties__plugins__node{T}() where T @@ -39428,8 +39428,8 @@ mutable struct reflectometer_profile__ids_properties__plugins__infrastructure_pu _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function reflectometer_profile__ids_properties__plugins__infrastructure_put{T}() where T @@ -39449,8 +39449,8 @@ mutable struct reflectometer_profile__ids_properties__plugins__infrastructure_ge _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function reflectometer_profile__ids_properties__plugins__infrastructure_get{T}() where T @@ -39461,15 +39461,15 @@ end reflectometer_profile__ids_properties__plugins__infrastructure_get() = reflectometer_profile__ids_properties__plugins__infrastructure_get{Float64}() mutable struct reflectometer_profile__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: reflectometer_profile__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: reflectometer_profile__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{reflectometer_profile__ids_properties__plugins__node{T}} + var"infrastructure_get"::reflectometer_profile__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::reflectometer_profile__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{reflectometer_profile__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__plugins} + _parent::WeakRef end function reflectometer_profile__ids_properties__plugins{T}() where T @@ -39490,8 +39490,8 @@ mutable struct reflectometer_profile__ids_properties__occurrence_type{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties__occurrence_type} + _parent::WeakRef end function reflectometer_profile__ids_properties__occurrence_type{T}() where T @@ -39507,17 +39507,17 @@ mutable struct reflectometer_profile__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: reflectometer_profile__ids_properties__occurrence_type{T} - var"plugins" :: reflectometer_profile__ids_properties__plugins{T} - var"provenance" :: reflectometer_profile__ids_properties__provenance{T} + var"occurrence_type"::reflectometer_profile__ids_properties__occurrence_type{T} + var"plugins"::reflectometer_profile__ids_properties__plugins{T} + var"provenance"::reflectometer_profile__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: reflectometer_profile__ids_properties__version_put{T} + var"version_put"::reflectometer_profile__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__ids_properties} + _parent::WeakRef end function reflectometer_profile__ids_properties{T}() where T @@ -39542,8 +39542,8 @@ mutable struct reflectometer_profile__code__library{T} <: IDSvectorStaticElement _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__code__library} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__code__library} + _parent::WeakRef end function reflectometer_profile__code__library{T}() where T @@ -39556,7 +39556,7 @@ reflectometer_profile__code__library() = reflectometer_profile__code__library{Fl mutable struct reflectometer_profile__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{reflectometer_profile__code__library{T}} + var"library"::IDSvector{reflectometer_profile__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -39566,8 +39566,8 @@ mutable struct reflectometer_profile__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__code} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__code} + _parent::WeakRef end function reflectometer_profile__code{T}() where T @@ -39597,8 +39597,8 @@ mutable struct reflectometer_profile__channel___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___position} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___position} + _parent::WeakRef end function reflectometer_profile__channel___position{T}() where T @@ -39616,8 +39616,8 @@ mutable struct reflectometer_profile__channel___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___phase} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___phase} + _parent::WeakRef end function reflectometer_profile__channel___phase{T}() where T @@ -39635,8 +39635,8 @@ mutable struct reflectometer_profile__channel___n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___n_e} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___n_e} + _parent::WeakRef end function reflectometer_profile__channel___n_e{T}() where T @@ -39657,8 +39657,8 @@ mutable struct reflectometer_profile__channel___line_of_sight_emission__second_p _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___line_of_sight_emission__second_point} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___line_of_sight_emission__second_point} + _parent::WeakRef end function reflectometer_profile__channel___line_of_sight_emission__second_point{T}() where T @@ -39679,8 +39679,8 @@ mutable struct reflectometer_profile__channel___line_of_sight_emission__first_po _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___line_of_sight_emission__first_point} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___line_of_sight_emission__first_point} + _parent::WeakRef end function reflectometer_profile__channel___line_of_sight_emission__first_point{T}() where T @@ -39691,14 +39691,14 @@ end reflectometer_profile__channel___line_of_sight_emission__first_point() = reflectometer_profile__channel___line_of_sight_emission__first_point{Float64}() mutable struct reflectometer_profile__channel___line_of_sight_emission{T} <: IDS{T} - var"first_point" :: reflectometer_profile__channel___line_of_sight_emission__first_point{T} - var"second_point" :: reflectometer_profile__channel___line_of_sight_emission__second_point{T} + var"first_point"::reflectometer_profile__channel___line_of_sight_emission__first_point{T} + var"second_point"::reflectometer_profile__channel___line_of_sight_emission__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___line_of_sight_emission} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___line_of_sight_emission} + _parent::WeakRef end function reflectometer_profile__channel___line_of_sight_emission{T}() where T @@ -39721,8 +39721,8 @@ mutable struct reflectometer_profile__channel___line_of_sight_detection__second_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___line_of_sight_detection__second_point} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___line_of_sight_detection__second_point} + _parent::WeakRef end function reflectometer_profile__channel___line_of_sight_detection__second_point{T}() where T @@ -39743,8 +39743,8 @@ mutable struct reflectometer_profile__channel___line_of_sight_detection__first_p _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___line_of_sight_detection__first_point} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___line_of_sight_detection__first_point} + _parent::WeakRef end function reflectometer_profile__channel___line_of_sight_detection__first_point{T}() where T @@ -39755,14 +39755,14 @@ end reflectometer_profile__channel___line_of_sight_detection__first_point() = reflectometer_profile__channel___line_of_sight_detection__first_point{Float64}() mutable struct reflectometer_profile__channel___line_of_sight_detection{T} <: IDS{T} - var"first_point" :: reflectometer_profile__channel___line_of_sight_detection__first_point{T} - var"second_point" :: reflectometer_profile__channel___line_of_sight_detection__second_point{T} + var"first_point"::reflectometer_profile__channel___line_of_sight_detection__first_point{T} + var"second_point"::reflectometer_profile__channel___line_of_sight_detection__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___line_of_sight_detection} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___line_of_sight_detection} + _parent::WeakRef end function reflectometer_profile__channel___line_of_sight_detection{T}() where T @@ -39785,8 +39785,8 @@ mutable struct reflectometer_profile__channel___antenna_emission__x3_unit_vector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_emission__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_emission__x3_unit_vector} + _parent::WeakRef end function reflectometer_profile__channel___antenna_emission__x3_unit_vector{T}() where T @@ -39807,8 +39807,8 @@ mutable struct reflectometer_profile__channel___antenna_emission__x2_unit_vector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_emission__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_emission__x2_unit_vector} + _parent::WeakRef end function reflectometer_profile__channel___antenna_emission__x2_unit_vector{T}() where T @@ -39829,8 +39829,8 @@ mutable struct reflectometer_profile__channel___antenna_emission__x1_unit_vector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_emission__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_emission__x1_unit_vector} + _parent::WeakRef end function reflectometer_profile__channel___antenna_emission__x1_unit_vector{T}() where T @@ -39849,8 +39849,8 @@ mutable struct reflectometer_profile__channel___antenna_emission__outline{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_emission__outline} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_emission__outline} + _parent::WeakRef end function reflectometer_profile__channel___antenna_emission__outline{T}() where T @@ -39871,8 +39871,8 @@ mutable struct reflectometer_profile__channel___antenna_emission__centre{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_emission__centre} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_emission__centre} + _parent::WeakRef end function reflectometer_profile__channel___antenna_emission__centre{T}() where T @@ -39883,26 +39883,26 @@ end reflectometer_profile__channel___antenna_emission__centre() = reflectometer_profile__channel___antenna_emission__centre{Float64}() mutable struct reflectometer_profile__channel___antenna_emission{T} <: IDS{T} - var"centre" :: reflectometer_profile__channel___antenna_emission__centre{T} + var"centre"::reflectometer_profile__channel___antenna_emission__centre{T} var"geometry_type" :: Int - var"outline" :: reflectometer_profile__channel___antenna_emission__outline{T} + var"outline"::reflectometer_profile__channel___antenna_emission__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: reflectometer_profile__channel___antenna_emission__x1_unit_vector{T} + var"x1_unit_vector"::reflectometer_profile__channel___antenna_emission__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: reflectometer_profile__channel___antenna_emission__x2_unit_vector{T} + var"x2_unit_vector"::reflectometer_profile__channel___antenna_emission__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: reflectometer_profile__channel___antenna_emission__x3_unit_vector{T} + var"x3_unit_vector"::reflectometer_profile__channel___antenna_emission__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_emission} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_emission} + _parent::WeakRef end function reflectometer_profile__channel___antenna_emission{T}() where T @@ -39928,8 +39928,8 @@ mutable struct reflectometer_profile__channel___antenna_detection__x3_unit_vecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_detection__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_detection__x3_unit_vector} + _parent::WeakRef end function reflectometer_profile__channel___antenna_detection__x3_unit_vector{T}() where T @@ -39950,8 +39950,8 @@ mutable struct reflectometer_profile__channel___antenna_detection__x2_unit_vecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_detection__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_detection__x2_unit_vector} + _parent::WeakRef end function reflectometer_profile__channel___antenna_detection__x2_unit_vector{T}() where T @@ -39972,8 +39972,8 @@ mutable struct reflectometer_profile__channel___antenna_detection__x1_unit_vecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_detection__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_detection__x1_unit_vector} + _parent::WeakRef end function reflectometer_profile__channel___antenna_detection__x1_unit_vector{T}() where T @@ -39992,8 +39992,8 @@ mutable struct reflectometer_profile__channel___antenna_detection__outline{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_detection__outline} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_detection__outline} + _parent::WeakRef end function reflectometer_profile__channel___antenna_detection__outline{T}() where T @@ -40014,8 +40014,8 @@ mutable struct reflectometer_profile__channel___antenna_detection__centre{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_detection__centre} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_detection__centre} + _parent::WeakRef end function reflectometer_profile__channel___antenna_detection__centre{T}() where T @@ -40026,26 +40026,26 @@ end reflectometer_profile__channel___antenna_detection__centre() = reflectometer_profile__channel___antenna_detection__centre{Float64}() mutable struct reflectometer_profile__channel___antenna_detection{T} <: IDS{T} - var"centre" :: reflectometer_profile__channel___antenna_detection__centre{T} + var"centre"::reflectometer_profile__channel___antenna_detection__centre{T} var"geometry_type" :: Int - var"outline" :: reflectometer_profile__channel___antenna_detection__outline{T} + var"outline"::reflectometer_profile__channel___antenna_detection__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: reflectometer_profile__channel___antenna_detection__x1_unit_vector{T} + var"x1_unit_vector"::reflectometer_profile__channel___antenna_detection__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: reflectometer_profile__channel___antenna_detection__x2_unit_vector{T} + var"x2_unit_vector"::reflectometer_profile__channel___antenna_detection__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: reflectometer_profile__channel___antenna_detection__x3_unit_vector{T} + var"x3_unit_vector"::reflectometer_profile__channel___antenna_detection__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___antenna_detection} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___antenna_detection} + _parent::WeakRef end function reflectometer_profile__channel___antenna_detection{T}() where T @@ -40068,8 +40068,8 @@ mutable struct reflectometer_profile__channel___amplitude{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel___amplitude} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel___amplitude} + _parent::WeakRef end function reflectometer_profile__channel___amplitude{T}() where T @@ -40080,29 +40080,29 @@ end reflectometer_profile__channel___amplitude() = reflectometer_profile__channel___amplitude{Float64}() mutable struct reflectometer_profile__channel{T} <: IDSvectorStaticElement{T} - var"amplitude" :: reflectometer_profile__channel___amplitude{T} - var"antenna_detection" :: reflectometer_profile__channel___antenna_detection{T} - var"antenna_emission" :: reflectometer_profile__channel___antenna_emission{T} + var"amplitude"::reflectometer_profile__channel___amplitude{T} + var"antenna_detection"::reflectometer_profile__channel___antenna_detection{T} + var"antenna_emission"::reflectometer_profile__channel___antenna_emission{T} var"cut_off_frequency" :: Matrix{<:T} var"cut_off_frequency_σ" :: Matrix{<:T} var"frequencies" :: Vector{<:T} var"frequencies_σ" :: Vector{<:T} var"identifier" :: String - var"line_of_sight_detection" :: reflectometer_profile__channel___line_of_sight_detection{T} - var"line_of_sight_emission" :: reflectometer_profile__channel___line_of_sight_emission{T} + var"line_of_sight_detection"::reflectometer_profile__channel___line_of_sight_detection{T} + var"line_of_sight_emission"::reflectometer_profile__channel___line_of_sight_emission{T} var"mode" :: String - var"n_e" :: reflectometer_profile__channel___n_e{T} + var"n_e"::reflectometer_profile__channel___n_e{T} var"name" :: String - var"phase" :: reflectometer_profile__channel___phase{T} - var"position" :: reflectometer_profile__channel___position{T} + var"phase"::reflectometer_profile__channel___phase{T} + var"position"::reflectometer_profile__channel___position{T} var"sweep_time" :: T var"sweep_time_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile__channel} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile__channel} + _parent::WeakRef end function reflectometer_profile__channel{T}() where T @@ -40121,22 +40121,22 @@ end reflectometer_profile__channel() = reflectometer_profile__channel{Float64}() mutable struct reflectometer_profile{T} <: IDStop{T} - var"channel" :: IDSvector{reflectometer_profile__channel{T}} - var"code" :: reflectometer_profile__code{T} - var"ids_properties" :: reflectometer_profile__ids_properties{T} + var"channel"::IDSvector{reflectometer_profile__channel{T}} + var"code"::reflectometer_profile__code{T} + var"ids_properties"::reflectometer_profile__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"n_e" :: reflectometer_profile__n_e{T} - var"position" :: reflectometer_profile__position{T} - var"psi_normalization" :: reflectometer_profile__psi_normalization{T} + var"n_e"::reflectometer_profile__n_e{T} + var"position"::reflectometer_profile__position{T} + var"psi_normalization"::reflectometer_profile__psi_normalization{T} var"time" :: Vector{Float64} var"type" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_profile} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_profile} + _parent::WeakRef end function reflectometer_profile{T}() where T @@ -40162,8 +40162,8 @@ mutable struct reflectometer_fluctuation__psi_normalization{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__psi_normalization} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__psi_normalization} + _parent::WeakRef end function reflectometer_fluctuation__psi_normalization{T}() where T @@ -40181,8 +40181,8 @@ mutable struct reflectometer_fluctuation__ids_properties__version_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__version_put} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__version_put{T}() where T @@ -40199,8 +40199,8 @@ mutable struct reflectometer_fluctuation__ids_properties__provenance__node{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__provenance__node} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__provenance__node{T}() where T @@ -40211,13 +40211,13 @@ end reflectometer_fluctuation__ids_properties__provenance__node() = reflectometer_fluctuation__ids_properties__provenance__node{Float64}() mutable struct reflectometer_fluctuation__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{reflectometer_fluctuation__ids_properties__provenance__node{T}} + var"node"::IDSvector{reflectometer_fluctuation__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__provenance} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__provenance{T}() where T @@ -40239,8 +40239,8 @@ mutable struct reflectometer_fluctuation__ids_properties__plugins__node___readba _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__node___readback} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__plugins__node___readback{T}() where T @@ -40261,8 +40261,8 @@ mutable struct reflectometer_fluctuation__ids_properties__plugins__node___put_op _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__plugins__node___put_operation{T}() where T @@ -40283,8 +40283,8 @@ mutable struct reflectometer_fluctuation__ids_properties__plugins__node___get_op _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__plugins__node___get_operation{T}() where T @@ -40295,16 +40295,16 @@ end reflectometer_fluctuation__ids_properties__plugins__node___get_operation() = reflectometer_fluctuation__ids_properties__plugins__node___get_operation{Float64}() mutable struct reflectometer_fluctuation__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{reflectometer_fluctuation__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{reflectometer_fluctuation__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{reflectometer_fluctuation__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{reflectometer_fluctuation__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{reflectometer_fluctuation__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{reflectometer_fluctuation__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__node} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__plugins__node{T}() where T @@ -40327,8 +40327,8 @@ mutable struct reflectometer_fluctuation__ids_properties__plugins__infrastructur _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__plugins__infrastructure_put{T}() where T @@ -40348,8 +40348,8 @@ mutable struct reflectometer_fluctuation__ids_properties__plugins__infrastructur _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__plugins__infrastructure_get{T}() where T @@ -40360,15 +40360,15 @@ end reflectometer_fluctuation__ids_properties__plugins__infrastructure_get() = reflectometer_fluctuation__ids_properties__plugins__infrastructure_get{Float64}() mutable struct reflectometer_fluctuation__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: reflectometer_fluctuation__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: reflectometer_fluctuation__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{reflectometer_fluctuation__ids_properties__plugins__node{T}} + var"infrastructure_get"::reflectometer_fluctuation__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::reflectometer_fluctuation__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{reflectometer_fluctuation__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__plugins} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__plugins{T}() where T @@ -40389,8 +40389,8 @@ mutable struct reflectometer_fluctuation__ids_properties__occurrence_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties__occurrence_type} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties__occurrence_type{T}() where T @@ -40406,17 +40406,17 @@ mutable struct reflectometer_fluctuation__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: reflectometer_fluctuation__ids_properties__occurrence_type{T} - var"plugins" :: reflectometer_fluctuation__ids_properties__plugins{T} - var"provenance" :: reflectometer_fluctuation__ids_properties__provenance{T} + var"occurrence_type"::reflectometer_fluctuation__ids_properties__occurrence_type{T} + var"plugins"::reflectometer_fluctuation__ids_properties__plugins{T} + var"provenance"::reflectometer_fluctuation__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: reflectometer_fluctuation__ids_properties__version_put{T} + var"version_put"::reflectometer_fluctuation__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__ids_properties} + _parent::WeakRef end function reflectometer_fluctuation__ids_properties{T}() where T @@ -40441,8 +40441,8 @@ mutable struct reflectometer_fluctuation__code__library{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__code__library} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__code__library} + _parent::WeakRef end function reflectometer_fluctuation__code__library{T}() where T @@ -40455,7 +40455,7 @@ reflectometer_fluctuation__code__library() = reflectometer_fluctuation__code__li mutable struct reflectometer_fluctuation__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{reflectometer_fluctuation__code__library{T}} + var"library"::IDSvector{reflectometer_fluctuation__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -40465,8 +40465,8 @@ mutable struct reflectometer_fluctuation__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__code} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__code} + _parent::WeakRef end function reflectometer_fluctuation__code{T}() where T @@ -40487,8 +40487,8 @@ mutable struct reflectometer_fluctuation__channel___raw_signal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___raw_signal} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___raw_signal} + _parent::WeakRef end function reflectometer_fluctuation__channel___raw_signal{T}() where T @@ -40506,8 +40506,8 @@ mutable struct reflectometer_fluctuation__channel___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___phase} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___phase} + _parent::WeakRef end function reflectometer_fluctuation__channel___phase{T}() where T @@ -40525,8 +40525,8 @@ mutable struct reflectometer_fluctuation__channel___frequencies{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___frequencies} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___frequencies} + _parent::WeakRef end function reflectometer_fluctuation__channel___frequencies{T}() where T @@ -40548,8 +40548,8 @@ mutable struct reflectometer_fluctuation__channel___fluctuations_spectrum{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___fluctuations_spectrum} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___fluctuations_spectrum} + _parent::WeakRef end function reflectometer_fluctuation__channel___fluctuations_spectrum{T}() where T @@ -40578,8 +40578,8 @@ mutable struct reflectometer_fluctuation__channel___fluctuations_level__position _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___fluctuations_level__position} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___fluctuations_level__position} + _parent::WeakRef end function reflectometer_fluctuation__channel___fluctuations_level__position{T}() where T @@ -40592,7 +40592,7 @@ reflectometer_fluctuation__channel___fluctuations_level__position() = reflectome mutable struct reflectometer_fluctuation__channel___fluctuations_level{T} <: IDS{T} var"dn_e_over_n_e" :: Matrix{<:T} var"dn_e_over_n_e_σ" :: Matrix{<:T} - var"position" :: reflectometer_fluctuation__channel___fluctuations_level__position{T} + var"position"::reflectometer_fluctuation__channel___fluctuations_level__position{T} var"radial_width" :: T var"radial_width_σ" :: T var"time" :: Vector{Float64} @@ -40602,8 +40602,8 @@ mutable struct reflectometer_fluctuation__channel___fluctuations_level{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___fluctuations_level} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___fluctuations_level} + _parent::WeakRef end function reflectometer_fluctuation__channel___fluctuations_level{T}() where T @@ -40633,8 +40633,8 @@ mutable struct reflectometer_fluctuation__channel___doppler__position{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___doppler__position} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___doppler__position} + _parent::WeakRef end function reflectometer_fluctuation__channel___doppler__position{T}() where T @@ -40647,7 +40647,7 @@ reflectometer_fluctuation__channel___doppler__position() = reflectometer_fluctua mutable struct reflectometer_fluctuation__channel___doppler{T} <: IDS{T} var"e_field_radial" :: Vector{<:T} var"e_field_radial_σ" :: Vector{<:T} - var"position" :: reflectometer_fluctuation__channel___doppler__position{T} + var"position"::reflectometer_fluctuation__channel___doppler__position{T} var"radial_width" :: T var"radial_width_σ" :: T var"shift" :: Vector{<:T} @@ -40663,8 +40663,8 @@ mutable struct reflectometer_fluctuation__channel___doppler{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___doppler} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___doppler} + _parent::WeakRef end function reflectometer_fluctuation__channel___doppler{T}() where T @@ -40686,8 +40686,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___line_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__second_point} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__second_point} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__second_point{T}() where T @@ -40708,8 +40708,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___line_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__first_point} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__first_point} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__first_point{T}() where T @@ -40720,14 +40720,14 @@ end reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__first_point() = reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__first_point{Float64}() mutable struct reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission{T} <: IDS{T} - var"first_point" :: reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__first_point{T} - var"second_point" :: reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__second_point{T} + var"first_point"::reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__first_point{T} + var"second_point"::reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission{T}() where T @@ -40750,8 +40750,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___line_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__second_point} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__second_point} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__second_point{T}() where T @@ -40772,8 +40772,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___line_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__first_point} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__first_point} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__first_point{T}() where T @@ -40784,14 +40784,14 @@ end reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__first_point() = reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__first_point{Float64}() mutable struct reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection{T} <: IDS{T} - var"first_point" :: reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__first_point{T} - var"second_point" :: reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__second_point{T} + var"first_point"::reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__first_point{T} + var"second_point"::reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection{T}() where T @@ -40814,8 +40814,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___anten _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x3_unit_vector} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x3_unit_vector{T}() where T @@ -40836,8 +40836,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___anten _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x2_unit_vector} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x2_unit_vector{T}() where T @@ -40858,8 +40858,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___anten _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x1_unit_vector} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x1_unit_vector{T}() where T @@ -40870,15 +40870,15 @@ end reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x1_unit_vector() = reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x1_unit_vector{Float64}() mutable struct reflectometer_fluctuation__channel___antennas_orientation___antenna_emission{T} <: IDS{T} - var"x1_unit_vector" :: reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x1_unit_vector{T} - var"x2_unit_vector" :: reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x2_unit_vector{T} - var"x3_unit_vector" :: reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x3_unit_vector{T} + var"x1_unit_vector"::reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x1_unit_vector{T} + var"x2_unit_vector"::reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x2_unit_vector{T} + var"x3_unit_vector"::reflectometer_fluctuation__channel___antennas_orientation___antenna_emission__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_emission} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_emission} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___antenna_emission{T}() where T @@ -40902,8 +40902,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___anten _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x3_unit_vector} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x3_unit_vector{T}() where T @@ -40924,8 +40924,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___anten _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x2_unit_vector} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x2_unit_vector{T}() where T @@ -40946,8 +40946,8 @@ mutable struct reflectometer_fluctuation__channel___antennas_orientation___anten _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x1_unit_vector} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x1_unit_vector{T}() where T @@ -40958,15 +40958,15 @@ end reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x1_unit_vector() = reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x1_unit_vector{Float64}() mutable struct reflectometer_fluctuation__channel___antennas_orientation___antenna_detection{T} <: IDS{T} - var"x1_unit_vector" :: reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x1_unit_vector{T} - var"x2_unit_vector" :: reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x2_unit_vector{T} - var"x3_unit_vector" :: reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x3_unit_vector{T} + var"x1_unit_vector"::reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x1_unit_vector{T} + var"x2_unit_vector"::reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x2_unit_vector{T} + var"x3_unit_vector"::reflectometer_fluctuation__channel___antennas_orientation___antenna_detection__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_detection} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation___antenna_detection} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation___antenna_detection{T}() where T @@ -40980,17 +40980,17 @@ end reflectometer_fluctuation__channel___antennas_orientation___antenna_detection() = reflectometer_fluctuation__channel___antennas_orientation___antenna_detection{Float64}() mutable struct reflectometer_fluctuation__channel___antennas_orientation{T} <: IDSvectorTimeElement{T} - var"antenna_detection" :: reflectometer_fluctuation__channel___antennas_orientation___antenna_detection{T} - var"antenna_emission" :: reflectometer_fluctuation__channel___antennas_orientation___antenna_emission{T} - var"line_of_sight_detection" :: reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection{T} - var"line_of_sight_emission" :: reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission{T} + var"antenna_detection"::reflectometer_fluctuation__channel___antennas_orientation___antenna_detection{T} + var"antenna_emission"::reflectometer_fluctuation__channel___antennas_orientation___antenna_emission{T} + var"line_of_sight_detection"::reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_detection{T} + var"line_of_sight_emission"::reflectometer_fluctuation__channel___antennas_orientation___line_of_sight_emission{T} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antennas_orientation} + _parent::WeakRef end function reflectometer_fluctuation__channel___antennas_orientation{T}() where T @@ -41013,8 +41013,8 @@ mutable struct reflectometer_fluctuation__channel___antenna_emission_static__out _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antenna_emission_static__outline} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antenna_emission_static__outline} + _parent::WeakRef end function reflectometer_fluctuation__channel___antenna_emission_static__outline{T}() where T @@ -41035,8 +41035,8 @@ mutable struct reflectometer_fluctuation__channel___antenna_emission_static__cen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antenna_emission_static__centre} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antenna_emission_static__centre} + _parent::WeakRef end function reflectometer_fluctuation__channel___antenna_emission_static__centre{T}() where T @@ -41047,9 +41047,9 @@ end reflectometer_fluctuation__channel___antenna_emission_static__centre() = reflectometer_fluctuation__channel___antenna_emission_static__centre{Float64}() mutable struct reflectometer_fluctuation__channel___antenna_emission_static{T} <: IDS{T} - var"centre" :: reflectometer_fluctuation__channel___antenna_emission_static__centre{T} + var"centre"::reflectometer_fluctuation__channel___antenna_emission_static__centre{T} var"geometry_type" :: Int - var"outline" :: reflectometer_fluctuation__channel___antenna_emission_static__outline{T} + var"outline"::reflectometer_fluctuation__channel___antenna_emission_static__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T @@ -41062,8 +41062,8 @@ mutable struct reflectometer_fluctuation__channel___antenna_emission_static{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antenna_emission_static} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antenna_emission_static} + _parent::WeakRef end function reflectometer_fluctuation__channel___antenna_emission_static{T}() where T @@ -41084,8 +41084,8 @@ mutable struct reflectometer_fluctuation__channel___antenna_detection_static__ou _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antenna_detection_static__outline} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antenna_detection_static__outline} + _parent::WeakRef end function reflectometer_fluctuation__channel___antenna_detection_static__outline{T}() where T @@ -41106,8 +41106,8 @@ mutable struct reflectometer_fluctuation__channel___antenna_detection_static__ce _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antenna_detection_static__centre} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antenna_detection_static__centre} + _parent::WeakRef end function reflectometer_fluctuation__channel___antenna_detection_static__centre{T}() where T @@ -41118,9 +41118,9 @@ end reflectometer_fluctuation__channel___antenna_detection_static__centre() = reflectometer_fluctuation__channel___antenna_detection_static__centre{Float64}() mutable struct reflectometer_fluctuation__channel___antenna_detection_static{T} <: IDS{T} - var"centre" :: reflectometer_fluctuation__channel___antenna_detection_static__centre{T} + var"centre"::reflectometer_fluctuation__channel___antenna_detection_static__centre{T} var"geometry_type" :: Int - var"outline" :: reflectometer_fluctuation__channel___antenna_detection_static__outline{T} + var"outline"::reflectometer_fluctuation__channel___antenna_detection_static__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T @@ -41133,8 +41133,8 @@ mutable struct reflectometer_fluctuation__channel___antenna_detection_static{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___antenna_detection_static} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___antenna_detection_static} + _parent::WeakRef end function reflectometer_fluctuation__channel___antenna_detection_static{T}() where T @@ -41154,8 +41154,8 @@ mutable struct reflectometer_fluctuation__channel___amplitude{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel___amplitude} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel___amplitude} + _parent::WeakRef end function reflectometer_fluctuation__channel___amplitude{T}() where T @@ -41166,27 +41166,27 @@ end reflectometer_fluctuation__channel___amplitude() = reflectometer_fluctuation__channel___amplitude{Float64}() mutable struct reflectometer_fluctuation__channel{T} <: IDSvectorStaticElement{T} - var"amplitude" :: reflectometer_fluctuation__channel___amplitude{T} - var"antenna_detection_static" :: reflectometer_fluctuation__channel___antenna_detection_static{T} - var"antenna_emission_static" :: reflectometer_fluctuation__channel___antenna_emission_static{T} - var"antennas_orientation" :: IDSvector{reflectometer_fluctuation__channel___antennas_orientation{T}} - var"doppler" :: reflectometer_fluctuation__channel___doppler{T} - var"fluctuations_level" :: reflectometer_fluctuation__channel___fluctuations_level{T} - var"fluctuations_spectrum" :: reflectometer_fluctuation__channel___fluctuations_spectrum{T} - var"frequencies" :: reflectometer_fluctuation__channel___frequencies{T} + var"amplitude"::reflectometer_fluctuation__channel___amplitude{T} + var"antenna_detection_static"::reflectometer_fluctuation__channel___antenna_detection_static{T} + var"antenna_emission_static"::reflectometer_fluctuation__channel___antenna_emission_static{T} + var"antennas_orientation"::IDSvector{reflectometer_fluctuation__channel___antennas_orientation{T}} + var"doppler"::reflectometer_fluctuation__channel___doppler{T} + var"fluctuations_level"::reflectometer_fluctuation__channel___fluctuations_level{T} + var"fluctuations_spectrum"::reflectometer_fluctuation__channel___fluctuations_spectrum{T} + var"frequencies"::reflectometer_fluctuation__channel___frequencies{T} var"identifier" :: String var"mode" :: String var"name" :: String - var"phase" :: reflectometer_fluctuation__channel___phase{T} - var"raw_signal" :: reflectometer_fluctuation__channel___raw_signal{T} + var"phase"::reflectometer_fluctuation__channel___phase{T} + var"raw_signal"::reflectometer_fluctuation__channel___raw_signal{T} var"sweep_time" :: T var"sweep_time_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation__channel} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation__channel} + _parent::WeakRef end function reflectometer_fluctuation__channel{T}() where T @@ -41207,20 +41207,20 @@ end reflectometer_fluctuation__channel() = reflectometer_fluctuation__channel{Float64}() mutable struct reflectometer_fluctuation{T} <: IDStop{T} - var"channel" :: IDSvector{reflectometer_fluctuation__channel{T}} - var"code" :: reflectometer_fluctuation__code{T} - var"ids_properties" :: reflectometer_fluctuation__ids_properties{T} + var"channel"::IDSvector{reflectometer_fluctuation__channel{T}} + var"code"::reflectometer_fluctuation__code{T} + var"ids_properties"::reflectometer_fluctuation__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"psi_normalization" :: reflectometer_fluctuation__psi_normalization{T} + var"psi_normalization"::reflectometer_fluctuation__psi_normalization{T} var"time" :: Vector{Float64} var"type" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,reflectometer_fluctuation} - _parent :: WeakRef + _ref::Union{Nothing,reflectometer_fluctuation} + _parent::WeakRef end function reflectometer_fluctuation{T}() where T @@ -41244,8 +41244,8 @@ mutable struct real_time_data__topic___signal{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__topic___signal} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__topic___signal} + _parent::WeakRef end function real_time_data__topic___signal{T}() where T @@ -41258,15 +41258,15 @@ real_time_data__topic___signal() = real_time_data__topic___signal{Float64}() mutable struct real_time_data__topic{T} <: IDSvectorStaticElement{T} var"name" :: String var"sample" :: Vector{Int} - var"signal" :: IDSvector{real_time_data__topic___signal{T}} + var"signal"::IDSvector{real_time_data__topic___signal{T}} var"time_stamp" :: Vector{<:T} var"time_stamp_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__topic} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__topic} + _parent::WeakRef end function real_time_data__topic{T}() where T @@ -41285,8 +41285,8 @@ mutable struct real_time_data__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__version_put} + _parent::WeakRef end function real_time_data__ids_properties__version_put{T}() where T @@ -41303,8 +41303,8 @@ mutable struct real_time_data__ids_properties__provenance__node{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__provenance__node} + _parent::WeakRef end function real_time_data__ids_properties__provenance__node{T}() where T @@ -41315,13 +41315,13 @@ end real_time_data__ids_properties__provenance__node() = real_time_data__ids_properties__provenance__node{Float64}() mutable struct real_time_data__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{real_time_data__ids_properties__provenance__node{T}} + var"node"::IDSvector{real_time_data__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__provenance} + _parent::WeakRef end function real_time_data__ids_properties__provenance{T}() where T @@ -41343,8 +41343,8 @@ mutable struct real_time_data__ids_properties__plugins__node___readback{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__plugins__node___readback} + _parent::WeakRef end function real_time_data__ids_properties__plugins__node___readback{T}() where T @@ -41365,8 +41365,8 @@ mutable struct real_time_data__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function real_time_data__ids_properties__plugins__node___put_operation{T}() where T @@ -41387,8 +41387,8 @@ mutable struct real_time_data__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function real_time_data__ids_properties__plugins__node___get_operation{T}() where T @@ -41399,16 +41399,16 @@ end real_time_data__ids_properties__plugins__node___get_operation() = real_time_data__ids_properties__plugins__node___get_operation{Float64}() mutable struct real_time_data__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{real_time_data__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{real_time_data__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{real_time_data__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{real_time_data__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{real_time_data__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{real_time_data__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__plugins__node} + _parent::WeakRef end function real_time_data__ids_properties__plugins__node{T}() where T @@ -41431,8 +41431,8 @@ mutable struct real_time_data__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function real_time_data__ids_properties__plugins__infrastructure_put{T}() where T @@ -41452,8 +41452,8 @@ mutable struct real_time_data__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function real_time_data__ids_properties__plugins__infrastructure_get{T}() where T @@ -41464,15 +41464,15 @@ end real_time_data__ids_properties__plugins__infrastructure_get() = real_time_data__ids_properties__plugins__infrastructure_get{Float64}() mutable struct real_time_data__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: real_time_data__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: real_time_data__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{real_time_data__ids_properties__plugins__node{T}} + var"infrastructure_get"::real_time_data__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::real_time_data__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{real_time_data__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__plugins} + _parent::WeakRef end function real_time_data__ids_properties__plugins{T}() where T @@ -41493,8 +41493,8 @@ mutable struct real_time_data__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties__occurrence_type} + _parent::WeakRef end function real_time_data__ids_properties__occurrence_type{T}() where T @@ -41510,17 +41510,17 @@ mutable struct real_time_data__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: real_time_data__ids_properties__occurrence_type{T} - var"plugins" :: real_time_data__ids_properties__plugins{T} - var"provenance" :: real_time_data__ids_properties__provenance{T} + var"occurrence_type"::real_time_data__ids_properties__occurrence_type{T} + var"plugins"::real_time_data__ids_properties__plugins{T} + var"provenance"::real_time_data__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: real_time_data__ids_properties__version_put{T} + var"version_put"::real_time_data__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__ids_properties} + _parent::WeakRef end function real_time_data__ids_properties{T}() where T @@ -41545,8 +41545,8 @@ mutable struct real_time_data__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__code__library} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__code__library} + _parent::WeakRef end function real_time_data__code__library{T}() where T @@ -41559,7 +41559,7 @@ real_time_data__code__library() = real_time_data__code__library{Float64}() mutable struct real_time_data__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{real_time_data__code__library{T}} + var"library"::IDSvector{real_time_data__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -41569,8 +41569,8 @@ mutable struct real_time_data__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data__code} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data__code} + _parent::WeakRef end function real_time_data__code{T}() where T @@ -41582,16 +41582,16 @@ end real_time_data__code() = real_time_data__code{Float64}() mutable struct real_time_data{T} <: IDStop{T} - var"code" :: real_time_data__code{T} - var"ids_properties" :: real_time_data__ids_properties{T} + var"code"::real_time_data__code{T} + var"ids_properties"::real_time_data__ids_properties{T} var"time" :: Vector{Float64} - var"topic" :: IDSvector{real_time_data__topic{T}} + var"topic"::IDSvector{real_time_data__topic{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,real_time_data} - _parent :: WeakRef + _ref::Union{Nothing,real_time_data} + _parent::WeakRef end function real_time_data{T}() where T @@ -41613,8 +41613,8 @@ mutable struct radiation__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,radiation__vacuum_toroidal_field} + _parent::WeakRef end function radiation__vacuum_toroidal_field{T}() where T @@ -41632,8 +41632,8 @@ mutable struct radiation__process___profiles_1d___neutral___state___neutral_type _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___neutral___state___neutral_type} + _parent::WeakRef end function radiation__process___profiles_1d___neutral___state___neutral_type{T}() where T @@ -41648,7 +41648,7 @@ mutable struct radiation__process___profiles_1d___neutral___state{T} <: IDSvecto var"emissivity" :: Vector{<:T} var"emissivity_σ" :: Vector{<:T} var"label" :: String - var"neutral_type" :: radiation__process___profiles_1d___neutral___state___neutral_type{T} + var"neutral_type"::radiation__process___profiles_1d___neutral___state___neutral_type{T} var"power_inside" :: Vector{<:T} var"power_inside_σ" :: Vector{<:T} var"vibrational_level" :: T @@ -41658,8 +41658,8 @@ mutable struct radiation__process___profiles_1d___neutral___state{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___neutral___state} + _parent::WeakRef end function radiation__process___profiles_1d___neutral___state{T}() where T @@ -41680,8 +41680,8 @@ mutable struct radiation__process___profiles_1d___neutral___element{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___neutral___element} + _parent::WeakRef end function radiation__process___profiles_1d___neutral___element{T}() where T @@ -41692,7 +41692,7 @@ end radiation__process___profiles_1d___neutral___element() = radiation__process___profiles_1d___neutral___element{Float64}() mutable struct radiation__process___profiles_1d___neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{radiation__process___profiles_1d___neutral___element{T}} + var"element"::IDSvector{radiation__process___profiles_1d___neutral___element{T}} var"emissivity" :: Vector{<:T} var"emissivity_σ" :: Vector{<:T} var"ion_index" :: Int @@ -41700,13 +41700,13 @@ mutable struct radiation__process___profiles_1d___neutral{T} <: IDSvectorStaticE var"multiple_states_flag" :: Int var"power_inside" :: Vector{<:T} var"power_inside_σ" :: Vector{<:T} - var"state" :: IDSvector{radiation__process___profiles_1d___neutral___state{T}} + var"state"::IDSvector{radiation__process___profiles_1d___neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___neutral} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___neutral} + _parent::WeakRef end function radiation__process___profiles_1d___neutral{T}() where T @@ -41736,8 +41736,8 @@ mutable struct radiation__process___profiles_1d___ion___state{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___ion___state} + _parent::WeakRef end function radiation__process___profiles_1d___ion___state{T}() where T @@ -41757,8 +41757,8 @@ mutable struct radiation__process___profiles_1d___ion___element{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___ion___element} + _parent::WeakRef end function radiation__process___profiles_1d___ion___element{T}() where T @@ -41769,7 +41769,7 @@ end radiation__process___profiles_1d___ion___element() = radiation__process___profiles_1d___ion___element{Float64}() mutable struct radiation__process___profiles_1d___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{radiation__process___profiles_1d___ion___element{T}} + var"element"::IDSvector{radiation__process___profiles_1d___ion___element{T}} var"emissivity" :: Vector{<:T} var"emissivity_σ" :: Vector{<:T} var"label" :: String @@ -41777,15 +41777,15 @@ mutable struct radiation__process___profiles_1d___ion{T} <: IDSvectorIonElement{ var"neutral_index" :: Int var"power_inside" :: Vector{<:T} var"power_inside_σ" :: Vector{<:T} - var"state" :: IDSvector{radiation__process___profiles_1d___ion___state{T}} + var"state"::IDSvector{radiation__process___profiles_1d___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___ion} + _parent::WeakRef end function radiation__process___profiles_1d___ion{T}() where T @@ -41820,8 +41820,8 @@ mutable struct radiation__process___profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___grid} + _parent::WeakRef end function radiation__process___profiles_1d___grid{T}() where T @@ -41840,8 +41840,8 @@ mutable struct radiation__process___profiles_1d___electrons{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d___electrons} + _parent::WeakRef end function radiation__process___profiles_1d___electrons{T}() where T @@ -41852,14 +41852,14 @@ end radiation__process___profiles_1d___electrons() = radiation__process___profiles_1d___electrons{Float64}() mutable struct radiation__process___profiles_1d{T} <: IDSvectorTimeElement{T} - var"electrons" :: radiation__process___profiles_1d___electrons{T} + var"electrons"::radiation__process___profiles_1d___electrons{T} var"emissivity_ion_total" :: Vector{<:T} var"emissivity_ion_total_σ" :: Vector{<:T} var"emissivity_neutral_total" :: Vector{<:T} var"emissivity_neutral_total_σ" :: Vector{<:T} - var"grid" :: radiation__process___profiles_1d___grid{T} - var"ion" :: IDSvector{radiation__process___profiles_1d___ion{T}} - var"neutral" :: IDSvector{radiation__process___profiles_1d___neutral{T}} + var"grid"::radiation__process___profiles_1d___grid{T} + var"ion"::IDSvector{radiation__process___profiles_1d___ion{T}} + var"neutral"::IDSvector{radiation__process___profiles_1d___neutral{T}} var"power_inside_ion_total" :: Vector{<:T} var"power_inside_ion_total_σ" :: Vector{<:T} var"power_inside_neutral_total" :: Vector{<:T} @@ -41869,8 +41869,8 @@ mutable struct radiation__process___profiles_1d{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___profiles_1d} + _parent::WeakRef end function radiation__process___profiles_1d{T}() where T @@ -41892,8 +41892,8 @@ mutable struct radiation__process___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___identifier} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___identifier} + _parent::WeakRef end function radiation__process___identifier{T}() where T @@ -41916,8 +41916,8 @@ mutable struct radiation__process___global_quantities___inside_vessel{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___global_quantities___inside_vessel} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___global_quantities___inside_vessel} + _parent::WeakRef end function radiation__process___global_quantities___inside_vessel{T}() where T @@ -41940,8 +41940,8 @@ mutable struct radiation__process___global_quantities___inside_lcfs{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___global_quantities___inside_lcfs} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___global_quantities___inside_lcfs} + _parent::WeakRef end function radiation__process___global_quantities___inside_lcfs{T}() where T @@ -41952,15 +41952,15 @@ end radiation__process___global_quantities___inside_lcfs() = radiation__process___global_quantities___inside_lcfs{Float64}() mutable struct radiation__process___global_quantities{T} <: IDSvectorTimeElement{T} - var"inside_lcfs" :: radiation__process___global_quantities___inside_lcfs{T} - var"inside_vessel" :: radiation__process___global_quantities___inside_vessel{T} + var"inside_lcfs"::radiation__process___global_quantities___inside_lcfs{T} + var"inside_vessel"::radiation__process___global_quantities___inside_vessel{T} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___global_quantities} + _parent::WeakRef end function radiation__process___global_quantities{T}() where T @@ -41980,8 +41980,8 @@ mutable struct radiation__process___ggd___neutral___state___neutral_type{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___neutral___state___neutral_type} + _parent::WeakRef end function radiation__process___ggd___neutral___state___neutral_type{T}() where T @@ -42002,8 +42002,8 @@ mutable struct radiation__process___ggd___neutral___state___emissivity{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___neutral___state___emissivity} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___neutral___state___emissivity} + _parent::WeakRef end function radiation__process___ggd___neutral___state___emissivity{T}() where T @@ -42015,9 +42015,9 @@ radiation__process___ggd___neutral___state___emissivity() = radiation__process__ mutable struct radiation__process___ggd___neutral___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"emissivity" :: IDSvector{radiation__process___ggd___neutral___state___emissivity{T}} + var"emissivity"::IDSvector{radiation__process___ggd___neutral___state___emissivity{T}} var"label" :: String - var"neutral_type" :: radiation__process___ggd___neutral___state___neutral_type{T} + var"neutral_type"::radiation__process___ggd___neutral___state___neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -42025,8 +42025,8 @@ mutable struct radiation__process___ggd___neutral___state{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___neutral___state} + _parent::WeakRef end function radiation__process___ggd___neutral___state{T}() where T @@ -42049,8 +42049,8 @@ mutable struct radiation__process___ggd___neutral___emissivity{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___neutral___emissivity} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___neutral___emissivity} + _parent::WeakRef end function radiation__process___ggd___neutral___emissivity{T}() where T @@ -42070,8 +42070,8 @@ mutable struct radiation__process___ggd___neutral___element{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___neutral___element} + _parent::WeakRef end function radiation__process___ggd___neutral___element{T}() where T @@ -42082,18 +42082,18 @@ end radiation__process___ggd___neutral___element() = radiation__process___ggd___neutral___element{Float64}() mutable struct radiation__process___ggd___neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{radiation__process___ggd___neutral___element{T}} - var"emissivity" :: IDSvector{radiation__process___ggd___neutral___emissivity{T}} + var"element"::IDSvector{radiation__process___ggd___neutral___element{T}} + var"emissivity"::IDSvector{radiation__process___ggd___neutral___emissivity{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int - var"state" :: IDSvector{radiation__process___ggd___neutral___state{T}} + var"state"::IDSvector{radiation__process___ggd___neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___neutral} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___neutral} + _parent::WeakRef end function radiation__process___ggd___neutral{T}() where T @@ -42117,8 +42117,8 @@ mutable struct radiation__process___ggd___ion___state___emissivity{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___ion___state___emissivity} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___ion___state___emissivity} + _parent::WeakRef end function radiation__process___ggd___ion___state___emissivity{T}() where T @@ -42130,7 +42130,7 @@ radiation__process___ggd___ion___state___emissivity() = radiation__process___ggd mutable struct radiation__process___ggd___ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"emissivity" :: IDSvector{radiation__process___ggd___ion___state___emissivity{T}} + var"emissivity"::IDSvector{radiation__process___ggd___ion___state___emissivity{T}} var"label" :: String var"vibrational_level" :: T var"vibrational_level_σ" :: T @@ -42143,8 +42143,8 @@ mutable struct radiation__process___ggd___ion___state{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___ion___state} + _parent::WeakRef end function radiation__process___ggd___ion___state{T}() where T @@ -42166,8 +42166,8 @@ mutable struct radiation__process___ggd___ion___emissivity{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___ion___emissivity} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___ion___emissivity} + _parent::WeakRef end function radiation__process___ggd___ion___emissivity{T}() where T @@ -42187,8 +42187,8 @@ mutable struct radiation__process___ggd___ion___element{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___ion___element} + _parent::WeakRef end function radiation__process___ggd___ion___element{T}() where T @@ -42199,20 +42199,20 @@ end radiation__process___ggd___ion___element() = radiation__process___ggd___ion___element{Float64}() mutable struct radiation__process___ggd___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{radiation__process___ggd___ion___element{T}} - var"emissivity" :: IDSvector{radiation__process___ggd___ion___emissivity{T}} + var"element"::IDSvector{radiation__process___ggd___ion___element{T}} + var"emissivity"::IDSvector{radiation__process___ggd___ion___emissivity{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"state" :: IDSvector{radiation__process___ggd___ion___state{T}} + var"state"::IDSvector{radiation__process___ggd___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___ion} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___ion} + _parent::WeakRef end function radiation__process___ggd___ion{T}() where T @@ -42236,8 +42236,8 @@ mutable struct radiation__process___ggd___electrons__emissivity{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___electrons__emissivity} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___electrons__emissivity} + _parent::WeakRef end function radiation__process___ggd___electrons__emissivity{T}() where T @@ -42248,13 +42248,13 @@ end radiation__process___ggd___electrons__emissivity() = radiation__process___ggd___electrons__emissivity{Float64}() mutable struct radiation__process___ggd___electrons{T} <: IDS{T} - var"emissivity" :: IDSvector{radiation__process___ggd___electrons__emissivity{T}} + var"emissivity"::IDSvector{radiation__process___ggd___electrons__emissivity{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd___electrons} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd___electrons} + _parent::WeakRef end function radiation__process___ggd___electrons{T}() where T @@ -42266,16 +42266,16 @@ end radiation__process___ggd___electrons() = radiation__process___ggd___electrons{Float64}() mutable struct radiation__process___ggd{T} <: IDSvectorTimeElement{T} - var"electrons" :: radiation__process___ggd___electrons{T} - var"ion" :: IDSvector{radiation__process___ggd___ion{T}} - var"neutral" :: IDSvector{radiation__process___ggd___neutral{T}} + var"electrons"::radiation__process___ggd___electrons{T} + var"ion"::IDSvector{radiation__process___ggd___ion{T}} + var"neutral"::IDSvector{radiation__process___ggd___neutral{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process___ggd} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process___ggd} + _parent::WeakRef end function radiation__process___ggd{T}() where T @@ -42289,16 +42289,16 @@ end radiation__process___ggd() = radiation__process___ggd{Float64}() mutable struct radiation__process{T} <: IDSvectorStaticElement{T} - var"ggd" :: IDSvector{radiation__process___ggd{T}} - var"global_quantities" :: IDSvector{radiation__process___global_quantities{T}} - var"identifier" :: radiation__process___identifier{T} - var"profiles_1d" :: IDSvector{radiation__process___profiles_1d{T}} + var"ggd"::IDSvector{radiation__process___ggd{T}} + var"global_quantities"::IDSvector{radiation__process___global_quantities{T}} + var"identifier"::radiation__process___identifier{T} + var"profiles_1d"::IDSvector{radiation__process___profiles_1d{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__process} - _parent :: WeakRef + _ref::Union{Nothing,radiation__process} + _parent::WeakRef end function radiation__process{T}() where T @@ -42320,8 +42320,8 @@ mutable struct radiation__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__version_put} + _parent::WeakRef end function radiation__ids_properties__version_put{T}() where T @@ -42338,8 +42338,8 @@ mutable struct radiation__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__provenance__node} + _parent::WeakRef end function radiation__ids_properties__provenance__node{T}() where T @@ -42350,13 +42350,13 @@ end radiation__ids_properties__provenance__node() = radiation__ids_properties__provenance__node{Float64}() mutable struct radiation__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{radiation__ids_properties__provenance__node{T}} + var"node"::IDSvector{radiation__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__provenance} + _parent::WeakRef end function radiation__ids_properties__provenance{T}() where T @@ -42378,8 +42378,8 @@ mutable struct radiation__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__plugins__node___readback} + _parent::WeakRef end function radiation__ids_properties__plugins__node___readback{T}() where T @@ -42400,8 +42400,8 @@ mutable struct radiation__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function radiation__ids_properties__plugins__node___put_operation{T}() where T @@ -42422,8 +42422,8 @@ mutable struct radiation__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function radiation__ids_properties__plugins__node___get_operation{T}() where T @@ -42434,16 +42434,16 @@ end radiation__ids_properties__plugins__node___get_operation() = radiation__ids_properties__plugins__node___get_operation{Float64}() mutable struct radiation__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{radiation__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{radiation__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{radiation__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{radiation__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{radiation__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{radiation__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__plugins__node} + _parent::WeakRef end function radiation__ids_properties__plugins__node{T}() where T @@ -42466,8 +42466,8 @@ mutable struct radiation__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function radiation__ids_properties__plugins__infrastructure_put{T}() where T @@ -42487,8 +42487,8 @@ mutable struct radiation__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function radiation__ids_properties__plugins__infrastructure_get{T}() where T @@ -42499,15 +42499,15 @@ end radiation__ids_properties__plugins__infrastructure_get() = radiation__ids_properties__plugins__infrastructure_get{Float64}() mutable struct radiation__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: radiation__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: radiation__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{radiation__ids_properties__plugins__node{T}} + var"infrastructure_get"::radiation__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::radiation__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{radiation__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__plugins} + _parent::WeakRef end function radiation__ids_properties__plugins{T}() where T @@ -42528,8 +42528,8 @@ mutable struct radiation__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties__occurrence_type} + _parent::WeakRef end function radiation__ids_properties__occurrence_type{T}() where T @@ -42545,17 +42545,17 @@ mutable struct radiation__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: radiation__ids_properties__occurrence_type{T} - var"plugins" :: radiation__ids_properties__plugins{T} - var"provenance" :: radiation__ids_properties__provenance{T} + var"occurrence_type"::radiation__ids_properties__occurrence_type{T} + var"plugins"::radiation__ids_properties__plugins{T} + var"provenance"::radiation__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: radiation__ids_properties__version_put{T} + var"version_put"::radiation__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,radiation__ids_properties} + _parent::WeakRef end function radiation__ids_properties{T}() where T @@ -42576,8 +42576,8 @@ mutable struct radiation__grid_ggd___space___objects_per_dimension___object___bo _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function radiation__grid_ggd___space___objects_per_dimension___object___boundary{T}() where T @@ -42588,7 +42588,7 @@ end radiation__grid_ggd___space___objects_per_dimension___object___boundary() = radiation__grid_ggd___space___objects_per_dimension___object___boundary{Float64}() mutable struct radiation__grid_ggd___space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{radiation__grid_ggd___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{radiation__grid_ggd___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -42600,8 +42600,8 @@ mutable struct radiation__grid_ggd___space___objects_per_dimension___object{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___space___objects_per_dimension___object} + _parent::WeakRef end function radiation__grid_ggd___space___objects_per_dimension___object{T}() where T @@ -42620,8 +42620,8 @@ mutable struct radiation__grid_ggd___space___objects_per_dimension___geometry_co _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function radiation__grid_ggd___space___objects_per_dimension___geometry_content{T}() where T @@ -42632,14 +42632,14 @@ end radiation__grid_ggd___space___objects_per_dimension___geometry_content() = radiation__grid_ggd___space___objects_per_dimension___geometry_content{Float64}() mutable struct radiation__grid_ggd___space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: radiation__grid_ggd___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{radiation__grid_ggd___space___objects_per_dimension___object{T}} + var"geometry_content"::radiation__grid_ggd___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{radiation__grid_ggd___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___space___objects_per_dimension} + _parent::WeakRef end function radiation__grid_ggd___space___objects_per_dimension{T}() where T @@ -42659,8 +42659,8 @@ mutable struct radiation__grid_ggd___space___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___space___identifier} + _parent::WeakRef end function radiation__grid_ggd___space___identifier{T}() where T @@ -42678,8 +42678,8 @@ mutable struct radiation__grid_ggd___space___geometry_type{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___space___geometry_type} + _parent::WeakRef end function radiation__grid_ggd___space___geometry_type{T}() where T @@ -42691,15 +42691,15 @@ radiation__grid_ggd___space___geometry_type() = radiation__grid_ggd___space___ge mutable struct radiation__grid_ggd___space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: radiation__grid_ggd___space___geometry_type{T} - var"identifier" :: radiation__grid_ggd___space___identifier{T} - var"objects_per_dimension" :: IDSvector{radiation__grid_ggd___space___objects_per_dimension{T}} + var"geometry_type"::radiation__grid_ggd___space___geometry_type{T} + var"identifier"::radiation__grid_ggd___space___identifier{T} + var"objects_per_dimension"::IDSvector{radiation__grid_ggd___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___space} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___space} + _parent::WeakRef end function radiation__grid_ggd___space{T}() where T @@ -42720,8 +42720,8 @@ mutable struct radiation__grid_ggd___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___identifier} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___identifier} + _parent::WeakRef end function radiation__grid_ggd___identifier{T}() where T @@ -42742,8 +42742,8 @@ mutable struct radiation__grid_ggd___grid_subset___metric{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___grid_subset___metric} + _parent::WeakRef end function radiation__grid_ggd___grid_subset___metric{T}() where T @@ -42761,8 +42761,8 @@ mutable struct radiation__grid_ggd___grid_subset___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___grid_subset___identifier} + _parent::WeakRef end function radiation__grid_ggd___grid_subset___identifier{T}() where T @@ -42780,8 +42780,8 @@ mutable struct radiation__grid_ggd___grid_subset___element___object{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___grid_subset___element___object} + _parent::WeakRef end function radiation__grid_ggd___grid_subset___element___object{T}() where T @@ -42792,13 +42792,13 @@ end radiation__grid_ggd___grid_subset___element___object() = radiation__grid_ggd___grid_subset___element___object{Float64}() mutable struct radiation__grid_ggd___grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{radiation__grid_ggd___grid_subset___element___object{T}} + var"object"::IDSvector{radiation__grid_ggd___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___grid_subset___element} + _parent::WeakRef end function radiation__grid_ggd___grid_subset___element{T}() where T @@ -42820,8 +42820,8 @@ mutable struct radiation__grid_ggd___grid_subset___base{T} <: IDSvectorRawElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___grid_subset___base} + _parent::WeakRef end function radiation__grid_ggd___grid_subset___base{T}() where T @@ -42832,17 +42832,17 @@ end radiation__grid_ggd___grid_subset___base() = radiation__grid_ggd___grid_subset___base{Float64}() mutable struct radiation__grid_ggd___grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{radiation__grid_ggd___grid_subset___base{T}} + var"base"::IDSvector{radiation__grid_ggd___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{radiation__grid_ggd___grid_subset___element{T}} - var"identifier" :: radiation__grid_ggd___grid_subset___identifier{T} - var"metric" :: radiation__grid_ggd___grid_subset___metric{T} + var"element"::IDSvector{radiation__grid_ggd___grid_subset___element{T}} + var"identifier"::radiation__grid_ggd___grid_subset___identifier{T} + var"metric"::radiation__grid_ggd___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd___grid_subset} + _parent::WeakRef end function radiation__grid_ggd___grid_subset{T}() where T @@ -42857,17 +42857,17 @@ end radiation__grid_ggd___grid_subset() = radiation__grid_ggd___grid_subset{Float64}() mutable struct radiation__grid_ggd{T} <: IDSvectorRawElement{T} - var"grid_subset" :: IDSvector{radiation__grid_ggd___grid_subset{T}} - var"identifier" :: radiation__grid_ggd___identifier{T} + var"grid_subset"::IDSvector{radiation__grid_ggd___grid_subset{T}} + var"identifier"::radiation__grid_ggd___identifier{T} var"path" :: String - var"space" :: IDSvector{radiation__grid_ggd___space{T}} + var"space"::IDSvector{radiation__grid_ggd___space{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,radiation__grid_ggd} + _parent::WeakRef end function radiation__grid_ggd{T}() where T @@ -42891,8 +42891,8 @@ mutable struct radiation__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__code__library} - _parent :: WeakRef + _ref::Union{Nothing,radiation__code__library} + _parent::WeakRef end function radiation__code__library{T}() where T @@ -42905,7 +42905,7 @@ radiation__code__library() = radiation__code__library{Float64}() mutable struct radiation__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{radiation__code__library{T}} + var"library"::IDSvector{radiation__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -42915,8 +42915,8 @@ mutable struct radiation__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation__code} - _parent :: WeakRef + _ref::Union{Nothing,radiation__code} + _parent::WeakRef end function radiation__code{T}() where T @@ -42928,18 +42928,18 @@ end radiation__code() = radiation__code{Float64}() mutable struct radiation{T} <: IDStop{T} - var"code" :: radiation__code{T} - var"grid_ggd" :: IDSvector{radiation__grid_ggd{T}} - var"ids_properties" :: radiation__ids_properties{T} - var"process" :: IDSvector{radiation__process{T}} + var"code"::radiation__code{T} + var"grid_ggd"::IDSvector{radiation__grid_ggd{T}} + var"ids_properties"::radiation__ids_properties{T} + var"process"::IDSvector{radiation__process{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: radiation__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::radiation__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,radiation} - _parent :: WeakRef + _ref::Union{Nothing,radiation} + _parent::WeakRef end function radiation{T}() where T @@ -42964,8 +42964,8 @@ mutable struct pulse_schedule__tf__b_field_tor_vacuum_r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__tf__b_field_tor_vacuum_r} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__tf__b_field_tor_vacuum_r} + _parent::WeakRef end function pulse_schedule__tf__b_field_tor_vacuum_r{T}() where T @@ -42982,8 +42982,8 @@ mutable struct pulse_schedule__tf__b_field_tor_vacuum{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__tf__b_field_tor_vacuum} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__tf__b_field_tor_vacuum} + _parent::WeakRef end function pulse_schedule__tf__b_field_tor_vacuum{T}() where T @@ -42994,8 +42994,8 @@ end pulse_schedule__tf__b_field_tor_vacuum() = pulse_schedule__tf__b_field_tor_vacuum{Float64}() mutable struct pulse_schedule__tf{T} <: IDS{T} - var"b_field_tor_vacuum" :: pulse_schedule__tf__b_field_tor_vacuum{T} - var"b_field_tor_vacuum_r" :: pulse_schedule__tf__b_field_tor_vacuum_r{T} + var"b_field_tor_vacuum"::pulse_schedule__tf__b_field_tor_vacuum{T} + var"b_field_tor_vacuum_r"::pulse_schedule__tf__b_field_tor_vacuum_r{T} var"mode" :: Vector{Int} var"r0" :: T var"r0_σ" :: T @@ -43004,8 +43004,8 @@ mutable struct pulse_schedule__tf{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__tf} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__tf} + _parent::WeakRef end function pulse_schedule__tf{T}() where T @@ -43024,8 +43024,8 @@ mutable struct pulse_schedule__profiles_control__f_df_dpsi{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__profiles_control__f_df_dpsi} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__profiles_control__f_df_dpsi} + _parent::WeakRef end function pulse_schedule__profiles_control__f_df_dpsi{T}() where T @@ -43042,8 +43042,8 @@ mutable struct pulse_schedule__profiles_control__dpressure_dpsi{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__profiles_control__dpressure_dpsi} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__profiles_control__dpressure_dpsi} + _parent::WeakRef end function pulse_schedule__profiles_control__dpressure_dpsi{T}() where T @@ -43054,8 +43054,8 @@ end pulse_schedule__profiles_control__dpressure_dpsi() = pulse_schedule__profiles_control__dpressure_dpsi{Float64}() mutable struct pulse_schedule__profiles_control{T} <: IDS{T} - var"dpressure_dpsi" :: pulse_schedule__profiles_control__dpressure_dpsi{T} - var"f_df_dpsi" :: pulse_schedule__profiles_control__f_df_dpsi{T} + var"dpressure_dpsi"::pulse_schedule__profiles_control__dpressure_dpsi{T} + var"f_df_dpsi"::pulse_schedule__profiles_control__f_df_dpsi{T} var"psi_norm" :: Vector{<:T} var"psi_norm_σ" :: Vector{<:T} var"time" :: Vector{Float64} @@ -43063,8 +43063,8 @@ mutable struct pulse_schedule__profiles_control{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__profiles_control} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__profiles_control} + _parent::WeakRef end function pulse_schedule__profiles_control{T}() where T @@ -43086,8 +43086,8 @@ mutable struct pulse_schedule__position_control__z_r_min{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__z_r_min} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__z_r_min} + _parent::WeakRef end function pulse_schedule__position_control__z_r_min{T}() where T @@ -43107,8 +43107,8 @@ mutable struct pulse_schedule__position_control__z_r_max{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__z_r_max} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__z_r_max} + _parent::WeakRef end function pulse_schedule__position_control__z_r_max{T}() where T @@ -43128,8 +43128,8 @@ mutable struct pulse_schedule__position_control__x_point___z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__x_point___z} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__x_point___z} + _parent::WeakRef end function pulse_schedule__position_control__x_point___z{T}() where T @@ -43149,8 +43149,8 @@ mutable struct pulse_schedule__position_control__x_point___r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__x_point___r} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__x_point___r} + _parent::WeakRef end function pulse_schedule__position_control__x_point___r{T}() where T @@ -43161,14 +43161,14 @@ end pulse_schedule__position_control__x_point___r() = pulse_schedule__position_control__x_point___r{Float64}() mutable struct pulse_schedule__position_control__x_point{T} <: IDSvectorStaticElement{T} - var"r" :: pulse_schedule__position_control__x_point___r{T} - var"z" :: pulse_schedule__position_control__x_point___z{T} + var"r"::pulse_schedule__position_control__x_point___r{T} + var"z"::pulse_schedule__position_control__x_point___z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__x_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__x_point} + _parent::WeakRef end function pulse_schedule__position_control__x_point{T}() where T @@ -43187,8 +43187,8 @@ mutable struct pulse_schedule__position_control__twist{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__twist} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__twist} + _parent::WeakRef end function pulse_schedule__position_control__twist{T}() where T @@ -43208,8 +43208,8 @@ mutable struct pulse_schedule__position_control__triangularity_upper{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__triangularity_upper} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__triangularity_upper} + _parent::WeakRef end function pulse_schedule__position_control__triangularity_upper{T}() where T @@ -43229,8 +43229,8 @@ mutable struct pulse_schedule__position_control__triangularity_outer{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__triangularity_outer} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__triangularity_outer} + _parent::WeakRef end function pulse_schedule__position_control__triangularity_outer{T}() where T @@ -43250,8 +43250,8 @@ mutable struct pulse_schedule__position_control__triangularity_minor{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__triangularity_minor} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__triangularity_minor} + _parent::WeakRef end function pulse_schedule__position_control__triangularity_minor{T}() where T @@ -43271,8 +43271,8 @@ mutable struct pulse_schedule__position_control__triangularity_lower{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__triangularity_lower} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__triangularity_lower} + _parent::WeakRef end function pulse_schedule__position_control__triangularity_lower{T}() where T @@ -43292,8 +43292,8 @@ mutable struct pulse_schedule__position_control__triangularity_inner{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__triangularity_inner} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__triangularity_inner} + _parent::WeakRef end function pulse_schedule__position_control__triangularity_inner{T}() where T @@ -43313,8 +43313,8 @@ mutable struct pulse_schedule__position_control__triangularity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__triangularity} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__triangularity} + _parent::WeakRef end function pulse_schedule__position_control__triangularity{T}() where T @@ -43331,8 +43331,8 @@ mutable struct pulse_schedule__position_control__tilt{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__tilt} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__tilt} + _parent::WeakRef end function pulse_schedule__position_control__tilt{T}() where T @@ -43352,8 +43352,8 @@ mutable struct pulse_schedule__position_control__strike_point___z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__strike_point___z} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__strike_point___z} + _parent::WeakRef end function pulse_schedule__position_control__strike_point___z{T}() where T @@ -43373,8 +43373,8 @@ mutable struct pulse_schedule__position_control__strike_point___r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__strike_point___r} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__strike_point___r} + _parent::WeakRef end function pulse_schedule__position_control__strike_point___r{T}() where T @@ -43385,14 +43385,14 @@ end pulse_schedule__position_control__strike_point___r() = pulse_schedule__position_control__strike_point___r{Float64}() mutable struct pulse_schedule__position_control__strike_point{T} <: IDSvectorStaticElement{T} - var"r" :: pulse_schedule__position_control__strike_point___r{T} - var"z" :: pulse_schedule__position_control__strike_point___z{T} + var"r"::pulse_schedule__position_control__strike_point___r{T} + var"z"::pulse_schedule__position_control__strike_point___z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__strike_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__strike_point} + _parent::WeakRef end function pulse_schedule__position_control__strike_point{T}() where T @@ -43414,8 +43414,8 @@ mutable struct pulse_schedule__position_control__squareness_upper_outer{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__squareness_upper_outer} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__squareness_upper_outer} + _parent::WeakRef end function pulse_schedule__position_control__squareness_upper_outer{T}() where T @@ -43435,8 +43435,8 @@ mutable struct pulse_schedule__position_control__squareness_upper_inner{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__squareness_upper_inner} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__squareness_upper_inner} + _parent::WeakRef end function pulse_schedule__position_control__squareness_upper_inner{T}() where T @@ -43456,8 +43456,8 @@ mutable struct pulse_schedule__position_control__squareness_lower_outer{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__squareness_lower_outer} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__squareness_lower_outer} + _parent::WeakRef end function pulse_schedule__position_control__squareness_lower_outer{T}() where T @@ -43477,8 +43477,8 @@ mutable struct pulse_schedule__position_control__squareness_lower_inner{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__squareness_lower_inner} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__squareness_lower_inner} + _parent::WeakRef end function pulse_schedule__position_control__squareness_lower_inner{T}() where T @@ -43495,8 +43495,8 @@ mutable struct pulse_schedule__position_control__squareness{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__squareness} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__squareness} + _parent::WeakRef end function pulse_schedule__position_control__squareness{T}() where T @@ -43513,8 +43513,8 @@ mutable struct pulse_schedule__position_control__ovality{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__ovality} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__ovality} + _parent::WeakRef end function pulse_schedule__position_control__ovality{T}() where T @@ -43534,8 +43534,8 @@ mutable struct pulse_schedule__position_control__minor_radius{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__minor_radius} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__minor_radius} + _parent::WeakRef end function pulse_schedule__position_control__minor_radius{T}() where T @@ -43555,8 +43555,8 @@ mutable struct pulse_schedule__position_control__magnetic_axis__z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__magnetic_axis__z} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__magnetic_axis__z} + _parent::WeakRef end function pulse_schedule__position_control__magnetic_axis__z{T}() where T @@ -43576,8 +43576,8 @@ mutable struct pulse_schedule__position_control__magnetic_axis__r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__magnetic_axis__r} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__magnetic_axis__r} + _parent::WeakRef end function pulse_schedule__position_control__magnetic_axis__r{T}() where T @@ -43588,14 +43588,14 @@ end pulse_schedule__position_control__magnetic_axis__r() = pulse_schedule__position_control__magnetic_axis__r{Float64}() mutable struct pulse_schedule__position_control__magnetic_axis{T} <: IDS{T} - var"r" :: pulse_schedule__position_control__magnetic_axis__r{T} - var"z" :: pulse_schedule__position_control__magnetic_axis__z{T} + var"r"::pulse_schedule__position_control__magnetic_axis__r{T} + var"z"::pulse_schedule__position_control__magnetic_axis__z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__magnetic_axis} + _parent::WeakRef end function pulse_schedule__position_control__magnetic_axis{T}() where T @@ -43617,8 +43617,8 @@ mutable struct pulse_schedule__position_control__geometric_axis__z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__geometric_axis__z} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__geometric_axis__z} + _parent::WeakRef end function pulse_schedule__position_control__geometric_axis__z{T}() where T @@ -43638,8 +43638,8 @@ mutable struct pulse_schedule__position_control__geometric_axis__r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__geometric_axis__r} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__geometric_axis__r} + _parent::WeakRef end function pulse_schedule__position_control__geometric_axis__r{T}() where T @@ -43650,14 +43650,14 @@ end pulse_schedule__position_control__geometric_axis__r() = pulse_schedule__position_control__geometric_axis__r{Float64}() mutable struct pulse_schedule__position_control__geometric_axis{T} <: IDS{T} - var"r" :: pulse_schedule__position_control__geometric_axis__r{T} - var"z" :: pulse_schedule__position_control__geometric_axis__z{T} + var"r"::pulse_schedule__position_control__geometric_axis__r{T} + var"z"::pulse_schedule__position_control__geometric_axis__z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__geometric_axis} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__geometric_axis} + _parent::WeakRef end function pulse_schedule__position_control__geometric_axis{T}() where T @@ -43679,8 +43679,8 @@ mutable struct pulse_schedule__position_control__gap___value{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__gap___value} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__gap___value} + _parent::WeakRef end function pulse_schedule__position_control__gap___value{T}() where T @@ -43697,15 +43697,15 @@ mutable struct pulse_schedule__position_control__gap{T} <: IDSvectorStaticElemen var"name" :: String var"r" :: T var"r_σ" :: T - var"value" :: pulse_schedule__position_control__gap___value{T} + var"value"::pulse_schedule__position_control__gap___value{T} var"z" :: T var"z_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__gap} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__gap} + _parent::WeakRef end function pulse_schedule__position_control__gap{T}() where T @@ -43726,8 +43726,8 @@ mutable struct pulse_schedule__position_control__elongation_upper{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__elongation_upper} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__elongation_upper} + _parent::WeakRef end function pulse_schedule__position_control__elongation_upper{T}() where T @@ -43747,8 +43747,8 @@ mutable struct pulse_schedule__position_control__elongation_lower{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__elongation_lower} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__elongation_lower} + _parent::WeakRef end function pulse_schedule__position_control__elongation_lower{T}() where T @@ -43768,8 +43768,8 @@ mutable struct pulse_schedule__position_control__elongation{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__elongation} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__elongation} + _parent::WeakRef end function pulse_schedule__position_control__elongation{T}() where T @@ -43789,8 +43789,8 @@ mutable struct pulse_schedule__position_control__current_centroid__z{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__current_centroid__z} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__current_centroid__z} + _parent::WeakRef end function pulse_schedule__position_control__current_centroid__z{T}() where T @@ -43810,8 +43810,8 @@ mutable struct pulse_schedule__position_control__current_centroid__r{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__current_centroid__r} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__current_centroid__r} + _parent::WeakRef end function pulse_schedule__position_control__current_centroid__r{T}() where T @@ -43822,14 +43822,14 @@ end pulse_schedule__position_control__current_centroid__r() = pulse_schedule__position_control__current_centroid__r{Float64}() mutable struct pulse_schedule__position_control__current_centroid{T} <: IDS{T} - var"r" :: pulse_schedule__position_control__current_centroid__r{T} - var"z" :: pulse_schedule__position_control__current_centroid__z{T} + var"r"::pulse_schedule__position_control__current_centroid__r{T} + var"z"::pulse_schedule__position_control__current_centroid__z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__current_centroid} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__current_centroid} + _parent::WeakRef end function pulse_schedule__position_control__current_centroid{T}() where T @@ -43851,8 +43851,8 @@ mutable struct pulse_schedule__position_control__boundary_outline___z{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__boundary_outline___z} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__boundary_outline___z} + _parent::WeakRef end function pulse_schedule__position_control__boundary_outline___z{T}() where T @@ -43872,8 +43872,8 @@ mutable struct pulse_schedule__position_control__boundary_outline___r{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__boundary_outline___r} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__boundary_outline___r} + _parent::WeakRef end function pulse_schedule__position_control__boundary_outline___r{T}() where T @@ -43884,14 +43884,14 @@ end pulse_schedule__position_control__boundary_outline___r() = pulse_schedule__position_control__boundary_outline___r{Float64}() mutable struct pulse_schedule__position_control__boundary_outline{T} <: IDSvectorStaticElement{T} - var"r" :: pulse_schedule__position_control__boundary_outline___r{T} - var"z" :: pulse_schedule__position_control__boundary_outline___z{T} + var"r"::pulse_schedule__position_control__boundary_outline___r{T} + var"z"::pulse_schedule__position_control__boundary_outline___z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__boundary_outline} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__boundary_outline} + _parent::WeakRef end function pulse_schedule__position_control__boundary_outline{T}() where T @@ -43913,8 +43913,8 @@ mutable struct pulse_schedule__position_control__active_limiter_point__z{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__active_limiter_point__z} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__active_limiter_point__z} + _parent::WeakRef end function pulse_schedule__position_control__active_limiter_point__z{T}() where T @@ -43934,8 +43934,8 @@ mutable struct pulse_schedule__position_control__active_limiter_point__r{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__active_limiter_point__r} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__active_limiter_point__r} + _parent::WeakRef end function pulse_schedule__position_control__active_limiter_point__r{T}() where T @@ -43946,14 +43946,14 @@ end pulse_schedule__position_control__active_limiter_point__r() = pulse_schedule__position_control__active_limiter_point__r{Float64}() mutable struct pulse_schedule__position_control__active_limiter_point{T} <: IDS{T} - var"r" :: pulse_schedule__position_control__active_limiter_point__r{T} - var"z" :: pulse_schedule__position_control__active_limiter_point__z{T} + var"r"::pulse_schedule__position_control__active_limiter_point__r{T} + var"z"::pulse_schedule__position_control__active_limiter_point__z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control__active_limiter_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control__active_limiter_point} + _parent::WeakRef end function pulse_schedule__position_control__active_limiter_point{T}() where T @@ -43966,42 +43966,42 @@ end pulse_schedule__position_control__active_limiter_point() = pulse_schedule__position_control__active_limiter_point{Float64}() mutable struct pulse_schedule__position_control{T} <: IDS{T} - var"active_limiter_point" :: pulse_schedule__position_control__active_limiter_point{T} - var"boundary_outline" :: IDSvector{pulse_schedule__position_control__boundary_outline{T}} - var"current_centroid" :: pulse_schedule__position_control__current_centroid{T} - var"elongation" :: pulse_schedule__position_control__elongation{T} - var"elongation_lower" :: pulse_schedule__position_control__elongation_lower{T} - var"elongation_upper" :: pulse_schedule__position_control__elongation_upper{T} - var"gap" :: IDSvector{pulse_schedule__position_control__gap{T}} - var"geometric_axis" :: pulse_schedule__position_control__geometric_axis{T} - var"magnetic_axis" :: pulse_schedule__position_control__magnetic_axis{T} - var"minor_radius" :: pulse_schedule__position_control__minor_radius{T} + var"active_limiter_point"::pulse_schedule__position_control__active_limiter_point{T} + var"boundary_outline"::IDSvector{pulse_schedule__position_control__boundary_outline{T}} + var"current_centroid"::pulse_schedule__position_control__current_centroid{T} + var"elongation"::pulse_schedule__position_control__elongation{T} + var"elongation_lower"::pulse_schedule__position_control__elongation_lower{T} + var"elongation_upper"::pulse_schedule__position_control__elongation_upper{T} + var"gap"::IDSvector{pulse_schedule__position_control__gap{T}} + var"geometric_axis"::pulse_schedule__position_control__geometric_axis{T} + var"magnetic_axis"::pulse_schedule__position_control__magnetic_axis{T} + var"minor_radius"::pulse_schedule__position_control__minor_radius{T} var"mode" :: Vector{Int} - var"ovality" :: pulse_schedule__position_control__ovality{T} - var"squareness" :: pulse_schedule__position_control__squareness{T} - var"squareness_lower_inner" :: pulse_schedule__position_control__squareness_lower_inner{T} - var"squareness_lower_outer" :: pulse_schedule__position_control__squareness_lower_outer{T} - var"squareness_upper_inner" :: pulse_schedule__position_control__squareness_upper_inner{T} - var"squareness_upper_outer" :: pulse_schedule__position_control__squareness_upper_outer{T} - var"strike_point" :: IDSvector{pulse_schedule__position_control__strike_point{T}} - var"tilt" :: pulse_schedule__position_control__tilt{T} + var"ovality"::pulse_schedule__position_control__ovality{T} + var"squareness"::pulse_schedule__position_control__squareness{T} + var"squareness_lower_inner"::pulse_schedule__position_control__squareness_lower_inner{T} + var"squareness_lower_outer"::pulse_schedule__position_control__squareness_lower_outer{T} + var"squareness_upper_inner"::pulse_schedule__position_control__squareness_upper_inner{T} + var"squareness_upper_outer"::pulse_schedule__position_control__squareness_upper_outer{T} + var"strike_point"::IDSvector{pulse_schedule__position_control__strike_point{T}} + var"tilt"::pulse_schedule__position_control__tilt{T} var"time" :: Vector{Float64} - var"triangularity" :: pulse_schedule__position_control__triangularity{T} - var"triangularity_inner" :: pulse_schedule__position_control__triangularity_inner{T} - var"triangularity_lower" :: pulse_schedule__position_control__triangularity_lower{T} - var"triangularity_minor" :: pulse_schedule__position_control__triangularity_minor{T} - var"triangularity_outer" :: pulse_schedule__position_control__triangularity_outer{T} - var"triangularity_upper" :: pulse_schedule__position_control__triangularity_upper{T} - var"twist" :: pulse_schedule__position_control__twist{T} - var"x_point" :: IDSvector{pulse_schedule__position_control__x_point{T}} - var"z_r_max" :: pulse_schedule__position_control__z_r_max{T} - var"z_r_min" :: pulse_schedule__position_control__z_r_min{T} + var"triangularity"::pulse_schedule__position_control__triangularity{T} + var"triangularity_inner"::pulse_schedule__position_control__triangularity_inner{T} + var"triangularity_lower"::pulse_schedule__position_control__triangularity_lower{T} + var"triangularity_minor"::pulse_schedule__position_control__triangularity_minor{T} + var"triangularity_outer"::pulse_schedule__position_control__triangularity_outer{T} + var"triangularity_upper"::pulse_schedule__position_control__triangularity_upper{T} + var"twist"::pulse_schedule__position_control__twist{T} + var"x_point"::IDSvector{pulse_schedule__position_control__x_point{T}} + var"z_r_max"::pulse_schedule__position_control__z_r_max{T} + var"z_r_min"::pulse_schedule__position_control__z_r_min{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__position_control} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__position_control} + _parent::WeakRef end function pulse_schedule__position_control{T}() where T @@ -44049,8 +44049,8 @@ mutable struct pulse_schedule__pf_active__supply___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pf_active__supply___voltage} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pf_active__supply___voltage} + _parent::WeakRef end function pulse_schedule__pf_active__supply___voltage{T}() where T @@ -44070,8 +44070,8 @@ mutable struct pulse_schedule__pf_active__supply___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pf_active__supply___current} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pf_active__supply___current} + _parent::WeakRef end function pulse_schedule__pf_active__supply___current{T}() where T @@ -44082,16 +44082,16 @@ end pulse_schedule__pf_active__supply___current() = pulse_schedule__pf_active__supply___current{Float64}() mutable struct pulse_schedule__pf_active__supply{T} <: IDSvectorStaticElement{T} - var"current" :: pulse_schedule__pf_active__supply___current{T} + var"current"::pulse_schedule__pf_active__supply___current{T} var"identifier" :: String var"name" :: String - var"voltage" :: pulse_schedule__pf_active__supply___voltage{T} + var"voltage"::pulse_schedule__pf_active__supply___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pf_active__supply} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pf_active__supply} + _parent::WeakRef end function pulse_schedule__pf_active__supply{T}() where T @@ -44110,8 +44110,8 @@ mutable struct pulse_schedule__pf_active__coil___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pf_active__coil___voltage} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pf_active__coil___voltage} + _parent::WeakRef end function pulse_schedule__pf_active__coil___voltage{T}() where T @@ -44131,8 +44131,8 @@ mutable struct pulse_schedule__pf_active__coil___resistance_additional{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pf_active__coil___resistance_additional} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pf_active__coil___resistance_additional} + _parent::WeakRef end function pulse_schedule__pf_active__coil___resistance_additional{T}() where T @@ -44152,8 +44152,8 @@ mutable struct pulse_schedule__pf_active__coil___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pf_active__coil___current} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pf_active__coil___current} + _parent::WeakRef end function pulse_schedule__pf_active__coil___current{T}() where T @@ -44164,17 +44164,17 @@ end pulse_schedule__pf_active__coil___current() = pulse_schedule__pf_active__coil___current{Float64}() mutable struct pulse_schedule__pf_active__coil{T} <: IDSvectorStaticElement{T} - var"current" :: pulse_schedule__pf_active__coil___current{T} + var"current"::pulse_schedule__pf_active__coil___current{T} var"identifier" :: String var"name" :: String - var"resistance_additional" :: pulse_schedule__pf_active__coil___resistance_additional{T} - var"voltage" :: pulse_schedule__pf_active__coil___voltage{T} + var"resistance_additional"::pulse_schedule__pf_active__coil___resistance_additional{T} + var"voltage"::pulse_schedule__pf_active__coil___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pf_active__coil} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pf_active__coil} + _parent::WeakRef end function pulse_schedule__pf_active__coil{T}() where T @@ -44188,16 +44188,16 @@ end pulse_schedule__pf_active__coil() = pulse_schedule__pf_active__coil{Float64}() mutable struct pulse_schedule__pf_active{T} <: IDS{T} - var"coil" :: IDSvector{pulse_schedule__pf_active__coil{T}} + var"coil"::IDSvector{pulse_schedule__pf_active__coil{T}} var"mode" :: Vector{Int} - var"supply" :: IDSvector{pulse_schedule__pf_active__supply{T}} + var"supply"::IDSvector{pulse_schedule__pf_active__supply{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pf_active} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pf_active} + _parent::WeakRef end function pulse_schedule__pf_active{T}() where T @@ -44216,8 +44216,8 @@ mutable struct pulse_schedule__pellet__launcher___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pellet__launcher___frequency} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pellet__launcher___frequency} + _parent::WeakRef end function pulse_schedule__pellet__launcher___frequency{T}() where T @@ -44234,8 +44234,8 @@ mutable struct pulse_schedule__pellet__launcher___deposition_rho_tor_norm_width{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pellet__launcher___deposition_rho_tor_norm_width} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pellet__launcher___deposition_rho_tor_norm_width} + _parent::WeakRef end function pulse_schedule__pellet__launcher___deposition_rho_tor_norm_width{T}() where T @@ -44252,8 +44252,8 @@ mutable struct pulse_schedule__pellet__launcher___deposition_rho_tor_norm{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pellet__launcher___deposition_rho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pellet__launcher___deposition_rho_tor_norm} + _parent::WeakRef end function pulse_schedule__pellet__launcher___deposition_rho_tor_norm{T}() where T @@ -44264,15 +44264,15 @@ end pulse_schedule__pellet__launcher___deposition_rho_tor_norm() = pulse_schedule__pellet__launcher___deposition_rho_tor_norm{Float64}() mutable struct pulse_schedule__pellet__launcher{T} <: IDSvectorStaticElement{T} - var"deposition_rho_tor_norm" :: pulse_schedule__pellet__launcher___deposition_rho_tor_norm{T} - var"deposition_rho_tor_norm_width" :: pulse_schedule__pellet__launcher___deposition_rho_tor_norm_width{T} - var"frequency" :: pulse_schedule__pellet__launcher___frequency{T} + var"deposition_rho_tor_norm"::pulse_schedule__pellet__launcher___deposition_rho_tor_norm{T} + var"deposition_rho_tor_norm_width"::pulse_schedule__pellet__launcher___deposition_rho_tor_norm_width{T} + var"frequency"::pulse_schedule__pellet__launcher___frequency{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pellet__launcher} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pellet__launcher} + _parent::WeakRef end function pulse_schedule__pellet__launcher{T}() where T @@ -44286,14 +44286,14 @@ end pulse_schedule__pellet__launcher() = pulse_schedule__pellet__launcher{Float64}() mutable struct pulse_schedule__pellet{T} <: IDS{T} - var"launcher" :: IDSvector{pulse_schedule__pellet__launcher{T}} + var"launcher"::IDSvector{pulse_schedule__pellet__launcher{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__pellet} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__pellet} + _parent::WeakRef end function pulse_schedule__pellet{T}() where T @@ -44314,8 +44314,8 @@ mutable struct pulse_schedule__nbi__unit___species___element{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi__unit___species___element} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi__unit___species___element} + _parent::WeakRef end function pulse_schedule__nbi__unit___species___element{T}() where T @@ -44326,7 +44326,7 @@ end pulse_schedule__nbi__unit___species___element() = pulse_schedule__nbi__unit___species___element{Float64}() mutable struct pulse_schedule__nbi__unit___species{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{pulse_schedule__nbi__unit___species___element{T}} + var"element"::IDSvector{pulse_schedule__nbi__unit___species___element{T}} var"fraction" :: T var"fraction_σ" :: T var"label" :: String @@ -44334,8 +44334,8 @@ mutable struct pulse_schedule__nbi__unit___species{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi__unit___species} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi__unit___species} + _parent::WeakRef end function pulse_schedule__nbi__unit___species{T}() where T @@ -44356,8 +44356,8 @@ mutable struct pulse_schedule__nbi__unit___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi__unit___power} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi__unit___power} + _parent::WeakRef end function pulse_schedule__nbi__unit___power{T}() where T @@ -44377,8 +44377,8 @@ mutable struct pulse_schedule__nbi__unit___energy{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi__unit___energy} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi__unit___energy} + _parent::WeakRef end function pulse_schedule__nbi__unit___energy{T}() where T @@ -44395,8 +44395,8 @@ mutable struct pulse_schedule__nbi__unit___deposition_rho_tor_norm_width{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi__unit___deposition_rho_tor_norm_width} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi__unit___deposition_rho_tor_norm_width} + _parent::WeakRef end function pulse_schedule__nbi__unit___deposition_rho_tor_norm_width{T}() where T @@ -44413,8 +44413,8 @@ mutable struct pulse_schedule__nbi__unit___deposition_rho_tor_norm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi__unit___deposition_rho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi__unit___deposition_rho_tor_norm} + _parent::WeakRef end function pulse_schedule__nbi__unit___deposition_rho_tor_norm{T}() where T @@ -44425,19 +44425,19 @@ end pulse_schedule__nbi__unit___deposition_rho_tor_norm() = pulse_schedule__nbi__unit___deposition_rho_tor_norm{Float64}() mutable struct pulse_schedule__nbi__unit{T} <: IDSvectorStaticElement{T} - var"deposition_rho_tor_norm" :: pulse_schedule__nbi__unit___deposition_rho_tor_norm{T} - var"deposition_rho_tor_norm_width" :: pulse_schedule__nbi__unit___deposition_rho_tor_norm_width{T} - var"energy" :: pulse_schedule__nbi__unit___energy{T} + var"deposition_rho_tor_norm"::pulse_schedule__nbi__unit___deposition_rho_tor_norm{T} + var"deposition_rho_tor_norm_width"::pulse_schedule__nbi__unit___deposition_rho_tor_norm_width{T} + var"energy"::pulse_schedule__nbi__unit___energy{T} var"identifier" :: String var"name" :: String - var"power" :: pulse_schedule__nbi__unit___power{T} - var"species" :: IDSvector{pulse_schedule__nbi__unit___species{T}} + var"power"::pulse_schedule__nbi__unit___power{T} + var"species"::IDSvector{pulse_schedule__nbi__unit___species{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi__unit} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi__unit} + _parent::WeakRef end function pulse_schedule__nbi__unit{T}() where T @@ -44462,8 +44462,8 @@ mutable struct pulse_schedule__nbi__power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi__power} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi__power} + _parent::WeakRef end function pulse_schedule__nbi__power{T}() where T @@ -44475,15 +44475,15 @@ pulse_schedule__nbi__power() = pulse_schedule__nbi__power{Float64}() mutable struct pulse_schedule__nbi{T} <: IDS{T} var"mode" :: Vector{Int} - var"power" :: pulse_schedule__nbi__power{T} + var"power"::pulse_schedule__nbi__power{T} var"time" :: Vector{Float64} - var"unit" :: IDSvector{pulse_schedule__nbi__unit{T}} + var"unit"::IDSvector{pulse_schedule__nbi__unit{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__nbi} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__nbi} + _parent::WeakRef end function pulse_schedule__nbi{T}() where T @@ -44505,8 +44505,8 @@ mutable struct pulse_schedule__lh__power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__power} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__power} + _parent::WeakRef end function pulse_schedule__lh__power{T}() where T @@ -44524,8 +44524,8 @@ mutable struct pulse_schedule__lh__antenna___power_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__antenna___power_type} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__antenna___power_type} + _parent::WeakRef end function pulse_schedule__lh__antenna___power_type{T}() where T @@ -44545,8 +44545,8 @@ mutable struct pulse_schedule__lh__antenna___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__antenna___power} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__antenna___power} + _parent::WeakRef end function pulse_schedule__lh__antenna___power{T}() where T @@ -44566,8 +44566,8 @@ mutable struct pulse_schedule__lh__antenna___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__antenna___phase} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__antenna___phase} + _parent::WeakRef end function pulse_schedule__lh__antenna___phase{T}() where T @@ -44587,8 +44587,8 @@ mutable struct pulse_schedule__lh__antenna___n_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__antenna___n_parallel} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__antenna___n_parallel} + _parent::WeakRef end function pulse_schedule__lh__antenna___n_parallel{T}() where T @@ -44608,8 +44608,8 @@ mutable struct pulse_schedule__lh__antenna___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__antenna___frequency} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__antenna___frequency} + _parent::WeakRef end function pulse_schedule__lh__antenna___frequency{T}() where T @@ -44626,8 +44626,8 @@ mutable struct pulse_schedule__lh__antenna___deposition_rho_tor_norm_width{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__antenna___deposition_rho_tor_norm_width} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__antenna___deposition_rho_tor_norm_width} + _parent::WeakRef end function pulse_schedule__lh__antenna___deposition_rho_tor_norm_width{T}() where T @@ -44644,8 +44644,8 @@ mutable struct pulse_schedule__lh__antenna___deposition_rho_tor_norm{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__antenna___deposition_rho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__antenna___deposition_rho_tor_norm} + _parent::WeakRef end function pulse_schedule__lh__antenna___deposition_rho_tor_norm{T}() where T @@ -44656,21 +44656,21 @@ end pulse_schedule__lh__antenna___deposition_rho_tor_norm() = pulse_schedule__lh__antenna___deposition_rho_tor_norm{Float64}() mutable struct pulse_schedule__lh__antenna{T} <: IDSvectorStaticElement{T} - var"deposition_rho_tor_norm" :: pulse_schedule__lh__antenna___deposition_rho_tor_norm{T} - var"deposition_rho_tor_norm_width" :: pulse_schedule__lh__antenna___deposition_rho_tor_norm_width{T} - var"frequency" :: pulse_schedule__lh__antenna___frequency{T} + var"deposition_rho_tor_norm"::pulse_schedule__lh__antenna___deposition_rho_tor_norm{T} + var"deposition_rho_tor_norm_width"::pulse_schedule__lh__antenna___deposition_rho_tor_norm_width{T} + var"frequency"::pulse_schedule__lh__antenna___frequency{T} var"identifier" :: String - var"n_parallel" :: pulse_schedule__lh__antenna___n_parallel{T} + var"n_parallel"::pulse_schedule__lh__antenna___n_parallel{T} var"name" :: String - var"phase" :: pulse_schedule__lh__antenna___phase{T} - var"power" :: pulse_schedule__lh__antenna___power{T} - var"power_type" :: pulse_schedule__lh__antenna___power_type{T} + var"phase"::pulse_schedule__lh__antenna___phase{T} + var"power"::pulse_schedule__lh__antenna___power{T} + var"power_type"::pulse_schedule__lh__antenna___power_type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh__antenna} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh__antenna} + _parent::WeakRef end function pulse_schedule__lh__antenna{T}() where T @@ -44688,16 +44688,16 @@ end pulse_schedule__lh__antenna() = pulse_schedule__lh__antenna{Float64}() mutable struct pulse_schedule__lh{T} <: IDS{T} - var"antenna" :: IDSvector{pulse_schedule__lh__antenna{T}} + var"antenna"::IDSvector{pulse_schedule__lh__antenna{T}} var"mode" :: Vector{Int} - var"power" :: pulse_schedule__lh__power{T} + var"power"::pulse_schedule__lh__power{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__lh} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__lh} + _parent::WeakRef end function pulse_schedule__lh{T}() where T @@ -44717,8 +44717,8 @@ mutable struct pulse_schedule__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__version_put} + _parent::WeakRef end function pulse_schedule__ids_properties__version_put{T}() where T @@ -44735,8 +44735,8 @@ mutable struct pulse_schedule__ids_properties__provenance__node{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__provenance__node} + _parent::WeakRef end function pulse_schedule__ids_properties__provenance__node{T}() where T @@ -44747,13 +44747,13 @@ end pulse_schedule__ids_properties__provenance__node() = pulse_schedule__ids_properties__provenance__node{Float64}() mutable struct pulse_schedule__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{pulse_schedule__ids_properties__provenance__node{T}} + var"node"::IDSvector{pulse_schedule__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__provenance} + _parent::WeakRef end function pulse_schedule__ids_properties__provenance{T}() where T @@ -44775,8 +44775,8 @@ mutable struct pulse_schedule__ids_properties__plugins__node___readback{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__plugins__node___readback} + _parent::WeakRef end function pulse_schedule__ids_properties__plugins__node___readback{T}() where T @@ -44797,8 +44797,8 @@ mutable struct pulse_schedule__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function pulse_schedule__ids_properties__plugins__node___put_operation{T}() where T @@ -44819,8 +44819,8 @@ mutable struct pulse_schedule__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function pulse_schedule__ids_properties__plugins__node___get_operation{T}() where T @@ -44831,16 +44831,16 @@ end pulse_schedule__ids_properties__plugins__node___get_operation() = pulse_schedule__ids_properties__plugins__node___get_operation{Float64}() mutable struct pulse_schedule__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{pulse_schedule__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{pulse_schedule__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{pulse_schedule__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{pulse_schedule__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{pulse_schedule__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{pulse_schedule__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__plugins__node} + _parent::WeakRef end function pulse_schedule__ids_properties__plugins__node{T}() where T @@ -44863,8 +44863,8 @@ mutable struct pulse_schedule__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function pulse_schedule__ids_properties__plugins__infrastructure_put{T}() where T @@ -44884,8 +44884,8 @@ mutable struct pulse_schedule__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function pulse_schedule__ids_properties__plugins__infrastructure_get{T}() where T @@ -44896,15 +44896,15 @@ end pulse_schedule__ids_properties__plugins__infrastructure_get() = pulse_schedule__ids_properties__plugins__infrastructure_get{Float64}() mutable struct pulse_schedule__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: pulse_schedule__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: pulse_schedule__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{pulse_schedule__ids_properties__plugins__node{T}} + var"infrastructure_get"::pulse_schedule__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::pulse_schedule__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{pulse_schedule__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__plugins} + _parent::WeakRef end function pulse_schedule__ids_properties__plugins{T}() where T @@ -44925,8 +44925,8 @@ mutable struct pulse_schedule__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties__occurrence_type} + _parent::WeakRef end function pulse_schedule__ids_properties__occurrence_type{T}() where T @@ -44942,17 +44942,17 @@ mutable struct pulse_schedule__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: pulse_schedule__ids_properties__occurrence_type{T} - var"plugins" :: pulse_schedule__ids_properties__plugins{T} - var"provenance" :: pulse_schedule__ids_properties__provenance{T} + var"occurrence_type"::pulse_schedule__ids_properties__occurrence_type{T} + var"plugins"::pulse_schedule__ids_properties__plugins{T} + var"provenance"::pulse_schedule__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: pulse_schedule__ids_properties__version_put{T} + var"version_put"::pulse_schedule__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ids_properties} + _parent::WeakRef end function pulse_schedule__ids_properties{T}() where T @@ -44976,8 +44976,8 @@ mutable struct pulse_schedule__ic__power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic__power} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic__power} + _parent::WeakRef end function pulse_schedule__ic__power{T}() where T @@ -44995,8 +44995,8 @@ mutable struct pulse_schedule__ic__antenna___power_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic__antenna___power_type} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic__antenna___power_type} + _parent::WeakRef end function pulse_schedule__ic__antenna___power_type{T}() where T @@ -45016,8 +45016,8 @@ mutable struct pulse_schedule__ic__antenna___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic__antenna___power} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic__antenna___power} + _parent::WeakRef end function pulse_schedule__ic__antenna___power{T}() where T @@ -45037,8 +45037,8 @@ mutable struct pulse_schedule__ic__antenna___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic__antenna___phase} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic__antenna___phase} + _parent::WeakRef end function pulse_schedule__ic__antenna___phase{T}() where T @@ -45058,8 +45058,8 @@ mutable struct pulse_schedule__ic__antenna___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic__antenna___frequency} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic__antenna___frequency} + _parent::WeakRef end function pulse_schedule__ic__antenna___frequency{T}() where T @@ -45076,8 +45076,8 @@ mutable struct pulse_schedule__ic__antenna___deposition_rho_tor_norm_width{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic__antenna___deposition_rho_tor_norm_width} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic__antenna___deposition_rho_tor_norm_width} + _parent::WeakRef end function pulse_schedule__ic__antenna___deposition_rho_tor_norm_width{T}() where T @@ -45094,8 +45094,8 @@ mutable struct pulse_schedule__ic__antenna___deposition_rho_tor_norm{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic__antenna___deposition_rho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic__antenna___deposition_rho_tor_norm} + _parent::WeakRef end function pulse_schedule__ic__antenna___deposition_rho_tor_norm{T}() where T @@ -45106,20 +45106,20 @@ end pulse_schedule__ic__antenna___deposition_rho_tor_norm() = pulse_schedule__ic__antenna___deposition_rho_tor_norm{Float64}() mutable struct pulse_schedule__ic__antenna{T} <: IDSvectorStaticElement{T} - var"deposition_rho_tor_norm" :: pulse_schedule__ic__antenna___deposition_rho_tor_norm{T} - var"deposition_rho_tor_norm_width" :: pulse_schedule__ic__antenna___deposition_rho_tor_norm_width{T} - var"frequency" :: pulse_schedule__ic__antenna___frequency{T} + var"deposition_rho_tor_norm"::pulse_schedule__ic__antenna___deposition_rho_tor_norm{T} + var"deposition_rho_tor_norm_width"::pulse_schedule__ic__antenna___deposition_rho_tor_norm_width{T} + var"frequency"::pulse_schedule__ic__antenna___frequency{T} var"identifier" :: String var"name" :: String - var"phase" :: pulse_schedule__ic__antenna___phase{T} - var"power" :: pulse_schedule__ic__antenna___power{T} - var"power_type" :: pulse_schedule__ic__antenna___power_type{T} + var"phase"::pulse_schedule__ic__antenna___phase{T} + var"power"::pulse_schedule__ic__antenna___power{T} + var"power_type"::pulse_schedule__ic__antenna___power_type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic__antenna} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic__antenna} + _parent::WeakRef end function pulse_schedule__ic__antenna{T}() where T @@ -45136,16 +45136,16 @@ end pulse_schedule__ic__antenna() = pulse_schedule__ic__antenna{Float64}() mutable struct pulse_schedule__ic{T} <: IDS{T} - var"antenna" :: IDSvector{pulse_schedule__ic__antenna{T}} + var"antenna"::IDSvector{pulse_schedule__ic__antenna{T}} var"mode" :: Vector{Int} - var"power" :: pulse_schedule__ic__power{T} + var"power"::pulse_schedule__ic__power{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ic} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ic} + _parent::WeakRef end function pulse_schedule__ic{T}() where T @@ -45167,8 +45167,8 @@ mutable struct pulse_schedule__flux_control__loop_voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__flux_control__loop_voltage} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__flux_control__loop_voltage} + _parent::WeakRef end function pulse_schedule__flux_control__loop_voltage{T}() where T @@ -45188,8 +45188,8 @@ mutable struct pulse_schedule__flux_control__li_3{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__flux_control__li_3} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__flux_control__li_3} + _parent::WeakRef end function pulse_schedule__flux_control__li_3{T}() where T @@ -45209,8 +45209,8 @@ mutable struct pulse_schedule__flux_control__i_plasma{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__flux_control__i_plasma} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__flux_control__i_plasma} + _parent::WeakRef end function pulse_schedule__flux_control__i_plasma{T}() where T @@ -45230,8 +45230,8 @@ mutable struct pulse_schedule__flux_control__beta_normal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__flux_control__beta_normal} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__flux_control__beta_normal} + _parent::WeakRef end function pulse_schedule__flux_control__beta_normal{T}() where T @@ -45242,18 +45242,18 @@ end pulse_schedule__flux_control__beta_normal() = pulse_schedule__flux_control__beta_normal{Float64}() mutable struct pulse_schedule__flux_control{T} <: IDS{T} - var"beta_normal" :: pulse_schedule__flux_control__beta_normal{T} - var"i_plasma" :: pulse_schedule__flux_control__i_plasma{T} - var"li_3" :: pulse_schedule__flux_control__li_3{T} - var"loop_voltage" :: pulse_schedule__flux_control__loop_voltage{T} + var"beta_normal"::pulse_schedule__flux_control__beta_normal{T} + var"i_plasma"::pulse_schedule__flux_control__i_plasma{T} + var"li_3"::pulse_schedule__flux_control__li_3{T} + var"loop_voltage"::pulse_schedule__flux_control__loop_voltage{T} var"mode" :: Vector{Int} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__flux_control} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__flux_control} + _parent::WeakRef end function pulse_schedule__flux_control{T}() where T @@ -45275,8 +45275,8 @@ mutable struct pulse_schedule__event___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__event___type} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__event___type} + _parent::WeakRef end function pulse_schedule__event___type{T}() where T @@ -45294,8 +45294,8 @@ mutable struct pulse_schedule__event___acquisition_strategy{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__event___acquisition_strategy} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__event___acquisition_strategy} + _parent::WeakRef end function pulse_schedule__event___acquisition_strategy{T}() where T @@ -45313,8 +45313,8 @@ mutable struct pulse_schedule__event___acquisition_state{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__event___acquisition_state} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__event___acquisition_state} + _parent::WeakRef end function pulse_schedule__event___acquisition_state{T}() where T @@ -45325,8 +45325,8 @@ end pulse_schedule__event___acquisition_state() = pulse_schedule__event___acquisition_state{Float64}() mutable struct pulse_schedule__event{T} <: IDSvectorStaticElement{T} - var"acquisition_state" :: pulse_schedule__event___acquisition_state{T} - var"acquisition_strategy" :: pulse_schedule__event___acquisition_strategy{T} + var"acquisition_state"::pulse_schedule__event___acquisition_state{T} + var"acquisition_strategy"::pulse_schedule__event___acquisition_strategy{T} var"duration" :: T var"duration_σ" :: T var"identifier" :: String @@ -45334,13 +45334,13 @@ mutable struct pulse_schedule__event{T} <: IDSvectorStaticElement{T} var"provider" :: String var"time_stamp" :: T var"time_stamp_σ" :: T - var"type" :: pulse_schedule__event___type{T} + var"type"::pulse_schedule__event___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__event} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__event} + _parent::WeakRef end function pulse_schedule__event{T}() where T @@ -45363,8 +45363,8 @@ mutable struct pulse_schedule__ec__power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec__power_launched} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec__power_launched} + _parent::WeakRef end function pulse_schedule__ec__power_launched{T}() where T @@ -45384,8 +45384,8 @@ mutable struct pulse_schedule__ec__beam___steering_angle_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec__beam___steering_angle_tor} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec__beam___steering_angle_tor} + _parent::WeakRef end function pulse_schedule__ec__beam___steering_angle_tor{T}() where T @@ -45405,8 +45405,8 @@ mutable struct pulse_schedule__ec__beam___steering_angle_pol{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec__beam___steering_angle_pol} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec__beam___steering_angle_pol} + _parent::WeakRef end function pulse_schedule__ec__beam___steering_angle_pol{T}() where T @@ -45426,8 +45426,8 @@ mutable struct pulse_schedule__ec__beam___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec__beam___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec__beam___power_launched} + _parent::WeakRef end function pulse_schedule__ec__beam___power_launched{T}() where T @@ -45447,8 +45447,8 @@ mutable struct pulse_schedule__ec__beam___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec__beam___frequency} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec__beam___frequency} + _parent::WeakRef end function pulse_schedule__ec__beam___frequency{T}() where T @@ -45465,8 +45465,8 @@ mutable struct pulse_schedule__ec__beam___deposition_rho_tor_norm_width{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec__beam___deposition_rho_tor_norm_width} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec__beam___deposition_rho_tor_norm_width} + _parent::WeakRef end function pulse_schedule__ec__beam___deposition_rho_tor_norm_width{T}() where T @@ -45486,8 +45486,8 @@ mutable struct pulse_schedule__ec__beam___deposition_rho_tor_norm{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec__beam___deposition_rho_tor_norm} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec__beam___deposition_rho_tor_norm} + _parent::WeakRef end function pulse_schedule__ec__beam___deposition_rho_tor_norm{T}() where T @@ -45498,20 +45498,20 @@ end pulse_schedule__ec__beam___deposition_rho_tor_norm() = pulse_schedule__ec__beam___deposition_rho_tor_norm{Float64}() mutable struct pulse_schedule__ec__beam{T} <: IDSvectorStaticElement{T} - var"deposition_rho_tor_norm" :: pulse_schedule__ec__beam___deposition_rho_tor_norm{T} - var"deposition_rho_tor_norm_width" :: pulse_schedule__ec__beam___deposition_rho_tor_norm_width{T} - var"frequency" :: pulse_schedule__ec__beam___frequency{T} + var"deposition_rho_tor_norm"::pulse_schedule__ec__beam___deposition_rho_tor_norm{T} + var"deposition_rho_tor_norm_width"::pulse_schedule__ec__beam___deposition_rho_tor_norm_width{T} + var"frequency"::pulse_schedule__ec__beam___frequency{T} var"identifier" :: String var"name" :: String - var"power_launched" :: pulse_schedule__ec__beam___power_launched{T} - var"steering_angle_pol" :: pulse_schedule__ec__beam___steering_angle_pol{T} - var"steering_angle_tor" :: pulse_schedule__ec__beam___steering_angle_tor{T} + var"power_launched"::pulse_schedule__ec__beam___power_launched{T} + var"steering_angle_pol"::pulse_schedule__ec__beam___steering_angle_pol{T} + var"steering_angle_tor"::pulse_schedule__ec__beam___steering_angle_tor{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec__beam} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec__beam} + _parent::WeakRef end function pulse_schedule__ec__beam{T}() where T @@ -45528,16 +45528,16 @@ end pulse_schedule__ec__beam() = pulse_schedule__ec__beam{Float64}() mutable struct pulse_schedule__ec{T} <: IDS{T} - var"beam" :: IDSvector{pulse_schedule__ec__beam{T}} + var"beam"::IDSvector{pulse_schedule__ec__beam{T}} var"mode" :: Vector{Int} - var"power_launched" :: pulse_schedule__ec__power_launched{T} + var"power_launched"::pulse_schedule__ec__power_launched{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__ec} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__ec} + _parent::WeakRef end function pulse_schedule__ec{T}() where T @@ -45556,8 +45556,8 @@ mutable struct pulse_schedule__density_control__zeff_pedestal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__zeff_pedestal} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__zeff_pedestal} + _parent::WeakRef end function pulse_schedule__density_control__zeff_pedestal{T}() where T @@ -45575,8 +45575,8 @@ mutable struct pulse_schedule__density_control__zeff_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__zeff_method} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__zeff_method} + _parent::WeakRef end function pulse_schedule__density_control__zeff_method{T}() where T @@ -45597,8 +45597,8 @@ mutable struct pulse_schedule__density_control__zeff_line_of_sight__third_point{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__zeff_line_of_sight__third_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__zeff_line_of_sight__third_point} + _parent::WeakRef end function pulse_schedule__density_control__zeff_line_of_sight__third_point{T}() where T @@ -45619,8 +45619,8 @@ mutable struct pulse_schedule__density_control__zeff_line_of_sight__second_point _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__zeff_line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__zeff_line_of_sight__second_point} + _parent::WeakRef end function pulse_schedule__density_control__zeff_line_of_sight__second_point{T}() where T @@ -45641,8 +45641,8 @@ mutable struct pulse_schedule__density_control__zeff_line_of_sight__first_point{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__zeff_line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__zeff_line_of_sight__first_point} + _parent::WeakRef end function pulse_schedule__density_control__zeff_line_of_sight__first_point{T}() where T @@ -45653,15 +45653,15 @@ end pulse_schedule__density_control__zeff_line_of_sight__first_point() = pulse_schedule__density_control__zeff_line_of_sight__first_point{Float64}() mutable struct pulse_schedule__density_control__zeff_line_of_sight{T} <: IDS{T} - var"first_point" :: pulse_schedule__density_control__zeff_line_of_sight__first_point{T} - var"second_point" :: pulse_schedule__density_control__zeff_line_of_sight__second_point{T} - var"third_point" :: pulse_schedule__density_control__zeff_line_of_sight__third_point{T} + var"first_point"::pulse_schedule__density_control__zeff_line_of_sight__first_point{T} + var"second_point"::pulse_schedule__density_control__zeff_line_of_sight__second_point{T} + var"third_point"::pulse_schedule__density_control__zeff_line_of_sight__third_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__zeff_line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__zeff_line_of_sight} + _parent::WeakRef end function pulse_schedule__density_control__zeff_line_of_sight{T}() where T @@ -45684,8 +45684,8 @@ mutable struct pulse_schedule__density_control__zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__zeff} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__zeff} + _parent::WeakRef end function pulse_schedule__density_control__zeff{T}() where T @@ -45705,8 +45705,8 @@ mutable struct pulse_schedule__density_control__valve___species___element{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__valve___species___element} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__valve___species___element} + _parent::WeakRef end function pulse_schedule__density_control__valve___species___element{T}() where T @@ -45717,7 +45717,7 @@ end pulse_schedule__density_control__valve___species___element() = pulse_schedule__density_control__valve___species___element{Float64}() mutable struct pulse_schedule__density_control__valve___species{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{pulse_schedule__density_control__valve___species___element{T}} + var"element"::IDSvector{pulse_schedule__density_control__valve___species___element{T}} var"fraction" :: T var"fraction_σ" :: T var"label" :: String @@ -45725,8 +45725,8 @@ mutable struct pulse_schedule__density_control__valve___species{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__valve___species} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__valve___species} + _parent::WeakRef end function pulse_schedule__density_control__valve___species{T}() where T @@ -45747,8 +45747,8 @@ mutable struct pulse_schedule__density_control__valve___flow_rate{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__valve___flow_rate} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__valve___flow_rate} + _parent::WeakRef end function pulse_schedule__density_control__valve___flow_rate{T}() where T @@ -45759,16 +45759,16 @@ end pulse_schedule__density_control__valve___flow_rate() = pulse_schedule__density_control__valve___flow_rate{Float64}() mutable struct pulse_schedule__density_control__valve{T} <: IDSvectorStaticElement{T} - var"flow_rate" :: pulse_schedule__density_control__valve___flow_rate{T} + var"flow_rate"::pulse_schedule__density_control__valve___flow_rate{T} var"identifier" :: String var"name" :: String - var"species" :: IDSvector{pulse_schedule__density_control__valve___species{T}} + var"species"::IDSvector{pulse_schedule__density_control__valve___species{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__valve} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__valve} + _parent::WeakRef end function pulse_schedule__density_control__valve{T}() where T @@ -45790,8 +45790,8 @@ mutable struct pulse_schedule__density_control__n_t_over_n_d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_t_over_n_d} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_t_over_n_d} + _parent::WeakRef end function pulse_schedule__density_control__n_t_over_n_d{T}() where T @@ -45811,8 +45811,8 @@ mutable struct pulse_schedule__density_control__n_h_over_n_d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_h_over_n_d} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_h_over_n_d} + _parent::WeakRef end function pulse_schedule__density_control__n_h_over_n_d{T}() where T @@ -45832,8 +45832,8 @@ mutable struct pulse_schedule__density_control__n_e_volume_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_volume_average} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_volume_average} + _parent::WeakRef end function pulse_schedule__density_control__n_e_volume_average{T}() where T @@ -45853,8 +45853,8 @@ mutable struct pulse_schedule__density_control__n_e_profile_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_profile_average} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_profile_average} + _parent::WeakRef end function pulse_schedule__density_control__n_e_profile_average{T}() where T @@ -45871,8 +45871,8 @@ mutable struct pulse_schedule__density_control__n_e_pedestal_greenwald_fraction{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_pedestal_greenwald_fraction} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_pedestal_greenwald_fraction} + _parent::WeakRef end function pulse_schedule__density_control__n_e_pedestal_greenwald_fraction{T}() where T @@ -45889,8 +45889,8 @@ mutable struct pulse_schedule__density_control__n_e_pedestal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_pedestal} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_pedestal} + _parent::WeakRef end function pulse_schedule__density_control__n_e_pedestal{T}() where T @@ -45911,8 +45911,8 @@ mutable struct pulse_schedule__density_control__n_e_line_of_sight__third_point{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_line_of_sight__third_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_line_of_sight__third_point} + _parent::WeakRef end function pulse_schedule__density_control__n_e_line_of_sight__third_point{T}() where T @@ -45933,8 +45933,8 @@ mutable struct pulse_schedule__density_control__n_e_line_of_sight__second_point{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_line_of_sight__second_point} + _parent::WeakRef end function pulse_schedule__density_control__n_e_line_of_sight__second_point{T}() where T @@ -45955,8 +45955,8 @@ mutable struct pulse_schedule__density_control__n_e_line_of_sight__first_point{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_line_of_sight__first_point} + _parent::WeakRef end function pulse_schedule__density_control__n_e_line_of_sight__first_point{T}() where T @@ -45967,15 +45967,15 @@ end pulse_schedule__density_control__n_e_line_of_sight__first_point() = pulse_schedule__density_control__n_e_line_of_sight__first_point{Float64}() mutable struct pulse_schedule__density_control__n_e_line_of_sight{T} <: IDS{T} - var"first_point" :: pulse_schedule__density_control__n_e_line_of_sight__first_point{T} - var"second_point" :: pulse_schedule__density_control__n_e_line_of_sight__second_point{T} - var"third_point" :: pulse_schedule__density_control__n_e_line_of_sight__third_point{T} + var"first_point"::pulse_schedule__density_control__n_e_line_of_sight__first_point{T} + var"second_point"::pulse_schedule__density_control__n_e_line_of_sight__second_point{T} + var"third_point"::pulse_schedule__density_control__n_e_line_of_sight__third_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_line_of_sight} + _parent::WeakRef end function pulse_schedule__density_control__n_e_line_of_sight{T}() where T @@ -45998,8 +45998,8 @@ mutable struct pulse_schedule__density_control__n_e_line_lcfs{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_line_lcfs} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_line_lcfs} + _parent::WeakRef end function pulse_schedule__density_control__n_e_line_lcfs{T}() where T @@ -46019,8 +46019,8 @@ mutable struct pulse_schedule__density_control__n_e_line{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_line} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_line} + _parent::WeakRef end function pulse_schedule__density_control__n_e_line{T}() where T @@ -46037,8 +46037,8 @@ mutable struct pulse_schedule__density_control__n_e_greenwald_fraction{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__n_e_greenwald_fraction} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__n_e_greenwald_fraction} + _parent::WeakRef end function pulse_schedule__density_control__n_e_greenwald_fraction{T}() where T @@ -46058,8 +46058,8 @@ mutable struct pulse_schedule__density_control__ion___n_i_volume_average{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__ion___n_i_volume_average} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__ion___n_i_volume_average} + _parent::WeakRef end function pulse_schedule__density_control__ion___n_i_volume_average{T}() where T @@ -46079,8 +46079,8 @@ mutable struct pulse_schedule__density_control__ion___element{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__ion___element} + _parent::WeakRef end function pulse_schedule__density_control__ion___element{T}() where T @@ -46091,17 +46091,17 @@ end pulse_schedule__density_control__ion___element() = pulse_schedule__density_control__ion___element{Float64}() mutable struct pulse_schedule__density_control__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{pulse_schedule__density_control__ion___element{T}} + var"element"::IDSvector{pulse_schedule__density_control__ion___element{T}} var"label" :: String - var"n_i_volume_average" :: pulse_schedule__density_control__ion___n_i_volume_average{T} + var"n_i_volume_average"::pulse_schedule__density_control__ion___n_i_volume_average{T} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control__ion} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control__ion} + _parent::WeakRef end function pulse_schedule__density_control__ion{T}() where T @@ -46114,30 +46114,30 @@ end pulse_schedule__density_control__ion() = pulse_schedule__density_control__ion{Float64}() mutable struct pulse_schedule__density_control{T} <: IDS{T} - var"ion" :: IDSvector{pulse_schedule__density_control__ion{T}} + var"ion"::IDSvector{pulse_schedule__density_control__ion{T}} var"mode" :: Vector{Int} - var"n_e_greenwald_fraction" :: pulse_schedule__density_control__n_e_greenwald_fraction{T} - var"n_e_line" :: pulse_schedule__density_control__n_e_line{T} - var"n_e_line_lcfs" :: pulse_schedule__density_control__n_e_line_lcfs{T} - var"n_e_line_of_sight" :: pulse_schedule__density_control__n_e_line_of_sight{T} - var"n_e_pedestal" :: pulse_schedule__density_control__n_e_pedestal{T} - var"n_e_pedestal_greenwald_fraction" :: pulse_schedule__density_control__n_e_pedestal_greenwald_fraction{T} - var"n_e_profile_average" :: pulse_schedule__density_control__n_e_profile_average{T} - var"n_e_volume_average" :: pulse_schedule__density_control__n_e_volume_average{T} - var"n_h_over_n_d" :: pulse_schedule__density_control__n_h_over_n_d{T} - var"n_t_over_n_d" :: pulse_schedule__density_control__n_t_over_n_d{T} + var"n_e_greenwald_fraction"::pulse_schedule__density_control__n_e_greenwald_fraction{T} + var"n_e_line"::pulse_schedule__density_control__n_e_line{T} + var"n_e_line_lcfs"::pulse_schedule__density_control__n_e_line_lcfs{T} + var"n_e_line_of_sight"::pulse_schedule__density_control__n_e_line_of_sight{T} + var"n_e_pedestal"::pulse_schedule__density_control__n_e_pedestal{T} + var"n_e_pedestal_greenwald_fraction"::pulse_schedule__density_control__n_e_pedestal_greenwald_fraction{T} + var"n_e_profile_average"::pulse_schedule__density_control__n_e_profile_average{T} + var"n_e_volume_average"::pulse_schedule__density_control__n_e_volume_average{T} + var"n_h_over_n_d"::pulse_schedule__density_control__n_h_over_n_d{T} + var"n_t_over_n_d"::pulse_schedule__density_control__n_t_over_n_d{T} var"time" :: Vector{Float64} - var"valve" :: IDSvector{pulse_schedule__density_control__valve{T}} - var"zeff" :: pulse_schedule__density_control__zeff{T} - var"zeff_line_of_sight" :: pulse_schedule__density_control__zeff_line_of_sight{T} - var"zeff_method" :: pulse_schedule__density_control__zeff_method{T} - var"zeff_pedestal" :: pulse_schedule__density_control__zeff_pedestal{T} + var"valve"::IDSvector{pulse_schedule__density_control__valve{T}} + var"zeff"::pulse_schedule__density_control__zeff{T} + var"zeff_line_of_sight"::pulse_schedule__density_control__zeff_line_of_sight{T} + var"zeff_method"::pulse_schedule__density_control__zeff_method{T} + var"zeff_pedestal"::pulse_schedule__density_control__zeff_pedestal{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__density_control} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__density_control} + _parent::WeakRef end function pulse_schedule__density_control{T}() where T @@ -46174,8 +46174,8 @@ mutable struct pulse_schedule__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__code__library} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__code__library} + _parent::WeakRef end function pulse_schedule__code__library{T}() where T @@ -46188,7 +46188,7 @@ pulse_schedule__code__library() = pulse_schedule__code__library{Float64}() mutable struct pulse_schedule__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{pulse_schedule__code__library{T}} + var"library"::IDSvector{pulse_schedule__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -46198,8 +46198,8 @@ mutable struct pulse_schedule__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule__code} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule__code} + _parent::WeakRef end function pulse_schedule__code{T}() where T @@ -46211,27 +46211,27 @@ end pulse_schedule__code() = pulse_schedule__code{Float64}() mutable struct pulse_schedule{T} <: IDStop{T} - var"code" :: pulse_schedule__code{T} - var"density_control" :: pulse_schedule__density_control{T} - var"ec" :: pulse_schedule__ec{T} - var"event" :: IDSvector{pulse_schedule__event{T}} - var"flux_control" :: pulse_schedule__flux_control{T} - var"ic" :: pulse_schedule__ic{T} - var"ids_properties" :: pulse_schedule__ids_properties{T} - var"lh" :: pulse_schedule__lh{T} - var"nbi" :: pulse_schedule__nbi{T} - var"pellet" :: pulse_schedule__pellet{T} - var"pf_active" :: pulse_schedule__pf_active{T} - var"position_control" :: pulse_schedule__position_control{T} - var"profiles_control" :: pulse_schedule__profiles_control{T} - var"tf" :: pulse_schedule__tf{T} + var"code"::pulse_schedule__code{T} + var"density_control"::pulse_schedule__density_control{T} + var"ec"::pulse_schedule__ec{T} + var"event"::IDSvector{pulse_schedule__event{T}} + var"flux_control"::pulse_schedule__flux_control{T} + var"ic"::pulse_schedule__ic{T} + var"ids_properties"::pulse_schedule__ids_properties{T} + var"lh"::pulse_schedule__lh{T} + var"nbi"::pulse_schedule__nbi{T} + var"pellet"::pulse_schedule__pellet{T} + var"pf_active"::pulse_schedule__pf_active{T} + var"position_control"::pulse_schedule__position_control{T} + var"profiles_control"::pulse_schedule__profiles_control{T} + var"tf"::pulse_schedule__tf{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pulse_schedule} - _parent :: WeakRef + _ref::Union{Nothing,pulse_schedule} + _parent::WeakRef end function pulse_schedule{T}() where T @@ -46263,8 +46263,8 @@ mutable struct polarimeter__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__version_put} + _parent::WeakRef end function polarimeter__ids_properties__version_put{T}() where T @@ -46281,8 +46281,8 @@ mutable struct polarimeter__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__provenance__node} + _parent::WeakRef end function polarimeter__ids_properties__provenance__node{T}() where T @@ -46293,13 +46293,13 @@ end polarimeter__ids_properties__provenance__node() = polarimeter__ids_properties__provenance__node{Float64}() mutable struct polarimeter__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{polarimeter__ids_properties__provenance__node{T}} + var"node"::IDSvector{polarimeter__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__provenance} + _parent::WeakRef end function polarimeter__ids_properties__provenance{T}() where T @@ -46321,8 +46321,8 @@ mutable struct polarimeter__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__plugins__node___readback} + _parent::WeakRef end function polarimeter__ids_properties__plugins__node___readback{T}() where T @@ -46343,8 +46343,8 @@ mutable struct polarimeter__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function polarimeter__ids_properties__plugins__node___put_operation{T}() where T @@ -46365,8 +46365,8 @@ mutable struct polarimeter__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function polarimeter__ids_properties__plugins__node___get_operation{T}() where T @@ -46377,16 +46377,16 @@ end polarimeter__ids_properties__plugins__node___get_operation() = polarimeter__ids_properties__plugins__node___get_operation{Float64}() mutable struct polarimeter__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{polarimeter__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{polarimeter__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{polarimeter__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{polarimeter__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{polarimeter__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{polarimeter__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__plugins__node} + _parent::WeakRef end function polarimeter__ids_properties__plugins__node{T}() where T @@ -46409,8 +46409,8 @@ mutable struct polarimeter__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function polarimeter__ids_properties__plugins__infrastructure_put{T}() where T @@ -46430,8 +46430,8 @@ mutable struct polarimeter__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function polarimeter__ids_properties__plugins__infrastructure_get{T}() where T @@ -46442,15 +46442,15 @@ end polarimeter__ids_properties__plugins__infrastructure_get() = polarimeter__ids_properties__plugins__infrastructure_get{Float64}() mutable struct polarimeter__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: polarimeter__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: polarimeter__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{polarimeter__ids_properties__plugins__node{T}} + var"infrastructure_get"::polarimeter__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::polarimeter__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{polarimeter__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__plugins} + _parent::WeakRef end function polarimeter__ids_properties__plugins{T}() where T @@ -46471,8 +46471,8 @@ mutable struct polarimeter__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties__occurrence_type} + _parent::WeakRef end function polarimeter__ids_properties__occurrence_type{T}() where T @@ -46488,17 +46488,17 @@ mutable struct polarimeter__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: polarimeter__ids_properties__occurrence_type{T} - var"plugins" :: polarimeter__ids_properties__plugins{T} - var"provenance" :: polarimeter__ids_properties__provenance{T} + var"occurrence_type"::polarimeter__ids_properties__occurrence_type{T} + var"plugins"::polarimeter__ids_properties__plugins{T} + var"provenance"::polarimeter__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: polarimeter__ids_properties__version_put{T} + var"version_put"::polarimeter__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__ids_properties} + _parent::WeakRef end function polarimeter__ids_properties{T}() where T @@ -46523,8 +46523,8 @@ mutable struct polarimeter__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__code__library} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__code__library} + _parent::WeakRef end function polarimeter__code__library{T}() where T @@ -46537,7 +46537,7 @@ polarimeter__code__library() = polarimeter__code__library{Float64}() mutable struct polarimeter__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{polarimeter__code__library{T}} + var"library"::IDSvector{polarimeter__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -46547,8 +46547,8 @@ mutable struct polarimeter__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__code} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__code} + _parent::WeakRef end function polarimeter__code{T}() where T @@ -46570,8 +46570,8 @@ mutable struct polarimeter__channel___line_of_sight__third_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__channel___line_of_sight__third_point} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__channel___line_of_sight__third_point} + _parent::WeakRef end function polarimeter__channel___line_of_sight__third_point{T}() where T @@ -46592,8 +46592,8 @@ mutable struct polarimeter__channel___line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__channel___line_of_sight__second_point} + _parent::WeakRef end function polarimeter__channel___line_of_sight__second_point{T}() where T @@ -46614,8 +46614,8 @@ mutable struct polarimeter__channel___line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__channel___line_of_sight__first_point} + _parent::WeakRef end function polarimeter__channel___line_of_sight__first_point{T}() where T @@ -46626,15 +46626,15 @@ end polarimeter__channel___line_of_sight__first_point() = polarimeter__channel___line_of_sight__first_point{Float64}() mutable struct polarimeter__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: polarimeter__channel___line_of_sight__first_point{T} - var"second_point" :: polarimeter__channel___line_of_sight__second_point{T} - var"third_point" :: polarimeter__channel___line_of_sight__third_point{T} + var"first_point"::polarimeter__channel___line_of_sight__first_point{T} + var"second_point"::polarimeter__channel___line_of_sight__second_point{T} + var"third_point"::polarimeter__channel___line_of_sight__third_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__channel___line_of_sight} + _parent::WeakRef end function polarimeter__channel___line_of_sight{T}() where T @@ -46657,8 +46657,8 @@ mutable struct polarimeter__channel___faraday_angle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__channel___faraday_angle} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__channel___faraday_angle} + _parent::WeakRef end function polarimeter__channel___faraday_angle{T}() where T @@ -46678,8 +46678,8 @@ mutable struct polarimeter__channel___ellipticity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__channel___ellipticity} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__channel___ellipticity} + _parent::WeakRef end function polarimeter__channel___ellipticity{T}() where T @@ -46690,12 +46690,12 @@ end polarimeter__channel___ellipticity() = polarimeter__channel___ellipticity{Float64}() mutable struct polarimeter__channel{T} <: IDSvectorStaticElement{T} - var"ellipticity" :: polarimeter__channel___ellipticity{T} + var"ellipticity"::polarimeter__channel___ellipticity{T} var"ellipticity_initial" :: T var"ellipticity_initial_σ" :: T - var"faraday_angle" :: polarimeter__channel___faraday_angle{T} + var"faraday_angle"::polarimeter__channel___faraday_angle{T} var"identifier" :: String - var"line_of_sight" :: polarimeter__channel___line_of_sight{T} + var"line_of_sight"::polarimeter__channel___line_of_sight{T} var"name" :: String var"polarisation_initial" :: T var"polarisation_initial_σ" :: T @@ -46705,8 +46705,8 @@ mutable struct polarimeter__channel{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter__channel} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter__channel} + _parent::WeakRef end function polarimeter__channel{T}() where T @@ -46720,9 +46720,9 @@ end polarimeter__channel() = polarimeter__channel{Float64}() mutable struct polarimeter{T} <: IDStop{T} - var"channel" :: IDSvector{polarimeter__channel{T}} - var"code" :: polarimeter__code{T} - var"ids_properties" :: polarimeter__ids_properties{T} + var"channel"::IDSvector{polarimeter__channel{T}} + var"code"::polarimeter__code{T} + var"ids_properties"::polarimeter__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -46730,8 +46730,8 @@ mutable struct polarimeter{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,polarimeter} - _parent :: WeakRef + _ref::Union{Nothing,polarimeter} + _parent::WeakRef end function polarimeter{T}() where T @@ -46752,8 +46752,8 @@ mutable struct plasma_initiation__profiles_2d___grid_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__profiles_2d___grid_type} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__profiles_2d___grid_type} + _parent::WeakRef end function plasma_initiation__profiles_2d___grid_type{T}() where T @@ -46774,8 +46774,8 @@ mutable struct plasma_initiation__profiles_2d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__profiles_2d___grid} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__profiles_2d___grid} + _parent::WeakRef end function plasma_initiation__profiles_2d___grid{T}() where T @@ -46788,15 +46788,15 @@ plasma_initiation__profiles_2d___grid() = plasma_initiation__profiles_2d___grid{ mutable struct plasma_initiation__profiles_2d{T} <: IDSvectorTimeElement{T} var"e_field_tor" :: Matrix{<:T} var"e_field_tor_σ" :: Matrix{<:T} - var"grid" :: plasma_initiation__profiles_2d___grid{T} - var"grid_type" :: plasma_initiation__profiles_2d___grid_type{T} + var"grid"::plasma_initiation__profiles_2d___grid{T} + var"grid_type"::plasma_initiation__profiles_2d___grid_type{T} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__profiles_2d} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__profiles_2d} + _parent::WeakRef end function plasma_initiation__profiles_2d{T}() where T @@ -46816,8 +46816,8 @@ mutable struct plasma_initiation__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__version_put} + _parent::WeakRef end function plasma_initiation__ids_properties__version_put{T}() where T @@ -46834,8 +46834,8 @@ mutable struct plasma_initiation__ids_properties__provenance__node{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__provenance__node} + _parent::WeakRef end function plasma_initiation__ids_properties__provenance__node{T}() where T @@ -46846,13 +46846,13 @@ end plasma_initiation__ids_properties__provenance__node() = plasma_initiation__ids_properties__provenance__node{Float64}() mutable struct plasma_initiation__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{plasma_initiation__ids_properties__provenance__node{T}} + var"node"::IDSvector{plasma_initiation__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__provenance} + _parent::WeakRef end function plasma_initiation__ids_properties__provenance{T}() where T @@ -46874,8 +46874,8 @@ mutable struct plasma_initiation__ids_properties__plugins__node___readback{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__plugins__node___readback} + _parent::WeakRef end function plasma_initiation__ids_properties__plugins__node___readback{T}() where T @@ -46896,8 +46896,8 @@ mutable struct plasma_initiation__ids_properties__plugins__node___put_operation{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function plasma_initiation__ids_properties__plugins__node___put_operation{T}() where T @@ -46918,8 +46918,8 @@ mutable struct plasma_initiation__ids_properties__plugins__node___get_operation{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function plasma_initiation__ids_properties__plugins__node___get_operation{T}() where T @@ -46930,16 +46930,16 @@ end plasma_initiation__ids_properties__plugins__node___get_operation() = plasma_initiation__ids_properties__plugins__node___get_operation{Float64}() mutable struct plasma_initiation__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{plasma_initiation__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{plasma_initiation__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{plasma_initiation__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{plasma_initiation__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{plasma_initiation__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{plasma_initiation__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__plugins__node} + _parent::WeakRef end function plasma_initiation__ids_properties__plugins__node{T}() where T @@ -46962,8 +46962,8 @@ mutable struct plasma_initiation__ids_properties__plugins__infrastructure_put{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function plasma_initiation__ids_properties__plugins__infrastructure_put{T}() where T @@ -46983,8 +46983,8 @@ mutable struct plasma_initiation__ids_properties__plugins__infrastructure_get{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function plasma_initiation__ids_properties__plugins__infrastructure_get{T}() where T @@ -46995,15 +46995,15 @@ end plasma_initiation__ids_properties__plugins__infrastructure_get() = plasma_initiation__ids_properties__plugins__infrastructure_get{Float64}() mutable struct plasma_initiation__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: plasma_initiation__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: plasma_initiation__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{plasma_initiation__ids_properties__plugins__node{T}} + var"infrastructure_get"::plasma_initiation__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::plasma_initiation__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{plasma_initiation__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__plugins} + _parent::WeakRef end function plasma_initiation__ids_properties__plugins{T}() where T @@ -47024,8 +47024,8 @@ mutable struct plasma_initiation__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties__occurrence_type} + _parent::WeakRef end function plasma_initiation__ids_properties__occurrence_type{T}() where T @@ -47041,17 +47041,17 @@ mutable struct plasma_initiation__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: plasma_initiation__ids_properties__occurrence_type{T} - var"plugins" :: plasma_initiation__ids_properties__plugins{T} - var"provenance" :: plasma_initiation__ids_properties__provenance{T} + var"occurrence_type"::plasma_initiation__ids_properties__occurrence_type{T} + var"plugins"::plasma_initiation__ids_properties__plugins{T} + var"provenance"::plasma_initiation__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: plasma_initiation__ids_properties__version_put{T} + var"version_put"::plasma_initiation__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__ids_properties} + _parent::WeakRef end function plasma_initiation__ids_properties{T}() where T @@ -47073,8 +47073,8 @@ mutable struct plasma_initiation__global_quantities__coulomb_logarithm{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__global_quantities__coulomb_logarithm} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__global_quantities__coulomb_logarithm} + _parent::WeakRef end function plasma_initiation__global_quantities__coulomb_logarithm{T}() where T @@ -47092,8 +47092,8 @@ mutable struct plasma_initiation__global_quantities__connection_length{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__global_quantities__connection_length} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__global_quantities__connection_length} + _parent::WeakRef end function plasma_initiation__global_quantities__connection_length{T}() where T @@ -47111,8 +47111,8 @@ mutable struct plasma_initiation__global_quantities__b_field_stray{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__global_quantities__b_field_stray} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__global_quantities__b_field_stray} + _parent::WeakRef end function plasma_initiation__global_quantities__b_field_stray{T}() where T @@ -47130,8 +47130,8 @@ mutable struct plasma_initiation__global_quantities__b_field_perpendicular{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__global_quantities__b_field_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__global_quantities__b_field_perpendicular} + _parent::WeakRef end function plasma_initiation__global_quantities__b_field_perpendicular{T}() where T @@ -47142,16 +47142,16 @@ end plasma_initiation__global_quantities__b_field_perpendicular() = plasma_initiation__global_quantities__b_field_perpendicular{Float64}() mutable struct plasma_initiation__global_quantities{T} <: IDS{T} - var"b_field_perpendicular" :: plasma_initiation__global_quantities__b_field_perpendicular{T} - var"b_field_stray" :: plasma_initiation__global_quantities__b_field_stray{T} - var"connection_length" :: plasma_initiation__global_quantities__connection_length{T} - var"coulomb_logarithm" :: plasma_initiation__global_quantities__coulomb_logarithm{T} + var"b_field_perpendicular"::plasma_initiation__global_quantities__b_field_perpendicular{T} + var"b_field_stray"::plasma_initiation__global_quantities__b_field_stray{T} + var"connection_length"::plasma_initiation__global_quantities__connection_length{T} + var"coulomb_logarithm"::plasma_initiation__global_quantities__coulomb_logarithm{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__global_quantities} + _parent::WeakRef end function plasma_initiation__global_quantities{T}() where T @@ -47176,8 +47176,8 @@ mutable struct plasma_initiation__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__code__library} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__code__library} + _parent::WeakRef end function plasma_initiation__code__library{T}() where T @@ -47190,7 +47190,7 @@ plasma_initiation__code__library() = plasma_initiation__code__library{Float64}() mutable struct plasma_initiation__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{plasma_initiation__code__library{T}} + var"library"::IDSvector{plasma_initiation__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -47200,8 +47200,8 @@ mutable struct plasma_initiation__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__code} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__code} + _parent::WeakRef end function plasma_initiation__code{T}() where T @@ -47221,8 +47221,8 @@ mutable struct plasma_initiation__b_field_lines___townsend_or_closed_positions{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__b_field_lines___townsend_or_closed_positions} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__b_field_lines___townsend_or_closed_positions} + _parent::WeakRef end function plasma_initiation__b_field_lines___townsend_or_closed_positions{T}() where T @@ -47241,8 +47241,8 @@ mutable struct plasma_initiation__b_field_lines___townsend_or_closed_grid_positi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__b_field_lines___townsend_or_closed_grid_positions} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__b_field_lines___townsend_or_closed_grid_positions} + _parent::WeakRef end function plasma_initiation__b_field_lines___townsend_or_closed_grid_positions{T}() where T @@ -47261,8 +47261,8 @@ mutable struct plasma_initiation__b_field_lines___starting_positions{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__b_field_lines___starting_positions} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__b_field_lines___starting_positions} + _parent::WeakRef end function plasma_initiation__b_field_lines___starting_positions{T}() where T @@ -47280,8 +47280,8 @@ mutable struct plasma_initiation__b_field_lines___grid_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__b_field_lines___grid_type} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__b_field_lines___grid_type} + _parent::WeakRef end function plasma_initiation__b_field_lines___grid_type{T}() where T @@ -47302,8 +47302,8 @@ mutable struct plasma_initiation__b_field_lines___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__b_field_lines___grid} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__b_field_lines___grid} + _parent::WeakRef end function plasma_initiation__b_field_lines___grid{T}() where T @@ -47318,24 +47318,24 @@ mutable struct plasma_initiation__b_field_lines{T} <: IDSvectorTimeElement{T} var"e_field_parallel_σ" :: Vector{<:T} var"e_field_townsend" :: Vector{<:T} var"e_field_townsend_σ" :: Vector{<:T} - var"grid" :: plasma_initiation__b_field_lines___grid{T} - var"grid_type" :: plasma_initiation__b_field_lines___grid_type{T} + var"grid"::plasma_initiation__b_field_lines___grid{T} + var"grid_type"::plasma_initiation__b_field_lines___grid_type{T} var"lengths" :: Vector{<:T} var"lengths_σ" :: Vector{<:T} var"open_fraction" :: T var"open_fraction_σ" :: T var"pressure" :: T var"pressure_σ" :: T - var"starting_positions" :: plasma_initiation__b_field_lines___starting_positions{T} + var"starting_positions"::plasma_initiation__b_field_lines___starting_positions{T} var"time" :: Float64 - var"townsend_or_closed_grid_positions" :: plasma_initiation__b_field_lines___townsend_or_closed_grid_positions{T} - var"townsend_or_closed_positions" :: plasma_initiation__b_field_lines___townsend_or_closed_positions{T} + var"townsend_or_closed_grid_positions"::plasma_initiation__b_field_lines___townsend_or_closed_grid_positions{T} + var"townsend_or_closed_positions"::plasma_initiation__b_field_lines___townsend_or_closed_positions{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation__b_field_lines} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation__b_field_lines} + _parent::WeakRef end function plasma_initiation__b_field_lines{T}() where T @@ -47351,18 +47351,18 @@ end plasma_initiation__b_field_lines() = plasma_initiation__b_field_lines{Float64}() mutable struct plasma_initiation{T} <: IDStop{T} - var"b_field_lines" :: IDSvector{plasma_initiation__b_field_lines{T}} - var"code" :: plasma_initiation__code{T} - var"global_quantities" :: plasma_initiation__global_quantities{T} - var"ids_properties" :: plasma_initiation__ids_properties{T} - var"profiles_2d" :: IDSvector{plasma_initiation__profiles_2d{T}} + var"b_field_lines"::IDSvector{plasma_initiation__b_field_lines{T}} + var"code"::plasma_initiation__code{T} + var"global_quantities"::plasma_initiation__global_quantities{T} + var"ids_properties"::plasma_initiation__ids_properties{T} + var"profiles_2d"::IDSvector{plasma_initiation__profiles_2d{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,plasma_initiation} - _parent :: WeakRef + _ref::Union{Nothing,plasma_initiation} + _parent::WeakRef end function plasma_initiation{T}() where T @@ -47385,8 +47385,8 @@ mutable struct pf_plasma__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__version_put} + _parent::WeakRef end function pf_plasma__ids_properties__version_put{T}() where T @@ -47403,8 +47403,8 @@ mutable struct pf_plasma__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__provenance__node} + _parent::WeakRef end function pf_plasma__ids_properties__provenance__node{T}() where T @@ -47415,13 +47415,13 @@ end pf_plasma__ids_properties__provenance__node() = pf_plasma__ids_properties__provenance__node{Float64}() mutable struct pf_plasma__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{pf_plasma__ids_properties__provenance__node{T}} + var"node"::IDSvector{pf_plasma__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__provenance} + _parent::WeakRef end function pf_plasma__ids_properties__provenance{T}() where T @@ -47443,8 +47443,8 @@ mutable struct pf_plasma__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__plugins__node___readback} + _parent::WeakRef end function pf_plasma__ids_properties__plugins__node___readback{T}() where T @@ -47465,8 +47465,8 @@ mutable struct pf_plasma__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function pf_plasma__ids_properties__plugins__node___put_operation{T}() where T @@ -47487,8 +47487,8 @@ mutable struct pf_plasma__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function pf_plasma__ids_properties__plugins__node___get_operation{T}() where T @@ -47499,16 +47499,16 @@ end pf_plasma__ids_properties__plugins__node___get_operation() = pf_plasma__ids_properties__plugins__node___get_operation{Float64}() mutable struct pf_plasma__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{pf_plasma__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{pf_plasma__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{pf_plasma__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{pf_plasma__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{pf_plasma__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{pf_plasma__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__plugins__node} + _parent::WeakRef end function pf_plasma__ids_properties__plugins__node{T}() where T @@ -47531,8 +47531,8 @@ mutable struct pf_plasma__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function pf_plasma__ids_properties__plugins__infrastructure_put{T}() where T @@ -47552,8 +47552,8 @@ mutable struct pf_plasma__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function pf_plasma__ids_properties__plugins__infrastructure_get{T}() where T @@ -47564,15 +47564,15 @@ end pf_plasma__ids_properties__plugins__infrastructure_get() = pf_plasma__ids_properties__plugins__infrastructure_get{Float64}() mutable struct pf_plasma__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: pf_plasma__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: pf_plasma__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{pf_plasma__ids_properties__plugins__node{T}} + var"infrastructure_get"::pf_plasma__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::pf_plasma__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{pf_plasma__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__plugins} + _parent::WeakRef end function pf_plasma__ids_properties__plugins{T}() where T @@ -47593,8 +47593,8 @@ mutable struct pf_plasma__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties__occurrence_type} + _parent::WeakRef end function pf_plasma__ids_properties__occurrence_type{T}() where T @@ -47610,17 +47610,17 @@ mutable struct pf_plasma__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: pf_plasma__ids_properties__occurrence_type{T} - var"plugins" :: pf_plasma__ids_properties__plugins{T} - var"provenance" :: pf_plasma__ids_properties__provenance{T} + var"occurrence_type"::pf_plasma__ids_properties__occurrence_type{T} + var"plugins"::pf_plasma__ids_properties__plugins{T} + var"provenance"::pf_plasma__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: pf_plasma__ids_properties__version_put{T} + var"version_put"::pf_plasma__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__ids_properties} + _parent::WeakRef end function pf_plasma__ids_properties{T}() where T @@ -47643,8 +47643,8 @@ mutable struct pf_plasma__element___geometry__thick_line__second_point{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry__thick_line__second_point} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry__thick_line__second_point} + _parent::WeakRef end function pf_plasma__element___geometry__thick_line__second_point{T}() where T @@ -47663,8 +47663,8 @@ mutable struct pf_plasma__element___geometry__thick_line__first_point{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry__thick_line__first_point} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry__thick_line__first_point} + _parent::WeakRef end function pf_plasma__element___geometry__thick_line__first_point{T}() where T @@ -47675,16 +47675,16 @@ end pf_plasma__element___geometry__thick_line__first_point() = pf_plasma__element___geometry__thick_line__first_point{Float64}() mutable struct pf_plasma__element___geometry__thick_line{T} <: IDS{T} - var"first_point" :: pf_plasma__element___geometry__thick_line__first_point{T} - var"second_point" :: pf_plasma__element___geometry__thick_line__second_point{T} + var"first_point"::pf_plasma__element___geometry__thick_line__first_point{T} + var"second_point"::pf_plasma__element___geometry__thick_line__second_point{T} var"thickness" :: T var"thickness_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry__thick_line} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry__thick_line} + _parent::WeakRef end function pf_plasma__element___geometry__thick_line{T}() where T @@ -47709,8 +47709,8 @@ mutable struct pf_plasma__element___geometry__rectangle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry__rectangle} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry__rectangle} + _parent::WeakRef end function pf_plasma__element___geometry__rectangle{T}() where T @@ -47729,8 +47729,8 @@ mutable struct pf_plasma__element___geometry__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry__outline} + _parent::WeakRef end function pf_plasma__element___geometry__outline{T}() where T @@ -47757,8 +47757,8 @@ mutable struct pf_plasma__element___geometry__oblique{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry__oblique} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry__oblique} + _parent::WeakRef end function pf_plasma__element___geometry__oblique{T}() where T @@ -47779,8 +47779,8 @@ mutable struct pf_plasma__element___geometry__arcs_of_circle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry__arcs_of_circle} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry__arcs_of_circle} + _parent::WeakRef end function pf_plasma__element___geometry__arcs_of_circle{T}() where T @@ -47803,8 +47803,8 @@ mutable struct pf_plasma__element___geometry__annulus{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry__annulus} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry__annulus} + _parent::WeakRef end function pf_plasma__element___geometry__annulus{T}() where T @@ -47815,19 +47815,19 @@ end pf_plasma__element___geometry__annulus() = pf_plasma__element___geometry__annulus{Float64}() mutable struct pf_plasma__element___geometry{T} <: IDS{T} - var"annulus" :: pf_plasma__element___geometry__annulus{T} - var"arcs_of_circle" :: pf_plasma__element___geometry__arcs_of_circle{T} + var"annulus"::pf_plasma__element___geometry__annulus{T} + var"arcs_of_circle"::pf_plasma__element___geometry__arcs_of_circle{T} var"geometry_type" :: Int - var"oblique" :: pf_plasma__element___geometry__oblique{T} - var"outline" :: pf_plasma__element___geometry__outline{T} - var"rectangle" :: pf_plasma__element___geometry__rectangle{T} - var"thick_line" :: pf_plasma__element___geometry__thick_line{T} + var"oblique"::pf_plasma__element___geometry__oblique{T} + var"outline"::pf_plasma__element___geometry__outline{T} + var"rectangle"::pf_plasma__element___geometry__rectangle{T} + var"thick_line"::pf_plasma__element___geometry__thick_line{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element___geometry} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element___geometry} + _parent::WeakRef end function pf_plasma__element___geometry{T}() where T @@ -47848,14 +47848,14 @@ mutable struct pf_plasma__element{T} <: IDSvectorStaticElement{T} var"area_σ" :: T var"current" :: Vector{<:T} var"current_σ" :: Vector{<:T} - var"geometry" :: pf_plasma__element___geometry{T} + var"geometry"::pf_plasma__element___geometry{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__element} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__element} + _parent::WeakRef end function pf_plasma__element{T}() where T @@ -47877,8 +47877,8 @@ mutable struct pf_plasma__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__code__library} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__code__library} + _parent::WeakRef end function pf_plasma__code__library{T}() where T @@ -47891,7 +47891,7 @@ pf_plasma__code__library() = pf_plasma__code__library{Float64}() mutable struct pf_plasma__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{pf_plasma__code__library{T}} + var"library"::IDSvector{pf_plasma__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -47901,8 +47901,8 @@ mutable struct pf_plasma__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma__code} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma__code} + _parent::WeakRef end function pf_plasma__code{T}() where T @@ -47914,16 +47914,16 @@ end pf_plasma__code() = pf_plasma__code{Float64}() mutable struct pf_plasma{T} <: IDStop{T} - var"code" :: pf_plasma__code{T} - var"element" :: IDSvector{pf_plasma__element{T}} - var"ids_properties" :: pf_plasma__ids_properties{T} + var"code"::pf_plasma__code{T} + var"element"::IDSvector{pf_plasma__element{T}} + var"ids_properties"::pf_plasma__ids_properties{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_plasma} - _parent :: WeakRef + _ref::Union{Nothing,pf_plasma} + _parent::WeakRef end function pf_plasma{T}() where T @@ -47945,8 +47945,8 @@ mutable struct pf_passive__loop___element___geometry__thick_line__second_point{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry__thick_line__second_point} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry__thick_line__second_point} + _parent::WeakRef end function pf_passive__loop___element___geometry__thick_line__second_point{T}() where T @@ -47965,8 +47965,8 @@ mutable struct pf_passive__loop___element___geometry__thick_line__first_point{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry__thick_line__first_point} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry__thick_line__first_point} + _parent::WeakRef end function pf_passive__loop___element___geometry__thick_line__first_point{T}() where T @@ -47977,16 +47977,16 @@ end pf_passive__loop___element___geometry__thick_line__first_point() = pf_passive__loop___element___geometry__thick_line__first_point{Float64}() mutable struct pf_passive__loop___element___geometry__thick_line{T} <: IDS{T} - var"first_point" :: pf_passive__loop___element___geometry__thick_line__first_point{T} - var"second_point" :: pf_passive__loop___element___geometry__thick_line__second_point{T} + var"first_point"::pf_passive__loop___element___geometry__thick_line__first_point{T} + var"second_point"::pf_passive__loop___element___geometry__thick_line__second_point{T} var"thickness" :: T var"thickness_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry__thick_line} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry__thick_line} + _parent::WeakRef end function pf_passive__loop___element___geometry__thick_line{T}() where T @@ -48011,8 +48011,8 @@ mutable struct pf_passive__loop___element___geometry__rectangle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry__rectangle} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry__rectangle} + _parent::WeakRef end function pf_passive__loop___element___geometry__rectangle{T}() where T @@ -48031,8 +48031,8 @@ mutable struct pf_passive__loop___element___geometry__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry__outline} + _parent::WeakRef end function pf_passive__loop___element___geometry__outline{T}() where T @@ -48059,8 +48059,8 @@ mutable struct pf_passive__loop___element___geometry__oblique{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry__oblique} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry__oblique} + _parent::WeakRef end function pf_passive__loop___element___geometry__oblique{T}() where T @@ -48081,8 +48081,8 @@ mutable struct pf_passive__loop___element___geometry__arcs_of_circle{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry__arcs_of_circle} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry__arcs_of_circle} + _parent::WeakRef end function pf_passive__loop___element___geometry__arcs_of_circle{T}() where T @@ -48105,8 +48105,8 @@ mutable struct pf_passive__loop___element___geometry__annulus{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry__annulus} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry__annulus} + _parent::WeakRef end function pf_passive__loop___element___geometry__annulus{T}() where T @@ -48117,19 +48117,19 @@ end pf_passive__loop___element___geometry__annulus() = pf_passive__loop___element___geometry__annulus{Float64}() mutable struct pf_passive__loop___element___geometry{T} <: IDS{T} - var"annulus" :: pf_passive__loop___element___geometry__annulus{T} - var"arcs_of_circle" :: pf_passive__loop___element___geometry__arcs_of_circle{T} + var"annulus"::pf_passive__loop___element___geometry__annulus{T} + var"arcs_of_circle"::pf_passive__loop___element___geometry__arcs_of_circle{T} var"geometry_type" :: Int - var"oblique" :: pf_passive__loop___element___geometry__oblique{T} - var"outline" :: pf_passive__loop___element___geometry__outline{T} - var"rectangle" :: pf_passive__loop___element___geometry__rectangle{T} - var"thick_line" :: pf_passive__loop___element___geometry__thick_line{T} + var"oblique"::pf_passive__loop___element___geometry__oblique{T} + var"outline"::pf_passive__loop___element___geometry__outline{T} + var"rectangle"::pf_passive__loop___element___geometry__rectangle{T} + var"thick_line"::pf_passive__loop___element___geometry__thick_line{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element___geometry} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element___geometry} + _parent::WeakRef end function pf_passive__loop___element___geometry{T}() where T @@ -48148,7 +48148,7 @@ pf_passive__loop___element___geometry() = pf_passive__loop___element___geometry{ mutable struct pf_passive__loop___element{T} <: IDSvectorStaticElement{T} var"area" :: T var"area_σ" :: T - var"geometry" :: pf_passive__loop___element___geometry{T} + var"geometry"::pf_passive__loop___element___geometry{T} var"identifier" :: String var"name" :: String var"turns_with_sign" :: T @@ -48157,8 +48157,8 @@ mutable struct pf_passive__loop___element{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop___element} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop___element} + _parent::WeakRef end function pf_passive__loop___element{T}() where T @@ -48172,7 +48172,7 @@ pf_passive__loop___element() = pf_passive__loop___element{Float64}() mutable struct pf_passive__loop{T} <: IDSvectorStaticElement{T} var"current" :: Vector{<:T} var"current_σ" :: Vector{<:T} - var"element" :: IDSvector{pf_passive__loop___element{T}} + var"element"::IDSvector{pf_passive__loop___element{T}} var"name" :: String var"resistance" :: T var"resistance_σ" :: T @@ -48183,8 +48183,8 @@ mutable struct pf_passive__loop{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__loop} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__loop} + _parent::WeakRef end function pf_passive__loop{T}() where T @@ -48203,8 +48203,8 @@ mutable struct pf_passive__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__version_put} + _parent::WeakRef end function pf_passive__ids_properties__version_put{T}() where T @@ -48221,8 +48221,8 @@ mutable struct pf_passive__ids_properties__provenance__node{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__provenance__node} + _parent::WeakRef end function pf_passive__ids_properties__provenance__node{T}() where T @@ -48233,13 +48233,13 @@ end pf_passive__ids_properties__provenance__node() = pf_passive__ids_properties__provenance__node{Float64}() mutable struct pf_passive__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{pf_passive__ids_properties__provenance__node{T}} + var"node"::IDSvector{pf_passive__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__provenance} + _parent::WeakRef end function pf_passive__ids_properties__provenance{T}() where T @@ -48261,8 +48261,8 @@ mutable struct pf_passive__ids_properties__plugins__node___readback{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__plugins__node___readback} + _parent::WeakRef end function pf_passive__ids_properties__plugins__node___readback{T}() where T @@ -48283,8 +48283,8 @@ mutable struct pf_passive__ids_properties__plugins__node___put_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function pf_passive__ids_properties__plugins__node___put_operation{T}() where T @@ -48305,8 +48305,8 @@ mutable struct pf_passive__ids_properties__plugins__node___get_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function pf_passive__ids_properties__plugins__node___get_operation{T}() where T @@ -48317,16 +48317,16 @@ end pf_passive__ids_properties__plugins__node___get_operation() = pf_passive__ids_properties__plugins__node___get_operation{Float64}() mutable struct pf_passive__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{pf_passive__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{pf_passive__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{pf_passive__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{pf_passive__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{pf_passive__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{pf_passive__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__plugins__node} + _parent::WeakRef end function pf_passive__ids_properties__plugins__node{T}() where T @@ -48349,8 +48349,8 @@ mutable struct pf_passive__ids_properties__plugins__infrastructure_put{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function pf_passive__ids_properties__plugins__infrastructure_put{T}() where T @@ -48370,8 +48370,8 @@ mutable struct pf_passive__ids_properties__plugins__infrastructure_get{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function pf_passive__ids_properties__plugins__infrastructure_get{T}() where T @@ -48382,15 +48382,15 @@ end pf_passive__ids_properties__plugins__infrastructure_get() = pf_passive__ids_properties__plugins__infrastructure_get{Float64}() mutable struct pf_passive__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: pf_passive__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: pf_passive__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{pf_passive__ids_properties__plugins__node{T}} + var"infrastructure_get"::pf_passive__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::pf_passive__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{pf_passive__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__plugins} + _parent::WeakRef end function pf_passive__ids_properties__plugins{T}() where T @@ -48411,8 +48411,8 @@ mutable struct pf_passive__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties__occurrence_type} + _parent::WeakRef end function pf_passive__ids_properties__occurrence_type{T}() where T @@ -48428,17 +48428,17 @@ mutable struct pf_passive__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: pf_passive__ids_properties__occurrence_type{T} - var"plugins" :: pf_passive__ids_properties__plugins{T} - var"provenance" :: pf_passive__ids_properties__provenance{T} + var"occurrence_type"::pf_passive__ids_properties__occurrence_type{T} + var"plugins"::pf_passive__ids_properties__plugins{T} + var"provenance"::pf_passive__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: pf_passive__ids_properties__version_put{T} + var"version_put"::pf_passive__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__ids_properties} + _parent::WeakRef end function pf_passive__ids_properties{T}() where T @@ -48463,8 +48463,8 @@ mutable struct pf_passive__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__code__library} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__code__library} + _parent::WeakRef end function pf_passive__code__library{T}() where T @@ -48477,7 +48477,7 @@ pf_passive__code__library() = pf_passive__code__library{Float64}() mutable struct pf_passive__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{pf_passive__code__library{T}} + var"library"::IDSvector{pf_passive__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -48487,8 +48487,8 @@ mutable struct pf_passive__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive__code} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive__code} + _parent::WeakRef end function pf_passive__code{T}() where T @@ -48500,16 +48500,16 @@ end pf_passive__code() = pf_passive__code{Float64}() mutable struct pf_passive{T} <: IDStop{T} - var"code" :: pf_passive__code{T} - var"ids_properties" :: pf_passive__ids_properties{T} - var"loop" :: IDSvector{pf_passive__loop{T}} + var"code"::pf_passive__code{T} + var"ids_properties"::pf_passive__ids_properties{T} + var"loop"::IDSvector{pf_passive__loop{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_passive} - _parent :: WeakRef + _ref::Union{Nothing,pf_passive} + _parent::WeakRef end function pf_passive{T}() where T @@ -48530,8 +48530,8 @@ mutable struct pf_active__supply___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__supply___voltage} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__supply___voltage} + _parent::WeakRef end function pf_active__supply___voltage{T}() where T @@ -48549,8 +48549,8 @@ mutable struct pf_active__supply___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__supply___current} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__supply___current} + _parent::WeakRef end function pf_active__supply___current{T}() where T @@ -48561,7 +48561,7 @@ end pf_active__supply___current() = pf_active__supply___current{Float64}() mutable struct pf_active__supply{T} <: IDSvectorStaticElement{T} - var"current" :: pf_active__supply___current{T} + var"current"::pf_active__supply___current{T} var"current_limit_max" :: T var"current_limit_max_σ" :: T var"current_limit_min" :: T @@ -48582,7 +48582,7 @@ mutable struct pf_active__supply{T} <: IDSvectorStaticElement{T} var"resistance" :: T var"resistance_σ" :: T var"type" :: Int - var"voltage" :: pf_active__supply___voltage{T} + var"voltage"::pf_active__supply___voltage{T} var"voltage_limit_max" :: T var"voltage_limit_max_σ" :: T var"voltage_limit_min" :: T @@ -48591,8 +48591,8 @@ mutable struct pf_active__supply{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__supply} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__supply} + _parent::WeakRef end function pf_active__supply{T}() where T @@ -48612,8 +48612,8 @@ mutable struct pf_active__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__version_put} + _parent::WeakRef end function pf_active__ids_properties__version_put{T}() where T @@ -48630,8 +48630,8 @@ mutable struct pf_active__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__provenance__node} + _parent::WeakRef end function pf_active__ids_properties__provenance__node{T}() where T @@ -48642,13 +48642,13 @@ end pf_active__ids_properties__provenance__node() = pf_active__ids_properties__provenance__node{Float64}() mutable struct pf_active__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{pf_active__ids_properties__provenance__node{T}} + var"node"::IDSvector{pf_active__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__provenance} + _parent::WeakRef end function pf_active__ids_properties__provenance{T}() where T @@ -48670,8 +48670,8 @@ mutable struct pf_active__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__plugins__node___readback} + _parent::WeakRef end function pf_active__ids_properties__plugins__node___readback{T}() where T @@ -48692,8 +48692,8 @@ mutable struct pf_active__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function pf_active__ids_properties__plugins__node___put_operation{T}() where T @@ -48714,8 +48714,8 @@ mutable struct pf_active__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function pf_active__ids_properties__plugins__node___get_operation{T}() where T @@ -48726,16 +48726,16 @@ end pf_active__ids_properties__plugins__node___get_operation() = pf_active__ids_properties__plugins__node___get_operation{Float64}() mutable struct pf_active__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{pf_active__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{pf_active__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{pf_active__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{pf_active__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{pf_active__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{pf_active__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__plugins__node} + _parent::WeakRef end function pf_active__ids_properties__plugins__node{T}() where T @@ -48758,8 +48758,8 @@ mutable struct pf_active__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function pf_active__ids_properties__plugins__infrastructure_put{T}() where T @@ -48779,8 +48779,8 @@ mutable struct pf_active__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function pf_active__ids_properties__plugins__infrastructure_get{T}() where T @@ -48791,15 +48791,15 @@ end pf_active__ids_properties__plugins__infrastructure_get() = pf_active__ids_properties__plugins__infrastructure_get{Float64}() mutable struct pf_active__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: pf_active__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: pf_active__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{pf_active__ids_properties__plugins__node{T}} + var"infrastructure_get"::pf_active__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::pf_active__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{pf_active__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__plugins} + _parent::WeakRef end function pf_active__ids_properties__plugins{T}() where T @@ -48820,8 +48820,8 @@ mutable struct pf_active__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties__occurrence_type} + _parent::WeakRef end function pf_active__ids_properties__occurrence_type{T}() where T @@ -48837,17 +48837,17 @@ mutable struct pf_active__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: pf_active__ids_properties__occurrence_type{T} - var"plugins" :: pf_active__ids_properties__plugins{T} - var"provenance" :: pf_active__ids_properties__provenance{T} + var"occurrence_type"::pf_active__ids_properties__occurrence_type{T} + var"plugins"::pf_active__ids_properties__plugins{T} + var"provenance"::pf_active__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: pf_active__ids_properties__version_put{T} + var"version_put"::pf_active__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__ids_properties} + _parent::WeakRef end function pf_active__ids_properties{T}() where T @@ -48869,8 +48869,8 @@ mutable struct pf_active__force_limits__force{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__force_limits__force} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__force_limits__force} + _parent::WeakRef end function pf_active__force_limits__force{T}() where T @@ -48883,7 +48883,7 @@ pf_active__force_limits__force() = pf_active__force_limits__force{Float64}() mutable struct pf_active__force_limits{T} <: IDS{T} var"combination_matrix" :: Matrix{<:T} var"combination_matrix_σ" :: Matrix{<:T} - var"force" :: pf_active__force_limits__force{T} + var"force"::pf_active__force_limits__force{T} var"limit_max" :: Vector{<:T} var"limit_max_σ" :: Vector{<:T} var"limit_min" :: Vector{<:T} @@ -48892,8 +48892,8 @@ mutable struct pf_active__force_limits{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__force_limits} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__force_limits} + _parent::WeakRef end function pf_active__force_limits{T}() where T @@ -48912,8 +48912,8 @@ mutable struct pf_active__coil___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___voltage} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___voltage} + _parent::WeakRef end function pf_active__coil___voltage{T}() where T @@ -48931,8 +48931,8 @@ mutable struct pf_active__coil___resistance_additional{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___resistance_additional} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___resistance_additional} + _parent::WeakRef end function pf_active__coil___resistance_additional{T}() where T @@ -48950,8 +48950,8 @@ mutable struct pf_active__coil___function{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___function} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___function} + _parent::WeakRef end function pf_active__coil___function{T}() where T @@ -48969,8 +48969,8 @@ mutable struct pf_active__coil___force_vertical_crushing{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___force_vertical_crushing} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___force_vertical_crushing} + _parent::WeakRef end function pf_active__coil___force_vertical_crushing{T}() where T @@ -48988,8 +48988,8 @@ mutable struct pf_active__coil___force_vertical{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___force_vertical} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___force_vertical} + _parent::WeakRef end function pf_active__coil___force_vertical{T}() where T @@ -49007,8 +49007,8 @@ mutable struct pf_active__coil___force_radial_crushing{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___force_radial_crushing} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___force_radial_crushing} + _parent::WeakRef end function pf_active__coil___force_radial_crushing{T}() where T @@ -49026,8 +49026,8 @@ mutable struct pf_active__coil___force_radial{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___force_radial} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___force_radial} + _parent::WeakRef end function pf_active__coil___force_radial{T}() where T @@ -49046,8 +49046,8 @@ mutable struct pf_active__coil___element___geometry__thick_line__second_point{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry__thick_line__second_point} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry__thick_line__second_point} + _parent::WeakRef end function pf_active__coil___element___geometry__thick_line__second_point{T}() where T @@ -49066,8 +49066,8 @@ mutable struct pf_active__coil___element___geometry__thick_line__first_point{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry__thick_line__first_point} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry__thick_line__first_point} + _parent::WeakRef end function pf_active__coil___element___geometry__thick_line__first_point{T}() where T @@ -49078,16 +49078,16 @@ end pf_active__coil___element___geometry__thick_line__first_point() = pf_active__coil___element___geometry__thick_line__first_point{Float64}() mutable struct pf_active__coil___element___geometry__thick_line{T} <: IDS{T} - var"first_point" :: pf_active__coil___element___geometry__thick_line__first_point{T} - var"second_point" :: pf_active__coil___element___geometry__thick_line__second_point{T} + var"first_point"::pf_active__coil___element___geometry__thick_line__first_point{T} + var"second_point"::pf_active__coil___element___geometry__thick_line__second_point{T} var"thickness" :: T var"thickness_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry__thick_line} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry__thick_line} + _parent::WeakRef end function pf_active__coil___element___geometry__thick_line{T}() where T @@ -49112,8 +49112,8 @@ mutable struct pf_active__coil___element___geometry__rectangle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry__rectangle} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry__rectangle} + _parent::WeakRef end function pf_active__coil___element___geometry__rectangle{T}() where T @@ -49132,8 +49132,8 @@ mutable struct pf_active__coil___element___geometry__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry__outline} + _parent::WeakRef end function pf_active__coil___element___geometry__outline{T}() where T @@ -49160,8 +49160,8 @@ mutable struct pf_active__coil___element___geometry__oblique{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry__oblique} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry__oblique} + _parent::WeakRef end function pf_active__coil___element___geometry__oblique{T}() where T @@ -49182,8 +49182,8 @@ mutable struct pf_active__coil___element___geometry__arcs_of_circle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry__arcs_of_circle} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry__arcs_of_circle} + _parent::WeakRef end function pf_active__coil___element___geometry__arcs_of_circle{T}() where T @@ -49206,8 +49206,8 @@ mutable struct pf_active__coil___element___geometry__annulus{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry__annulus} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry__annulus} + _parent::WeakRef end function pf_active__coil___element___geometry__annulus{T}() where T @@ -49218,19 +49218,19 @@ end pf_active__coil___element___geometry__annulus() = pf_active__coil___element___geometry__annulus{Float64}() mutable struct pf_active__coil___element___geometry{T} <: IDS{T} - var"annulus" :: pf_active__coil___element___geometry__annulus{T} - var"arcs_of_circle" :: pf_active__coil___element___geometry__arcs_of_circle{T} + var"annulus"::pf_active__coil___element___geometry__annulus{T} + var"arcs_of_circle"::pf_active__coil___element___geometry__arcs_of_circle{T} var"geometry_type" :: Int - var"oblique" :: pf_active__coil___element___geometry__oblique{T} - var"outline" :: pf_active__coil___element___geometry__outline{T} - var"rectangle" :: pf_active__coil___element___geometry__rectangle{T} - var"thick_line" :: pf_active__coil___element___geometry__thick_line{T} + var"oblique"::pf_active__coil___element___geometry__oblique{T} + var"outline"::pf_active__coil___element___geometry__outline{T} + var"rectangle"::pf_active__coil___element___geometry__rectangle{T} + var"thick_line"::pf_active__coil___element___geometry__thick_line{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element___geometry} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element___geometry} + _parent::WeakRef end function pf_active__coil___element___geometry{T}() where T @@ -49249,7 +49249,7 @@ pf_active__coil___element___geometry() = pf_active__coil___element___geometry{Fl mutable struct pf_active__coil___element{T} <: IDSvectorStaticElement{T} var"area" :: T var"area_σ" :: T - var"geometry" :: pf_active__coil___element___geometry{T} + var"geometry"::pf_active__coil___element___geometry{T} var"identifier" :: String var"name" :: String var"turns_with_sign" :: T @@ -49258,8 +49258,8 @@ mutable struct pf_active__coil___element{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___element} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___element} + _parent::WeakRef end function pf_active__coil___element{T}() where T @@ -49278,8 +49278,8 @@ mutable struct pf_active__coil___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___current} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___current} + _parent::WeakRef end function pf_active__coil___current{T}() where T @@ -49297,8 +49297,8 @@ mutable struct pf_active__coil___b_field_max_timed{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil___b_field_max_timed} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil___b_field_max_timed} + _parent::WeakRef end function pf_active__coil___b_field_max_timed{T}() where T @@ -49311,32 +49311,32 @@ pf_active__coil___b_field_max_timed() = pf_active__coil___b_field_max_timed{Floa mutable struct pf_active__coil{T} <: IDSvectorStaticElement{T} var"b_field_max" :: Vector{<:T} var"b_field_max_σ" :: Vector{<:T} - var"b_field_max_timed" :: pf_active__coil___b_field_max_timed{T} - var"current" :: pf_active__coil___current{T} + var"b_field_max_timed"::pf_active__coil___b_field_max_timed{T} + var"current"::pf_active__coil___current{T} var"current_limit_max" :: Matrix{<:T} var"current_limit_max_σ" :: Matrix{<:T} - var"element" :: IDSvector{pf_active__coil___element{T}} + var"element"::IDSvector{pf_active__coil___element{T}} var"energy_limit_max" :: T var"energy_limit_max_σ" :: T - var"force_radial" :: pf_active__coil___force_radial{T} - var"force_radial_crushing" :: pf_active__coil___force_radial_crushing{T} - var"force_vertical" :: pf_active__coil___force_vertical{T} - var"force_vertical_crushing" :: pf_active__coil___force_vertical_crushing{T} - var"function" :: IDSvector{pf_active__coil___function{T}} + var"force_radial"::pf_active__coil___force_radial{T} + var"force_radial_crushing"::pf_active__coil___force_radial_crushing{T} + var"force_vertical"::pf_active__coil___force_vertical{T} + var"force_vertical_crushing"::pf_active__coil___force_vertical_crushing{T} + var"function"::IDSvector{pf_active__coil___function{T}} var"identifier" :: String var"name" :: String var"resistance" :: T var"resistance_σ" :: T - var"resistance_additional" :: pf_active__coil___resistance_additional{T} + var"resistance_additional"::pf_active__coil___resistance_additional{T} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} - var"voltage" :: pf_active__coil___voltage{T} + var"voltage"::pf_active__coil___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__coil} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__coil} + _parent::WeakRef end function pf_active__coil{T}() where T @@ -49367,8 +49367,8 @@ mutable struct pf_active__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__code__library} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__code__library} + _parent::WeakRef end function pf_active__code__library{T}() where T @@ -49381,7 +49381,7 @@ pf_active__code__library() = pf_active__code__library{Float64}() mutable struct pf_active__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{pf_active__code__library{T}} + var"library"::IDSvector{pf_active__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -49391,8 +49391,8 @@ mutable struct pf_active__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__code} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__code} + _parent::WeakRef end function pf_active__code{T}() where T @@ -49411,8 +49411,8 @@ mutable struct pf_active__circuit___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__circuit___voltage} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__circuit___voltage} + _parent::WeakRef end function pf_active__circuit___voltage{T}() where T @@ -49430,8 +49430,8 @@ mutable struct pf_active__circuit___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__circuit___current} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__circuit___current} + _parent::WeakRef end function pf_active__circuit___current{T}() where T @@ -49443,17 +49443,17 @@ pf_active__circuit___current() = pf_active__circuit___current{Float64}() mutable struct pf_active__circuit{T} <: IDSvectorStaticElement{T} var"connections" :: Matrix{Int} - var"current" :: pf_active__circuit___current{T} + var"current"::pf_active__circuit___current{T} var"identifier" :: String var"name" :: String var"type" :: String - var"voltage" :: pf_active__circuit___voltage{T} + var"voltage"::pf_active__circuit___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active__circuit} - _parent :: WeakRef + _ref::Union{Nothing,pf_active__circuit} + _parent::WeakRef end function pf_active__circuit{T}() where T @@ -49466,21 +49466,21 @@ end pf_active__circuit() = pf_active__circuit{Float64}() mutable struct pf_active{T} <: IDStop{T} - var"circuit" :: IDSvector{pf_active__circuit{T}} - var"code" :: pf_active__code{T} - var"coil" :: IDSvector{pf_active__coil{T}} - var"force_limits" :: pf_active__force_limits{T} - var"ids_properties" :: pf_active__ids_properties{T} + var"circuit"::IDSvector{pf_active__circuit{T}} + var"code"::pf_active__code{T} + var"coil"::IDSvector{pf_active__coil{T}} + var"force_limits"::pf_active__force_limits{T} + var"ids_properties"::pf_active__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"supply" :: IDSvector{pf_active__supply{T}} + var"supply"::IDSvector{pf_active__supply{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pf_active} - _parent :: WeakRef + _ref::Union{Nothing,pf_active} + _parent::WeakRef end function pf_active{T}() where T @@ -49512,8 +49512,8 @@ mutable struct pellets__time_slice___pellet___species{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___species} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___species} + _parent::WeakRef end function pellets__time_slice___pellet___species{T}() where T @@ -49531,8 +49531,8 @@ mutable struct pellets__time_slice___pellet___shape__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___shape__type} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___shape__type} + _parent::WeakRef end function pellets__time_slice___pellet___shape__type{T}() where T @@ -49545,13 +49545,13 @@ pellets__time_slice___pellet___shape__type() = pellets__time_slice___pellet___sh mutable struct pellets__time_slice___pellet___shape{T} <: IDS{T} var"size" :: Vector{<:T} var"size_σ" :: Vector{<:T} - var"type" :: pellets__time_slice___pellet___shape__type{T} + var"type"::pellets__time_slice___pellet___shape__type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___shape} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___shape} + _parent::WeakRef end function pellets__time_slice___pellet___shape{T}() where T @@ -49572,8 +49572,8 @@ mutable struct pellets__time_slice___pellet___propellant_gas__element{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___propellant_gas__element} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___propellant_gas__element} + _parent::WeakRef end function pellets__time_slice___pellet___propellant_gas__element{T}() where T @@ -49584,7 +49584,7 @@ end pellets__time_slice___pellet___propellant_gas__element() = pellets__time_slice___pellet___propellant_gas__element{Float64}() mutable struct pellets__time_slice___pellet___propellant_gas{T} <: IDS{T} - var"element" :: IDSvector{pellets__time_slice___pellet___propellant_gas__element{T}} + var"element"::IDSvector{pellets__time_slice___pellet___propellant_gas__element{T}} var"label" :: String var"molecules_n" :: T var"molecules_n_σ" :: T @@ -49592,8 +49592,8 @@ mutable struct pellets__time_slice___pellet___propellant_gas{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___propellant_gas} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___propellant_gas} + _parent::WeakRef end function pellets__time_slice___pellet___propellant_gas{T}() where T @@ -49615,8 +49615,8 @@ mutable struct pellets__time_slice___pellet___path_profiles__position{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___path_profiles__position} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___path_profiles__position} + _parent::WeakRef end function pellets__time_slice___pellet___path_profiles__position{T}() where T @@ -49635,7 +49635,7 @@ mutable struct pellets__time_slice___pellet___path_profiles{T} <: IDS{T} var"distance_σ" :: Vector{<:T} var"n_e" :: Vector{<:T} var"n_e_σ" :: Vector{<:T} - var"position" :: pellets__time_slice___pellet___path_profiles__position{T} + var"position"::pellets__time_slice___pellet___path_profiles__position{T} var"psi" :: Vector{<:T} var"psi_σ" :: Vector{<:T} var"rho_tor_norm" :: Vector{<:T} @@ -49650,8 +49650,8 @@ mutable struct pellets__time_slice___pellet___path_profiles{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___path_profiles} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___path_profiles} + _parent::WeakRef end function pellets__time_slice___pellet___path_profiles{T}() where T @@ -49673,8 +49673,8 @@ mutable struct pellets__time_slice___pellet___path_geometry__second_point{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___path_geometry__second_point} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___path_geometry__second_point} + _parent::WeakRef end function pellets__time_slice___pellet___path_geometry__second_point{T}() where T @@ -49695,8 +49695,8 @@ mutable struct pellets__time_slice___pellet___path_geometry__first_point{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___path_geometry__first_point} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___path_geometry__first_point} + _parent::WeakRef end function pellets__time_slice___pellet___path_geometry__first_point{T}() where T @@ -49707,14 +49707,14 @@ end pellets__time_slice___pellet___path_geometry__first_point() = pellets__time_slice___pellet___path_geometry__first_point{Float64}() mutable struct pellets__time_slice___pellet___path_geometry{T} <: IDS{T} - var"first_point" :: pellets__time_slice___pellet___path_geometry__first_point{T} - var"second_point" :: pellets__time_slice___pellet___path_geometry__second_point{T} + var"first_point"::pellets__time_slice___pellet___path_geometry__first_point{T} + var"second_point"::pellets__time_slice___pellet___path_geometry__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___path_geometry} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___path_geometry} + _parent::WeakRef end function pellets__time_slice___pellet___path_geometry{T}() where T @@ -49742,8 +49742,8 @@ mutable struct pellets__time_slice___pellet___layer___species{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___layer___species} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___layer___species} + _parent::WeakRef end function pellets__time_slice___pellet___layer___species{T}() where T @@ -49754,15 +49754,15 @@ end pellets__time_slice___pellet___layer___species() = pellets__time_slice___pellet___layer___species{Float64}() mutable struct pellets__time_slice___pellet___layer{T} <: IDSvectorStaticElement{T} - var"species" :: IDSvector{pellets__time_slice___pellet___layer___species{T}} + var"species"::IDSvector{pellets__time_slice___pellet___layer___species{T}} var"thickness" :: T var"thickness_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet___layer} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet___layer} + _parent::WeakRef end function pellets__time_slice___pellet___layer{T}() where T @@ -49776,20 +49776,20 @@ pellets__time_slice___pellet___layer() = pellets__time_slice___pellet___layer{Fl mutable struct pellets__time_slice___pellet{T} <: IDSvectorStaticElement{T} var"frequency" :: T var"frequency_σ" :: T - var"layer" :: IDSvector{pellets__time_slice___pellet___layer{T}} - var"path_geometry" :: pellets__time_slice___pellet___path_geometry{T} - var"path_profiles" :: pellets__time_slice___pellet___path_profiles{T} - var"propellant_gas" :: pellets__time_slice___pellet___propellant_gas{T} - var"shape" :: pellets__time_slice___pellet___shape{T} - var"species" :: IDSvector{pellets__time_slice___pellet___species{T}} + var"layer"::IDSvector{pellets__time_slice___pellet___layer{T}} + var"path_geometry"::pellets__time_slice___pellet___path_geometry{T} + var"path_profiles"::pellets__time_slice___pellet___path_profiles{T} + var"propellant_gas"::pellets__time_slice___pellet___propellant_gas{T} + var"shape"::pellets__time_slice___pellet___shape{T} + var"species"::IDSvector{pellets__time_slice___pellet___species{T}} var"velocity_initial" :: T var"velocity_initial_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice___pellet} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice___pellet} + _parent::WeakRef end function pellets__time_slice___pellet{T}() where T @@ -49806,14 +49806,14 @@ end pellets__time_slice___pellet() = pellets__time_slice___pellet{Float64}() mutable struct pellets__time_slice{T} <: IDSvectorTimeElement{T} - var"pellet" :: IDSvector{pellets__time_slice___pellet{T}} + var"pellet"::IDSvector{pellets__time_slice___pellet{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__time_slice} - _parent :: WeakRef + _ref::Union{Nothing,pellets__time_slice} + _parent::WeakRef end function pellets__time_slice{T}() where T @@ -49834,8 +49834,8 @@ mutable struct pellets__launcher___species{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__launcher___species} - _parent :: WeakRef + _ref::Union{Nothing,pellets__launcher___species} + _parent::WeakRef end function pellets__launcher___species{T}() where T @@ -49853,8 +49853,8 @@ mutable struct pellets__launcher___shape__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__launcher___shape__type} - _parent :: WeakRef + _ref::Union{Nothing,pellets__launcher___shape__type} + _parent::WeakRef end function pellets__launcher___shape__type{T}() where T @@ -49867,13 +49867,13 @@ pellets__launcher___shape__type() = pellets__launcher___shape__type{Float64}() mutable struct pellets__launcher___shape{T} <: IDS{T} var"size" :: Vector{<:T} var"size_σ" :: Vector{<:T} - var"type" :: pellets__launcher___shape__type{T} + var"type"::pellets__launcher___shape__type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__launcher___shape} - _parent :: WeakRef + _ref::Union{Nothing,pellets__launcher___shape} + _parent::WeakRef end function pellets__launcher___shape{T}() where T @@ -49886,14 +49886,14 @@ pellets__launcher___shape() = pellets__launcher___shape{Float64}() mutable struct pellets__launcher{T} <: IDSvectorStaticElement{T} var"name" :: String - var"shape" :: pellets__launcher___shape{T} - var"species" :: IDSvector{pellets__launcher___species{T}} + var"shape"::pellets__launcher___shape{T} + var"species"::IDSvector{pellets__launcher___species{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__launcher} - _parent :: WeakRef + _ref::Union{Nothing,pellets__launcher} + _parent::WeakRef end function pellets__launcher{T}() where T @@ -49913,8 +49913,8 @@ mutable struct pellets__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__version_put} + _parent::WeakRef end function pellets__ids_properties__version_put{T}() where T @@ -49931,8 +49931,8 @@ mutable struct pellets__ids_properties__provenance__node{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__provenance__node} + _parent::WeakRef end function pellets__ids_properties__provenance__node{T}() where T @@ -49943,13 +49943,13 @@ end pellets__ids_properties__provenance__node() = pellets__ids_properties__provenance__node{Float64}() mutable struct pellets__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{pellets__ids_properties__provenance__node{T}} + var"node"::IDSvector{pellets__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__provenance} + _parent::WeakRef end function pellets__ids_properties__provenance{T}() where T @@ -49971,8 +49971,8 @@ mutable struct pellets__ids_properties__plugins__node___readback{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__plugins__node___readback} + _parent::WeakRef end function pellets__ids_properties__plugins__node___readback{T}() where T @@ -49993,8 +49993,8 @@ mutable struct pellets__ids_properties__plugins__node___put_operation{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function pellets__ids_properties__plugins__node___put_operation{T}() where T @@ -50015,8 +50015,8 @@ mutable struct pellets__ids_properties__plugins__node___get_operation{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function pellets__ids_properties__plugins__node___get_operation{T}() where T @@ -50027,16 +50027,16 @@ end pellets__ids_properties__plugins__node___get_operation() = pellets__ids_properties__plugins__node___get_operation{Float64}() mutable struct pellets__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{pellets__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{pellets__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{pellets__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{pellets__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{pellets__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{pellets__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__plugins__node} + _parent::WeakRef end function pellets__ids_properties__plugins__node{T}() where T @@ -50059,8 +50059,8 @@ mutable struct pellets__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function pellets__ids_properties__plugins__infrastructure_put{T}() where T @@ -50080,8 +50080,8 @@ mutable struct pellets__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function pellets__ids_properties__plugins__infrastructure_get{T}() where T @@ -50092,15 +50092,15 @@ end pellets__ids_properties__plugins__infrastructure_get() = pellets__ids_properties__plugins__infrastructure_get{Float64}() mutable struct pellets__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: pellets__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: pellets__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{pellets__ids_properties__plugins__node{T}} + var"infrastructure_get"::pellets__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::pellets__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{pellets__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__plugins} + _parent::WeakRef end function pellets__ids_properties__plugins{T}() where T @@ -50121,8 +50121,8 @@ mutable struct pellets__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties__occurrence_type} + _parent::WeakRef end function pellets__ids_properties__occurrence_type{T}() where T @@ -50138,17 +50138,17 @@ mutable struct pellets__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: pellets__ids_properties__occurrence_type{T} - var"plugins" :: pellets__ids_properties__plugins{T} - var"provenance" :: pellets__ids_properties__provenance{T} + var"occurrence_type"::pellets__ids_properties__occurrence_type{T} + var"plugins"::pellets__ids_properties__plugins{T} + var"provenance"::pellets__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: pellets__ids_properties__version_put{T} + var"version_put"::pellets__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,pellets__ids_properties} + _parent::WeakRef end function pellets__ids_properties{T}() where T @@ -50173,8 +50173,8 @@ mutable struct pellets__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__code__library} - _parent :: WeakRef + _ref::Union{Nothing,pellets__code__library} + _parent::WeakRef end function pellets__code__library{T}() where T @@ -50187,7 +50187,7 @@ pellets__code__library() = pellets__code__library{Float64}() mutable struct pellets__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{pellets__code__library{T}} + var"library"::IDSvector{pellets__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -50197,8 +50197,8 @@ mutable struct pellets__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets__code} - _parent :: WeakRef + _ref::Union{Nothing,pellets__code} + _parent::WeakRef end function pellets__code{T}() where T @@ -50210,19 +50210,19 @@ end pellets__code() = pellets__code{Float64}() mutable struct pellets{T} <: IDStop{T} - var"code" :: pellets__code{T} - var"ids_properties" :: pellets__ids_properties{T} + var"code"::pellets__code{T} + var"ids_properties"::pellets__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"launcher" :: IDSvector{pellets__launcher{T}} + var"launcher"::IDSvector{pellets__launcher{T}} var"time" :: Vector{Float64} - var"time_slice" :: IDSvector{pellets__time_slice{T}} + var"time_slice"::IDSvector{pellets__time_slice{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,pellets} - _parent :: WeakRef + _ref::Union{Nothing,pellets} + _parent::WeakRef end function pellets{T}() where T @@ -50244,8 +50244,8 @@ mutable struct operational_instrumentation__sensor___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___type} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___type} + _parent::WeakRef end function operational_instrumentation__sensor___type{T}() where T @@ -50263,8 +50263,8 @@ mutable struct operational_instrumentation__sensor___temperature{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___temperature} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___temperature} + _parent::WeakRef end function operational_instrumentation__sensor___temperature{T}() where T @@ -50282,8 +50282,8 @@ mutable struct operational_instrumentation__sensor___strain_rosette{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___strain_rosette} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___strain_rosette} + _parent::WeakRef end function operational_instrumentation__sensor___strain_rosette{T}() where T @@ -50301,8 +50301,8 @@ mutable struct operational_instrumentation__sensor___strain{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___strain} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___strain} + _parent::WeakRef end function operational_instrumentation__sensor___strain{T}() where T @@ -50320,8 +50320,8 @@ mutable struct operational_instrumentation__sensor___length{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___length} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___length} + _parent::WeakRef end function operational_instrumentation__sensor___length{T}() where T @@ -50342,8 +50342,8 @@ mutable struct operational_instrumentation__sensor___direction_second{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___direction_second} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___direction_second} + _parent::WeakRef end function operational_instrumentation__sensor___direction_second{T}() where T @@ -50364,8 +50364,8 @@ mutable struct operational_instrumentation__sensor___direction{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___direction} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___direction} + _parent::WeakRef end function operational_instrumentation__sensor___direction{T}() where T @@ -50386,8 +50386,8 @@ mutable struct operational_instrumentation__sensor___attachement_points{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___attachement_points} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___attachement_points} + _parent::WeakRef end function operational_instrumentation__sensor___attachement_points{T}() where T @@ -50405,8 +50405,8 @@ mutable struct operational_instrumentation__sensor___acceleration{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor___acceleration} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor___acceleration} + _parent::WeakRef end function operational_instrumentation__sensor___acceleration{T}() where T @@ -50417,26 +50417,26 @@ end operational_instrumentation__sensor___acceleration() = operational_instrumentation__sensor___acceleration{Float64}() mutable struct operational_instrumentation__sensor{T} <: IDSvectorStaticElement{T} - var"acceleration" :: operational_instrumentation__sensor___acceleration{T} - var"attachement_points" :: IDSvector{operational_instrumentation__sensor___attachement_points{T}} + var"acceleration"::operational_instrumentation__sensor___acceleration{T} + var"attachement_points"::IDSvector{operational_instrumentation__sensor___attachement_points{T}} var"attachement_uris" :: Vector{String} - var"direction" :: operational_instrumentation__sensor___direction{T} - var"direction_second" :: operational_instrumentation__sensor___direction_second{T} + var"direction"::operational_instrumentation__sensor___direction{T} + var"direction_second"::operational_instrumentation__sensor___direction_second{T} var"gauge_length" :: T var"gauge_length_σ" :: T var"identifier" :: String - var"length" :: operational_instrumentation__sensor___length{T} + var"length"::operational_instrumentation__sensor___length{T} var"name" :: String - var"strain" :: operational_instrumentation__sensor___strain{T} - var"strain_rosette" :: operational_instrumentation__sensor___strain_rosette{T} - var"temperature" :: operational_instrumentation__sensor___temperature{T} - var"type" :: operational_instrumentation__sensor___type{T} + var"strain"::operational_instrumentation__sensor___strain{T} + var"strain_rosette"::operational_instrumentation__sensor___strain_rosette{T} + var"temperature"::operational_instrumentation__sensor___temperature{T} + var"type"::operational_instrumentation__sensor___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__sensor} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__sensor} + _parent::WeakRef end function operational_instrumentation__sensor{T}() where T @@ -50463,8 +50463,8 @@ mutable struct operational_instrumentation__ids_properties__version_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__version_put} + _parent::WeakRef end function operational_instrumentation__ids_properties__version_put{T}() where T @@ -50481,8 +50481,8 @@ mutable struct operational_instrumentation__ids_properties__provenance__node{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__provenance__node} + _parent::WeakRef end function operational_instrumentation__ids_properties__provenance__node{T}() where T @@ -50493,13 +50493,13 @@ end operational_instrumentation__ids_properties__provenance__node() = operational_instrumentation__ids_properties__provenance__node{Float64}() mutable struct operational_instrumentation__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{operational_instrumentation__ids_properties__provenance__node{T}} + var"node"::IDSvector{operational_instrumentation__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__provenance} + _parent::WeakRef end function operational_instrumentation__ids_properties__provenance{T}() where T @@ -50521,8 +50521,8 @@ mutable struct operational_instrumentation__ids_properties__plugins__node___read _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__plugins__node___readback} + _parent::WeakRef end function operational_instrumentation__ids_properties__plugins__node___readback{T}() where T @@ -50543,8 +50543,8 @@ mutable struct operational_instrumentation__ids_properties__plugins__node___put_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function operational_instrumentation__ids_properties__plugins__node___put_operation{T}() where T @@ -50565,8 +50565,8 @@ mutable struct operational_instrumentation__ids_properties__plugins__node___get_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function operational_instrumentation__ids_properties__plugins__node___get_operation{T}() where T @@ -50577,16 +50577,16 @@ end operational_instrumentation__ids_properties__plugins__node___get_operation() = operational_instrumentation__ids_properties__plugins__node___get_operation{Float64}() mutable struct operational_instrumentation__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{operational_instrumentation__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{operational_instrumentation__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{operational_instrumentation__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{operational_instrumentation__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{operational_instrumentation__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{operational_instrumentation__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__plugins__node} + _parent::WeakRef end function operational_instrumentation__ids_properties__plugins__node{T}() where T @@ -50609,8 +50609,8 @@ mutable struct operational_instrumentation__ids_properties__plugins__infrastruct _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function operational_instrumentation__ids_properties__plugins__infrastructure_put{T}() where T @@ -50630,8 +50630,8 @@ mutable struct operational_instrumentation__ids_properties__plugins__infrastruct _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function operational_instrumentation__ids_properties__plugins__infrastructure_get{T}() where T @@ -50642,15 +50642,15 @@ end operational_instrumentation__ids_properties__plugins__infrastructure_get() = operational_instrumentation__ids_properties__plugins__infrastructure_get{Float64}() mutable struct operational_instrumentation__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: operational_instrumentation__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: operational_instrumentation__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{operational_instrumentation__ids_properties__plugins__node{T}} + var"infrastructure_get"::operational_instrumentation__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::operational_instrumentation__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{operational_instrumentation__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__plugins} + _parent::WeakRef end function operational_instrumentation__ids_properties__plugins{T}() where T @@ -50671,8 +50671,8 @@ mutable struct operational_instrumentation__ids_properties__occurrence_type{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties__occurrence_type} + _parent::WeakRef end function operational_instrumentation__ids_properties__occurrence_type{T}() where T @@ -50688,17 +50688,17 @@ mutable struct operational_instrumentation__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: operational_instrumentation__ids_properties__occurrence_type{T} - var"plugins" :: operational_instrumentation__ids_properties__plugins{T} - var"provenance" :: operational_instrumentation__ids_properties__provenance{T} + var"occurrence_type"::operational_instrumentation__ids_properties__occurrence_type{T} + var"plugins"::operational_instrumentation__ids_properties__plugins{T} + var"provenance"::operational_instrumentation__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: operational_instrumentation__ids_properties__version_put{T} + var"version_put"::operational_instrumentation__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__ids_properties} + _parent::WeakRef end function operational_instrumentation__ids_properties{T}() where T @@ -50723,8 +50723,8 @@ mutable struct operational_instrumentation__code__library{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__code__library} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__code__library} + _parent::WeakRef end function operational_instrumentation__code__library{T}() where T @@ -50737,7 +50737,7 @@ operational_instrumentation__code__library() = operational_instrumentation__code mutable struct operational_instrumentation__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{operational_instrumentation__code__library{T}} + var"library"::IDSvector{operational_instrumentation__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -50747,8 +50747,8 @@ mutable struct operational_instrumentation__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation__code} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation__code} + _parent::WeakRef end function operational_instrumentation__code{T}() where T @@ -50760,18 +50760,18 @@ end operational_instrumentation__code() = operational_instrumentation__code{Float64}() mutable struct operational_instrumentation{T} <: IDStop{T} - var"code" :: operational_instrumentation__code{T} - var"ids_properties" :: operational_instrumentation__ids_properties{T} + var"code"::operational_instrumentation__code{T} + var"ids_properties"::operational_instrumentation__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"sensor" :: IDSvector{operational_instrumentation__sensor{T}} + var"sensor"::IDSvector{operational_instrumentation__sensor{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,operational_instrumentation} - _parent :: WeakRef + _ref::Union{Nothing,operational_instrumentation} + _parent::WeakRef end function operational_instrumentation{T}() where T @@ -50793,8 +50793,8 @@ mutable struct ntms__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,ntms__vacuum_toroidal_field} + _parent::WeakRef end function ntms__vacuum_toroidal_field{T}() where T @@ -50812,8 +50812,8 @@ mutable struct ntms__time_slice___mode___torque{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__time_slice___mode___torque} - _parent :: WeakRef + _ref::Union{Nothing,ntms__time_slice___mode___torque} + _parent::WeakRef end function ntms__time_slice___mode___torque{T}() where T @@ -50839,8 +50839,8 @@ mutable struct ntms__time_slice___mode___onset{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__time_slice___mode___onset} - _parent :: WeakRef + _ref::Union{Nothing,ntms__time_slice___mode___onset} + _parent::WeakRef end function ntms__time_slice___mode___onset{T}() where T @@ -50858,8 +50858,8 @@ mutable struct ntms__time_slice___mode___detailed_evolution__torque{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__time_slice___mode___detailed_evolution__torque} - _parent :: WeakRef + _ref::Union{Nothing,ntms__time_slice___mode___detailed_evolution__torque} + _parent::WeakRef end function ntms__time_slice___mode___detailed_evolution__torque{T}() where T @@ -50877,8 +50877,8 @@ mutable struct ntms__time_slice___mode___detailed_evolution__deltaw{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__time_slice___mode___detailed_evolution__deltaw} - _parent :: WeakRef + _ref::Union{Nothing,ntms__time_slice___mode___detailed_evolution__deltaw} + _parent::WeakRef end function ntms__time_slice___mode___detailed_evolution__deltaw{T}() where T @@ -50892,7 +50892,7 @@ mutable struct ntms__time_slice___mode___detailed_evolution{T} <: IDS{T} var"calculation_method" :: String var"delta_diff" :: Matrix{<:T} var"delta_diff_σ" :: Matrix{<:T} - var"deltaw" :: IDSvector{ntms__time_slice___mode___detailed_evolution__deltaw{T}} + var"deltaw"::IDSvector{ntms__time_slice___mode___detailed_evolution__deltaw{T}} var"dfrequency_dt" :: Vector{<:T} var"dfrequency_dt_σ" :: Vector{<:T} var"dphase_dt" :: Vector{<:T} @@ -50911,15 +50911,15 @@ mutable struct ntms__time_slice___mode___detailed_evolution{T} <: IDS{T} var"rho_tor_norm_σ" :: Vector{<:T} var"time_detailed" :: Vector{<:T} var"time_detailed_σ" :: Vector{<:T} - var"torque" :: IDSvector{ntms__time_slice___mode___detailed_evolution__torque{T}} + var"torque"::IDSvector{ntms__time_slice___mode___detailed_evolution__torque{T}} var"width" :: Vector{<:T} var"width_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__time_slice___mode___detailed_evolution} - _parent :: WeakRef + _ref::Union{Nothing,ntms__time_slice___mode___detailed_evolution} + _parent::WeakRef end function ntms__time_slice___mode___detailed_evolution{T}() where T @@ -50939,8 +50939,8 @@ mutable struct ntms__time_slice___mode___deltaw{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__time_slice___mode___deltaw} - _parent :: WeakRef + _ref::Union{Nothing,ntms__time_slice___mode___deltaw} + _parent::WeakRef end function ntms__time_slice___mode___deltaw{T}() where T @@ -50954,8 +50954,8 @@ mutable struct ntms__time_slice___mode{T} <: IDSvectorStaticElement{T} var"calculation_method" :: String var"delta_diff" :: Vector{<:T} var"delta_diff_σ" :: Vector{<:T} - var"deltaw" :: IDSvector{ntms__time_slice___mode___deltaw{T}} - var"detailed_evolution" :: ntms__time_slice___mode___detailed_evolution{T} + var"deltaw"::IDSvector{ntms__time_slice___mode___deltaw{T}} + var"detailed_evolution"::ntms__time_slice___mode___detailed_evolution{T} var"dfrequency_dt" :: T var"dfrequency_dt_σ" :: T var"dphase_dt" :: T @@ -50966,22 +50966,22 @@ mutable struct ntms__time_slice___mode{T} <: IDSvectorStaticElement{T} var"frequency_σ" :: T var"m_pol" :: Int var"n_tor" :: Int - var"onset" :: ntms__time_slice___mode___onset{T} + var"onset"::ntms__time_slice___mode___onset{T} var"phase" :: T var"phase_σ" :: T var"rho_tor" :: T var"rho_tor_σ" :: T var"rho_tor_norm" :: T var"rho_tor_norm_σ" :: T - var"torque" :: IDSvector{ntms__time_slice___mode___torque{T}} + var"torque"::IDSvector{ntms__time_slice___mode___torque{T}} var"width" :: T var"width_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__time_slice___mode} - _parent :: WeakRef + _ref::Union{Nothing,ntms__time_slice___mode} + _parent::WeakRef end function ntms__time_slice___mode{T}() where T @@ -50996,14 +50996,14 @@ end ntms__time_slice___mode() = ntms__time_slice___mode{Float64}() mutable struct ntms__time_slice{T} <: IDSvectorTimeElement{T} - var"mode" :: IDSvector{ntms__time_slice___mode{T}} + var"mode"::IDSvector{ntms__time_slice___mode{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__time_slice} - _parent :: WeakRef + _ref::Union{Nothing,ntms__time_slice} + _parent::WeakRef end function ntms__time_slice{T}() where T @@ -51022,8 +51022,8 @@ mutable struct ntms__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__version_put} + _parent::WeakRef end function ntms__ids_properties__version_put{T}() where T @@ -51040,8 +51040,8 @@ mutable struct ntms__ids_properties__provenance__node{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__provenance__node} + _parent::WeakRef end function ntms__ids_properties__provenance__node{T}() where T @@ -51052,13 +51052,13 @@ end ntms__ids_properties__provenance__node() = ntms__ids_properties__provenance__node{Float64}() mutable struct ntms__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{ntms__ids_properties__provenance__node{T}} + var"node"::IDSvector{ntms__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__provenance} + _parent::WeakRef end function ntms__ids_properties__provenance{T}() where T @@ -51080,8 +51080,8 @@ mutable struct ntms__ids_properties__plugins__node___readback{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__plugins__node___readback} + _parent::WeakRef end function ntms__ids_properties__plugins__node___readback{T}() where T @@ -51102,8 +51102,8 @@ mutable struct ntms__ids_properties__plugins__node___put_operation{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function ntms__ids_properties__plugins__node___put_operation{T}() where T @@ -51124,8 +51124,8 @@ mutable struct ntms__ids_properties__plugins__node___get_operation{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function ntms__ids_properties__plugins__node___get_operation{T}() where T @@ -51136,16 +51136,16 @@ end ntms__ids_properties__plugins__node___get_operation() = ntms__ids_properties__plugins__node___get_operation{Float64}() mutable struct ntms__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{ntms__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{ntms__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{ntms__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{ntms__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{ntms__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{ntms__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__plugins__node} + _parent::WeakRef end function ntms__ids_properties__plugins__node{T}() where T @@ -51168,8 +51168,8 @@ mutable struct ntms__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function ntms__ids_properties__plugins__infrastructure_put{T}() where T @@ -51189,8 +51189,8 @@ mutable struct ntms__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function ntms__ids_properties__plugins__infrastructure_get{T}() where T @@ -51201,15 +51201,15 @@ end ntms__ids_properties__plugins__infrastructure_get() = ntms__ids_properties__plugins__infrastructure_get{Float64}() mutable struct ntms__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: ntms__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: ntms__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{ntms__ids_properties__plugins__node{T}} + var"infrastructure_get"::ntms__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::ntms__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{ntms__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__plugins} + _parent::WeakRef end function ntms__ids_properties__plugins{T}() where T @@ -51230,8 +51230,8 @@ mutable struct ntms__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties__occurrence_type} + _parent::WeakRef end function ntms__ids_properties__occurrence_type{T}() where T @@ -51247,17 +51247,17 @@ mutable struct ntms__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: ntms__ids_properties__occurrence_type{T} - var"plugins" :: ntms__ids_properties__plugins{T} - var"provenance" :: ntms__ids_properties__provenance{T} + var"occurrence_type"::ntms__ids_properties__occurrence_type{T} + var"plugins"::ntms__ids_properties__plugins{T} + var"provenance"::ntms__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: ntms__ids_properties__version_put{T} + var"version_put"::ntms__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,ntms__ids_properties} + _parent::WeakRef end function ntms__ids_properties{T}() where T @@ -51282,8 +51282,8 @@ mutable struct ntms__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__code__library} - _parent :: WeakRef + _ref::Union{Nothing,ntms__code__library} + _parent::WeakRef end function ntms__code__library{T}() where T @@ -51296,7 +51296,7 @@ ntms__code__library() = ntms__code__library{Float64}() mutable struct ntms__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{ntms__code__library{T}} + var"library"::IDSvector{ntms__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -51306,8 +51306,8 @@ mutable struct ntms__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms__code} - _parent :: WeakRef + _ref::Union{Nothing,ntms__code} + _parent::WeakRef end function ntms__code{T}() where T @@ -51319,17 +51319,17 @@ end ntms__code() = ntms__code{Float64}() mutable struct ntms{T} <: IDStop{T} - var"code" :: ntms__code{T} - var"ids_properties" :: ntms__ids_properties{T} + var"code"::ntms__code{T} + var"ids_properties"::ntms__ids_properties{T} var"time" :: Vector{Float64} - var"time_slice" :: IDSvector{ntms__time_slice{T}} - var"vacuum_toroidal_field" :: ntms__vacuum_toroidal_field{T} + var"time_slice"::IDSvector{ntms__time_slice{T}} + var"vacuum_toroidal_field"::ntms__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ntms} - _parent :: WeakRef + _ref::Union{Nothing,ntms} + _parent::WeakRef end function ntms{T}() where T @@ -51354,8 +51354,8 @@ mutable struct neutronics__time_slice___wall_loading{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__time_slice___wall_loading} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__time_slice___wall_loading} + _parent::WeakRef end function neutronics__time_slice___wall_loading{T}() where T @@ -51367,13 +51367,13 @@ neutronics__time_slice___wall_loading() = neutronics__time_slice___wall_loading{ mutable struct neutronics__time_slice{T} <: IDSvectorTimeElement{T} var"time" :: Float64 - var"wall_loading" :: neutronics__time_slice___wall_loading{T} + var"wall_loading"::neutronics__time_slice___wall_loading{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__time_slice} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__time_slice} + _parent::WeakRef end function neutronics__time_slice{T}() where T @@ -51392,8 +51392,8 @@ mutable struct neutronics__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__version_put} + _parent::WeakRef end function neutronics__ids_properties__version_put{T}() where T @@ -51410,8 +51410,8 @@ mutable struct neutronics__ids_properties__provenance__node{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__provenance__node} + _parent::WeakRef end function neutronics__ids_properties__provenance__node{T}() where T @@ -51422,13 +51422,13 @@ end neutronics__ids_properties__provenance__node() = neutronics__ids_properties__provenance__node{Float64}() mutable struct neutronics__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{neutronics__ids_properties__provenance__node{T}} + var"node"::IDSvector{neutronics__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__provenance} + _parent::WeakRef end function neutronics__ids_properties__provenance{T}() where T @@ -51450,8 +51450,8 @@ mutable struct neutronics__ids_properties__plugins__node___readback{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__plugins__node___readback} + _parent::WeakRef end function neutronics__ids_properties__plugins__node___readback{T}() where T @@ -51472,8 +51472,8 @@ mutable struct neutronics__ids_properties__plugins__node___put_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function neutronics__ids_properties__plugins__node___put_operation{T}() where T @@ -51494,8 +51494,8 @@ mutable struct neutronics__ids_properties__plugins__node___get_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function neutronics__ids_properties__plugins__node___get_operation{T}() where T @@ -51506,16 +51506,16 @@ end neutronics__ids_properties__plugins__node___get_operation() = neutronics__ids_properties__plugins__node___get_operation{Float64}() mutable struct neutronics__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{neutronics__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{neutronics__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{neutronics__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{neutronics__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{neutronics__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{neutronics__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__plugins__node} + _parent::WeakRef end function neutronics__ids_properties__plugins__node{T}() where T @@ -51538,8 +51538,8 @@ mutable struct neutronics__ids_properties__plugins__infrastructure_put{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function neutronics__ids_properties__plugins__infrastructure_put{T}() where T @@ -51559,8 +51559,8 @@ mutable struct neutronics__ids_properties__plugins__infrastructure_get{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function neutronics__ids_properties__plugins__infrastructure_get{T}() where T @@ -51571,15 +51571,15 @@ end neutronics__ids_properties__plugins__infrastructure_get() = neutronics__ids_properties__plugins__infrastructure_get{Float64}() mutable struct neutronics__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: neutronics__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: neutronics__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{neutronics__ids_properties__plugins__node{T}} + var"infrastructure_get"::neutronics__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::neutronics__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{neutronics__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__plugins} + _parent::WeakRef end function neutronics__ids_properties__plugins{T}() where T @@ -51600,8 +51600,8 @@ mutable struct neutronics__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties__occurrence_type} + _parent::WeakRef end function neutronics__ids_properties__occurrence_type{T}() where T @@ -51617,17 +51617,17 @@ mutable struct neutronics__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: neutronics__ids_properties__occurrence_type{T} - var"plugins" :: neutronics__ids_properties__plugins{T} - var"provenance" :: neutronics__ids_properties__provenance{T} + var"occurrence_type"::neutronics__ids_properties__occurrence_type{T} + var"plugins"::neutronics__ids_properties__plugins{T} + var"provenance"::neutronics__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: neutronics__ids_properties__version_put{T} + var"version_put"::neutronics__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__ids_properties} + _parent::WeakRef end function neutronics__ids_properties{T}() where T @@ -51650,8 +51650,8 @@ mutable struct neutronics__first_wall{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__first_wall} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__first_wall} + _parent::WeakRef end function neutronics__first_wall{T}() where T @@ -51672,8 +51672,8 @@ mutable struct neutronics__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__code__library} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__code__library} + _parent::WeakRef end function neutronics__code__library{T}() where T @@ -51686,7 +51686,7 @@ neutronics__code__library() = neutronics__code__library{Float64}() mutable struct neutronics__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{neutronics__code__library{T}} + var"library"::IDSvector{neutronics__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -51696,8 +51696,8 @@ mutable struct neutronics__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics__code} - _parent :: WeakRef + _ref::Union{Nothing,neutronics__code} + _parent::WeakRef end function neutronics__code{T}() where T @@ -51709,17 +51709,17 @@ end neutronics__code() = neutronics__code{Float64}() mutable struct neutronics{T} <: IDStop{T} - var"code" :: neutronics__code{T} - var"first_wall" :: neutronics__first_wall{T} - var"ids_properties" :: neutronics__ids_properties{T} + var"code"::neutronics__code{T} + var"first_wall"::neutronics__first_wall{T} + var"ids_properties"::neutronics__ids_properties{T} var"time" :: Vector{Float64} - var"time_slice" :: IDSvector{neutronics__time_slice{T}} + var"time_slice"::IDSvector{neutronics__time_slice{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutronics} - _parent :: WeakRef + _ref::Union{Nothing,neutronics} + _parent::WeakRef end function neutronics{T}() where T @@ -51741,8 +51741,8 @@ mutable struct neutron_diagnostic__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__version_put} + _parent::WeakRef end function neutron_diagnostic__ids_properties__version_put{T}() where T @@ -51759,8 +51759,8 @@ mutable struct neutron_diagnostic__ids_properties__provenance__node{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__provenance__node} + _parent::WeakRef end function neutron_diagnostic__ids_properties__provenance__node{T}() where T @@ -51771,13 +51771,13 @@ end neutron_diagnostic__ids_properties__provenance__node() = neutron_diagnostic__ids_properties__provenance__node{Float64}() mutable struct neutron_diagnostic__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{neutron_diagnostic__ids_properties__provenance__node{T}} + var"node"::IDSvector{neutron_diagnostic__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__provenance} + _parent::WeakRef end function neutron_diagnostic__ids_properties__provenance{T}() where T @@ -51799,8 +51799,8 @@ mutable struct neutron_diagnostic__ids_properties__plugins__node___readback{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__plugins__node___readback} + _parent::WeakRef end function neutron_diagnostic__ids_properties__plugins__node___readback{T}() where T @@ -51821,8 +51821,8 @@ mutable struct neutron_diagnostic__ids_properties__plugins__node___put_operation _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function neutron_diagnostic__ids_properties__plugins__node___put_operation{T}() where T @@ -51843,8 +51843,8 @@ mutable struct neutron_diagnostic__ids_properties__plugins__node___get_operation _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function neutron_diagnostic__ids_properties__plugins__node___get_operation{T}() where T @@ -51855,16 +51855,16 @@ end neutron_diagnostic__ids_properties__plugins__node___get_operation() = neutron_diagnostic__ids_properties__plugins__node___get_operation{Float64}() mutable struct neutron_diagnostic__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{neutron_diagnostic__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{neutron_diagnostic__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{neutron_diagnostic__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{neutron_diagnostic__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{neutron_diagnostic__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{neutron_diagnostic__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__plugins__node} + _parent::WeakRef end function neutron_diagnostic__ids_properties__plugins__node{T}() where T @@ -51887,8 +51887,8 @@ mutable struct neutron_diagnostic__ids_properties__plugins__infrastructure_put{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function neutron_diagnostic__ids_properties__plugins__infrastructure_put{T}() where T @@ -51908,8 +51908,8 @@ mutable struct neutron_diagnostic__ids_properties__plugins__infrastructure_get{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function neutron_diagnostic__ids_properties__plugins__infrastructure_get{T}() where T @@ -51920,15 +51920,15 @@ end neutron_diagnostic__ids_properties__plugins__infrastructure_get() = neutron_diagnostic__ids_properties__plugins__infrastructure_get{Float64}() mutable struct neutron_diagnostic__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: neutron_diagnostic__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: neutron_diagnostic__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{neutron_diagnostic__ids_properties__plugins__node{T}} + var"infrastructure_get"::neutron_diagnostic__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::neutron_diagnostic__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{neutron_diagnostic__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__plugins} + _parent::WeakRef end function neutron_diagnostic__ids_properties__plugins{T}() where T @@ -51949,8 +51949,8 @@ mutable struct neutron_diagnostic__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties__occurrence_type} + _parent::WeakRef end function neutron_diagnostic__ids_properties__occurrence_type{T}() where T @@ -51966,17 +51966,17 @@ mutable struct neutron_diagnostic__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: neutron_diagnostic__ids_properties__occurrence_type{T} - var"plugins" :: neutron_diagnostic__ids_properties__plugins{T} - var"provenance" :: neutron_diagnostic__ids_properties__provenance{T} + var"occurrence_type"::neutron_diagnostic__ids_properties__occurrence_type{T} + var"plugins"::neutron_diagnostic__ids_properties__plugins{T} + var"provenance"::neutron_diagnostic__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: neutron_diagnostic__ids_properties__version_put{T} + var"version_put"::neutron_diagnostic__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__ids_properties} + _parent::WeakRef end function neutron_diagnostic__ids_properties{T}() where T @@ -51998,8 +51998,8 @@ mutable struct neutron_diagnostic__detector___test_generator__shape{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___test_generator__shape} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___test_generator__shape} + _parent::WeakRef end function neutron_diagnostic__detector___test_generator__shape{T}() where T @@ -52017,8 +52017,8 @@ mutable struct neutron_diagnostic__detector___test_generator__frequency{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___test_generator__frequency} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___test_generator__frequency} + _parent::WeakRef end function neutron_diagnostic__detector___test_generator__frequency{T}() where T @@ -52036,8 +52036,8 @@ mutable struct neutron_diagnostic__detector___test_generator__amplitude{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___test_generator__amplitude} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___test_generator__amplitude} + _parent::WeakRef end function neutron_diagnostic__detector___test_generator__amplitude{T}() where T @@ -52048,20 +52048,20 @@ end neutron_diagnostic__detector___test_generator__amplitude() = neutron_diagnostic__detector___test_generator__amplitude{Float64}() mutable struct neutron_diagnostic__detector___test_generator{T} <: IDS{T} - var"amplitude" :: neutron_diagnostic__detector___test_generator__amplitude{T} + var"amplitude"::neutron_diagnostic__detector___test_generator__amplitude{T} var"fall_time" :: T var"fall_time_σ" :: T - var"frequency" :: neutron_diagnostic__detector___test_generator__frequency{T} + var"frequency"::neutron_diagnostic__detector___test_generator__frequency{T} var"power_switch" :: Int var"rise_time" :: T var"rise_time_σ" :: T - var"shape" :: neutron_diagnostic__detector___test_generator__shape{T} + var"shape"::neutron_diagnostic__detector___test_generator__shape{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___test_generator} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___test_generator} + _parent::WeakRef end function neutron_diagnostic__detector___test_generator{T}() where T @@ -52082,8 +52082,8 @@ mutable struct neutron_diagnostic__detector___temperature_sensor__shape{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___temperature_sensor__shape} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___temperature_sensor__shape} + _parent::WeakRef end function neutron_diagnostic__detector___temperature_sensor__shape{T}() where T @@ -52101,8 +52101,8 @@ mutable struct neutron_diagnostic__detector___temperature_sensor__frequency{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___temperature_sensor__frequency} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___temperature_sensor__frequency} + _parent::WeakRef end function neutron_diagnostic__detector___temperature_sensor__frequency{T}() where T @@ -52120,8 +52120,8 @@ mutable struct neutron_diagnostic__detector___temperature_sensor__amplitude{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___temperature_sensor__amplitude} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___temperature_sensor__amplitude} + _parent::WeakRef end function neutron_diagnostic__detector___temperature_sensor__amplitude{T}() where T @@ -52132,20 +52132,20 @@ end neutron_diagnostic__detector___temperature_sensor__amplitude() = neutron_diagnostic__detector___temperature_sensor__amplitude{Float64}() mutable struct neutron_diagnostic__detector___temperature_sensor{T} <: IDS{T} - var"amplitude" :: neutron_diagnostic__detector___temperature_sensor__amplitude{T} + var"amplitude"::neutron_diagnostic__detector___temperature_sensor__amplitude{T} var"fall_time" :: T var"fall_time_σ" :: T - var"frequency" :: neutron_diagnostic__detector___temperature_sensor__frequency{T} + var"frequency"::neutron_diagnostic__detector___temperature_sensor__frequency{T} var"power_switch" :: Int var"rise_time" :: T var"rise_time_σ" :: T - var"shape" :: neutron_diagnostic__detector___temperature_sensor__shape{T} + var"shape"::neutron_diagnostic__detector___temperature_sensor__shape{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___temperature_sensor} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___temperature_sensor} + _parent::WeakRef end function neutron_diagnostic__detector___temperature_sensor{T}() where T @@ -52166,8 +52166,8 @@ mutable struct neutron_diagnostic__detector___supply_low_voltage__voltage_set{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___supply_low_voltage__voltage_set} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___supply_low_voltage__voltage_set} + _parent::WeakRef end function neutron_diagnostic__detector___supply_low_voltage__voltage_set{T}() where T @@ -52185,8 +52185,8 @@ mutable struct neutron_diagnostic__detector___supply_low_voltage__voltage_out{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___supply_low_voltage__voltage_out} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___supply_low_voltage__voltage_out} + _parent::WeakRef end function neutron_diagnostic__detector___supply_low_voltage__voltage_out{T}() where T @@ -52198,14 +52198,14 @@ neutron_diagnostic__detector___supply_low_voltage__voltage_out() = neutron_diagn mutable struct neutron_diagnostic__detector___supply_low_voltage{T} <: IDS{T} var"power_switch" :: Int - var"voltage_out" :: neutron_diagnostic__detector___supply_low_voltage__voltage_out{T} - var"voltage_set" :: neutron_diagnostic__detector___supply_low_voltage__voltage_set{T} + var"voltage_out"::neutron_diagnostic__detector___supply_low_voltage__voltage_out{T} + var"voltage_set"::neutron_diagnostic__detector___supply_low_voltage__voltage_set{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___supply_low_voltage} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___supply_low_voltage} + _parent::WeakRef end function neutron_diagnostic__detector___supply_low_voltage{T}() where T @@ -52225,8 +52225,8 @@ mutable struct neutron_diagnostic__detector___supply_high_voltage__voltage_set{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___supply_high_voltage__voltage_set} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___supply_high_voltage__voltage_set} + _parent::WeakRef end function neutron_diagnostic__detector___supply_high_voltage__voltage_set{T}() where T @@ -52244,8 +52244,8 @@ mutable struct neutron_diagnostic__detector___supply_high_voltage__voltage_out{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___supply_high_voltage__voltage_out} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___supply_high_voltage__voltage_out} + _parent::WeakRef end function neutron_diagnostic__detector___supply_high_voltage__voltage_out{T}() where T @@ -52257,14 +52257,14 @@ neutron_diagnostic__detector___supply_high_voltage__voltage_out() = neutron_diag mutable struct neutron_diagnostic__detector___supply_high_voltage{T} <: IDS{T} var"power_switch" :: Int - var"voltage_out" :: neutron_diagnostic__detector___supply_high_voltage__voltage_out{T} - var"voltage_set" :: neutron_diagnostic__detector___supply_high_voltage__voltage_set{T} + var"voltage_out"::neutron_diagnostic__detector___supply_high_voltage__voltage_out{T} + var"voltage_set"::neutron_diagnostic__detector___supply_high_voltage__voltage_set{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___supply_high_voltage} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___supply_high_voltage} + _parent::WeakRef end function neutron_diagnostic__detector___supply_high_voltage{T}() where T @@ -52284,8 +52284,8 @@ mutable struct neutron_diagnostic__detector___mode___spectrum{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___mode___spectrum} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___mode___spectrum} + _parent::WeakRef end function neutron_diagnostic__detector___mode___spectrum{T}() where T @@ -52303,8 +52303,8 @@ mutable struct neutron_diagnostic__detector___mode___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___mode___identifier} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___mode___identifier} + _parent::WeakRef end function neutron_diagnostic__detector___mode___identifier{T}() where T @@ -52322,8 +52322,8 @@ mutable struct neutron_diagnostic__detector___mode___counting{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___mode___counting} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___mode___counting} + _parent::WeakRef end function neutron_diagnostic__detector___mode___counting{T}() where T @@ -52338,15 +52338,15 @@ mutable struct neutron_diagnostic__detector___mode{T} <: IDSvectorStaticElement{ var"count_limit_max_σ" :: T var"count_limit_min" :: T var"count_limit_min_σ" :: T - var"counting" :: neutron_diagnostic__detector___mode___counting{T} - var"identifier" :: neutron_diagnostic__detector___mode___identifier{T} - var"spectrum" :: neutron_diagnostic__detector___mode___spectrum{T} + var"counting"::neutron_diagnostic__detector___mode___counting{T} + var"identifier"::neutron_diagnostic__detector___mode___identifier{T} + var"spectrum"::neutron_diagnostic__detector___mode___spectrum{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___mode} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___mode} + _parent::WeakRef end function neutron_diagnostic__detector___mode{T}() where T @@ -52367,8 +52367,8 @@ mutable struct neutron_diagnostic__detector___material{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___material} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___material} + _parent::WeakRef end function neutron_diagnostic__detector___material{T}() where T @@ -52386,8 +52386,8 @@ mutable struct neutron_diagnostic__detector___green_functions__event_in_detector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___green_functions__event_in_detector_response_function__type} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___green_functions__event_in_detector_response_function__type} + _parent::WeakRef end function neutron_diagnostic__detector___green_functions__event_in_detector_response_function__type{T}() where T @@ -52398,15 +52398,15 @@ end neutron_diagnostic__detector___green_functions__event_in_detector_response_function__type() = neutron_diagnostic__detector___green_functions__event_in_detector_response_function__type{Float64}() mutable struct neutron_diagnostic__detector___green_functions__event_in_detector_response_function{T} <: IDS{T} - var"type" :: neutron_diagnostic__detector___green_functions__event_in_detector_response_function__type{T} + var"type"::neutron_diagnostic__detector___green_functions__event_in_detector_response_function__type{T} var"values" :: Vector{<:T} var"values_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___green_functions__event_in_detector_response_function} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___green_functions__event_in_detector_response_function} + _parent::WeakRef end function neutron_diagnostic__detector___green_functions__event_in_detector_response_function{T}() where T @@ -52425,8 +52425,8 @@ mutable struct neutron_diagnostic__detector___green_functions__event_in_detector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux__type} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux__type} + _parent::WeakRef end function neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux__type{T}() where T @@ -52437,15 +52437,15 @@ end neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux__type() = neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux__type{Float64}() mutable struct neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux{T} <: IDS{T} - var"type" :: neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux__type{T} + var"type"::neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux__type{T} var"values" :: Vector{<:T} var"values_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux} + _parent::WeakRef end function neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux{T}() where T @@ -52457,8 +52457,8 @@ end neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux() = neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux{Float64}() mutable struct neutron_diagnostic__detector___green_functions{T} <: IDS{T} - var"event_in_detector_neutron_flux" :: neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux{T} - var"event_in_detector_response_function" :: neutron_diagnostic__detector___green_functions__event_in_detector_response_function{T} + var"event_in_detector_neutron_flux"::neutron_diagnostic__detector___green_functions__event_in_detector_neutron_flux{T} + var"event_in_detector_response_function"::neutron_diagnostic__detector___green_functions__event_in_detector_response_function{T} var"neutron_flux" :: Array{<:T, 5} var"neutron_flux_σ" :: Array{<:T, 5} var"neutron_flux_integrated_flags" :: Vector{Int} @@ -52471,8 +52471,8 @@ mutable struct neutron_diagnostic__detector___green_functions{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___green_functions} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___green_functions} + _parent::WeakRef end function neutron_diagnostic__detector___green_functions{T}() where T @@ -52495,8 +52495,8 @@ mutable struct neutron_diagnostic__detector___geometry__x3_unit_vector{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___geometry__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___geometry__x3_unit_vector} + _parent::WeakRef end function neutron_diagnostic__detector___geometry__x3_unit_vector{T}() where T @@ -52517,8 +52517,8 @@ mutable struct neutron_diagnostic__detector___geometry__x2_unit_vector{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___geometry__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___geometry__x2_unit_vector} + _parent::WeakRef end function neutron_diagnostic__detector___geometry__x2_unit_vector{T}() where T @@ -52539,8 +52539,8 @@ mutable struct neutron_diagnostic__detector___geometry__x1_unit_vector{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___geometry__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___geometry__x1_unit_vector} + _parent::WeakRef end function neutron_diagnostic__detector___geometry__x1_unit_vector{T}() where T @@ -52559,8 +52559,8 @@ mutable struct neutron_diagnostic__detector___geometry__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___geometry__outline} + _parent::WeakRef end function neutron_diagnostic__detector___geometry__outline{T}() where T @@ -52581,8 +52581,8 @@ mutable struct neutron_diagnostic__detector___geometry__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___geometry__centre} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___geometry__centre} + _parent::WeakRef end function neutron_diagnostic__detector___geometry__centre{T}() where T @@ -52593,26 +52593,26 @@ end neutron_diagnostic__detector___geometry__centre() = neutron_diagnostic__detector___geometry__centre{Float64}() mutable struct neutron_diagnostic__detector___geometry{T} <: IDS{T} - var"centre" :: neutron_diagnostic__detector___geometry__centre{T} + var"centre"::neutron_diagnostic__detector___geometry__centre{T} var"geometry_type" :: Int - var"outline" :: neutron_diagnostic__detector___geometry__outline{T} + var"outline"::neutron_diagnostic__detector___geometry__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: neutron_diagnostic__detector___geometry__x1_unit_vector{T} + var"x1_unit_vector"::neutron_diagnostic__detector___geometry__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: neutron_diagnostic__detector___geometry__x2_unit_vector{T} + var"x2_unit_vector"::neutron_diagnostic__detector___geometry__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: neutron_diagnostic__detector___geometry__x3_unit_vector{T} + var"x3_unit_vector"::neutron_diagnostic__detector___geometry__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___geometry} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___geometry} + _parent::WeakRef end function neutron_diagnostic__detector___geometry{T}() where T @@ -52638,8 +52638,8 @@ mutable struct neutron_diagnostic__detector___field_of_view__emission_grid{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___field_of_view__emission_grid} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___field_of_view__emission_grid} + _parent::WeakRef end function neutron_diagnostic__detector___field_of_view__emission_grid{T}() where T @@ -52660,8 +52660,8 @@ mutable struct neutron_diagnostic__detector___field_of_view__direction_to_detect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___field_of_view__direction_to_detector} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___field_of_view__direction_to_detector} + _parent::WeakRef end function neutron_diagnostic__detector___field_of_view__direction_to_detector{T}() where T @@ -52672,16 +52672,16 @@ end neutron_diagnostic__detector___field_of_view__direction_to_detector() = neutron_diagnostic__detector___field_of_view__direction_to_detector{Float64}() mutable struct neutron_diagnostic__detector___field_of_view{T} <: IDS{T} - var"direction_to_detector" :: neutron_diagnostic__detector___field_of_view__direction_to_detector{T} - var"emission_grid" :: neutron_diagnostic__detector___field_of_view__emission_grid{T} + var"direction_to_detector"::neutron_diagnostic__detector___field_of_view__direction_to_detector{T} + var"emission_grid"::neutron_diagnostic__detector___field_of_view__emission_grid{T} var"solid_angle" :: Array{<:T, 3} var"solid_angle_σ" :: Array{<:T, 3} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___field_of_view} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___field_of_view} + _parent::WeakRef end function neutron_diagnostic__detector___field_of_view{T}() where T @@ -52706,8 +52706,8 @@ mutable struct neutron_diagnostic__detector___energy_band{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___energy_band} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___energy_band} + _parent::WeakRef end function neutron_diagnostic__detector___energy_band{T}() where T @@ -52725,8 +52725,8 @@ mutable struct neutron_diagnostic__detector___b_field_sensor__shape{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___b_field_sensor__shape} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___b_field_sensor__shape} + _parent::WeakRef end function neutron_diagnostic__detector___b_field_sensor__shape{T}() where T @@ -52744,8 +52744,8 @@ mutable struct neutron_diagnostic__detector___b_field_sensor__frequency{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___b_field_sensor__frequency} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___b_field_sensor__frequency} + _parent::WeakRef end function neutron_diagnostic__detector___b_field_sensor__frequency{T}() where T @@ -52763,8 +52763,8 @@ mutable struct neutron_diagnostic__detector___b_field_sensor__amplitude{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___b_field_sensor__amplitude} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___b_field_sensor__amplitude} + _parent::WeakRef end function neutron_diagnostic__detector___b_field_sensor__amplitude{T}() where T @@ -52775,20 +52775,20 @@ end neutron_diagnostic__detector___b_field_sensor__amplitude() = neutron_diagnostic__detector___b_field_sensor__amplitude{Float64}() mutable struct neutron_diagnostic__detector___b_field_sensor{T} <: IDS{T} - var"amplitude" :: neutron_diagnostic__detector___b_field_sensor__amplitude{T} + var"amplitude"::neutron_diagnostic__detector___b_field_sensor__amplitude{T} var"fall_time" :: T var"fall_time_σ" :: T - var"frequency" :: neutron_diagnostic__detector___b_field_sensor__frequency{T} + var"frequency"::neutron_diagnostic__detector___b_field_sensor__frequency{T} var"power_switch" :: Int var"rise_time" :: T var"rise_time_σ" :: T - var"shape" :: neutron_diagnostic__detector___b_field_sensor__shape{T} + var"shape"::neutron_diagnostic__detector___b_field_sensor__shape{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___b_field_sensor} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___b_field_sensor} + _parent::WeakRef end function neutron_diagnostic__detector___b_field_sensor{T}() where T @@ -52812,8 +52812,8 @@ mutable struct neutron_diagnostic__detector___aperture___x3_unit_vector{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___aperture___x3_unit_vector} + _parent::WeakRef end function neutron_diagnostic__detector___aperture___x3_unit_vector{T}() where T @@ -52834,8 +52834,8 @@ mutable struct neutron_diagnostic__detector___aperture___x2_unit_vector{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___aperture___x2_unit_vector} + _parent::WeakRef end function neutron_diagnostic__detector___aperture___x2_unit_vector{T}() where T @@ -52856,8 +52856,8 @@ mutable struct neutron_diagnostic__detector___aperture___x1_unit_vector{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___aperture___x1_unit_vector} + _parent::WeakRef end function neutron_diagnostic__detector___aperture___x1_unit_vector{T}() where T @@ -52876,8 +52876,8 @@ mutable struct neutron_diagnostic__detector___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___aperture___outline} + _parent::WeakRef end function neutron_diagnostic__detector___aperture___outline{T}() where T @@ -52898,8 +52898,8 @@ mutable struct neutron_diagnostic__detector___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___aperture___centre} + _parent::WeakRef end function neutron_diagnostic__detector___aperture___centre{T}() where T @@ -52910,26 +52910,26 @@ end neutron_diagnostic__detector___aperture___centre() = neutron_diagnostic__detector___aperture___centre{Float64}() mutable struct neutron_diagnostic__detector___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: neutron_diagnostic__detector___aperture___centre{T} + var"centre"::neutron_diagnostic__detector___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: neutron_diagnostic__detector___aperture___outline{T} + var"outline"::neutron_diagnostic__detector___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: neutron_diagnostic__detector___aperture___x1_unit_vector{T} + var"x1_unit_vector"::neutron_diagnostic__detector___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: neutron_diagnostic__detector___aperture___x2_unit_vector{T} + var"x2_unit_vector"::neutron_diagnostic__detector___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: neutron_diagnostic__detector___aperture___x3_unit_vector{T} + var"x3_unit_vector"::neutron_diagnostic__detector___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___aperture} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___aperture} + _parent::WeakRef end function neutron_diagnostic__detector___aperture{T}() where T @@ -52959,8 +52959,8 @@ mutable struct neutron_diagnostic__detector___adc{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector___adc} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector___adc} + _parent::WeakRef end function neutron_diagnostic__detector___adc{T}() where T @@ -52971,31 +52971,31 @@ end neutron_diagnostic__detector___adc() = neutron_diagnostic__detector___adc{Float64}() mutable struct neutron_diagnostic__detector{T} <: IDSvectorStaticElement{T} - var"adc" :: neutron_diagnostic__detector___adc{T} - var"aperture" :: IDSvector{neutron_diagnostic__detector___aperture{T}} - var"b_field_sensor" :: neutron_diagnostic__detector___b_field_sensor{T} - var"energy_band" :: IDSvector{neutron_diagnostic__detector___energy_band{T}} + var"adc"::neutron_diagnostic__detector___adc{T} + var"aperture"::IDSvector{neutron_diagnostic__detector___aperture{T}} + var"b_field_sensor"::neutron_diagnostic__detector___b_field_sensor{T} + var"energy_band"::IDSvector{neutron_diagnostic__detector___energy_band{T}} var"exposure_time" :: T var"exposure_time_σ" :: T - var"field_of_view" :: neutron_diagnostic__detector___field_of_view{T} - var"geometry" :: neutron_diagnostic__detector___geometry{T} - var"green_functions" :: neutron_diagnostic__detector___green_functions{T} - var"material" :: neutron_diagnostic__detector___material{T} - var"mode" :: IDSvector{neutron_diagnostic__detector___mode{T}} + var"field_of_view"::neutron_diagnostic__detector___field_of_view{T} + var"geometry"::neutron_diagnostic__detector___geometry{T} + var"green_functions"::neutron_diagnostic__detector___green_functions{T} + var"material"::neutron_diagnostic__detector___material{T} + var"mode"::IDSvector{neutron_diagnostic__detector___mode{T}} var"name" :: String var"nuclei_n" :: Int - var"supply_high_voltage" :: neutron_diagnostic__detector___supply_high_voltage{T} - var"supply_low_voltage" :: neutron_diagnostic__detector___supply_low_voltage{T} + var"supply_high_voltage"::neutron_diagnostic__detector___supply_high_voltage{T} + var"supply_low_voltage"::neutron_diagnostic__detector___supply_low_voltage{T} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} - var"temperature_sensor" :: neutron_diagnostic__detector___temperature_sensor{T} - var"test_generator" :: neutron_diagnostic__detector___test_generator{T} + var"temperature_sensor"::neutron_diagnostic__detector___temperature_sensor{T} + var"test_generator"::neutron_diagnostic__detector___test_generator{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__detector} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__detector} + _parent::WeakRef end function neutron_diagnostic__detector{T}() where T @@ -53029,8 +53029,8 @@ mutable struct neutron_diagnostic__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__code__library} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__code__library} + _parent::WeakRef end function neutron_diagnostic__code__library{T}() where T @@ -53043,7 +53043,7 @@ neutron_diagnostic__code__library() = neutron_diagnostic__code__library{Float64} mutable struct neutron_diagnostic__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{neutron_diagnostic__code__library{T}} + var"library"::IDSvector{neutron_diagnostic__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -53053,8 +53053,8 @@ mutable struct neutron_diagnostic__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic__code} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic__code} + _parent::WeakRef end function neutron_diagnostic__code{T}() where T @@ -53066,11 +53066,11 @@ end neutron_diagnostic__code() = neutron_diagnostic__code{Float64}() mutable struct neutron_diagnostic{T} <: IDStop{T} - var"code" :: neutron_diagnostic__code{T} - var"detector" :: IDSvector{neutron_diagnostic__detector{T}} + var"code"::neutron_diagnostic__code{T} + var"detector"::IDSvector{neutron_diagnostic__detector{T}} var"fusion_power" :: Vector{<:T} var"fusion_power_σ" :: Vector{<:T} - var"ids_properties" :: neutron_diagnostic__ids_properties{T} + var"ids_properties"::neutron_diagnostic__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"neutron_flux_total" :: Vector{<:T} @@ -53080,8 +53080,8 @@ mutable struct neutron_diagnostic{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,neutron_diagnostic} - _parent :: WeakRef + _ref::Union{Nothing,neutron_diagnostic} + _parent::WeakRef end function neutron_diagnostic{T}() where T @@ -53104,8 +53104,8 @@ mutable struct nbi__unit___species{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___species} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___species} + _parent::WeakRef end function nbi__unit___species{T}() where T @@ -53126,8 +53126,8 @@ mutable struct nbi__unit___source__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___source__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___source__x3_unit_vector} + _parent::WeakRef end function nbi__unit___source__x3_unit_vector{T}() where T @@ -53148,8 +53148,8 @@ mutable struct nbi__unit___source__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___source__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___source__x2_unit_vector} + _parent::WeakRef end function nbi__unit___source__x2_unit_vector{T}() where T @@ -53170,8 +53170,8 @@ mutable struct nbi__unit___source__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___source__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___source__x1_unit_vector} + _parent::WeakRef end function nbi__unit___source__x1_unit_vector{T}() where T @@ -53190,8 +53190,8 @@ mutable struct nbi__unit___source__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___source__outline} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___source__outline} + _parent::WeakRef end function nbi__unit___source__outline{T}() where T @@ -53212,8 +53212,8 @@ mutable struct nbi__unit___source__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___source__centre} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___source__centre} + _parent::WeakRef end function nbi__unit___source__centre{T}() where T @@ -53224,26 +53224,26 @@ end nbi__unit___source__centre() = nbi__unit___source__centre{Float64}() mutable struct nbi__unit___source{T} <: IDS{T} - var"centre" :: nbi__unit___source__centre{T} + var"centre"::nbi__unit___source__centre{T} var"geometry_type" :: Int - var"outline" :: nbi__unit___source__outline{T} + var"outline"::nbi__unit___source__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: nbi__unit___source__x1_unit_vector{T} + var"x1_unit_vector"::nbi__unit___source__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: nbi__unit___source__x2_unit_vector{T} + var"x2_unit_vector"::nbi__unit___source__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: nbi__unit___source__x3_unit_vector{T} + var"x3_unit_vector"::nbi__unit___source__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___source} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___source} + _parent::WeakRef end function nbi__unit___source{T}() where T @@ -53266,8 +53266,8 @@ mutable struct nbi__unit___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___power_launched} + _parent::WeakRef end function nbi__unit___power_launched{T}() where T @@ -53285,8 +53285,8 @@ mutable struct nbi__unit___energy{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___energy} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___energy} + _parent::WeakRef end function nbi__unit___energy{T}() where T @@ -53305,8 +53305,8 @@ mutable struct nbi__unit___efficiency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___efficiency} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___efficiency} + _parent::WeakRef end function nbi__unit___efficiency{T}() where T @@ -53327,8 +53327,8 @@ mutable struct nbi__unit___beamlets_group___tilting___delta_position{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beamlets_group___tilting___delta_position} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beamlets_group___tilting___delta_position} + _parent::WeakRef end function nbi__unit___beamlets_group___tilting___delta_position{T}() where T @@ -53341,7 +53341,7 @@ nbi__unit___beamlets_group___tilting___delta_position() = nbi__unit___beamlets_g mutable struct nbi__unit___beamlets_group___tilting{T} <: IDSvectorTimeElement{T} var"delta_angle" :: T var"delta_angle_σ" :: T - var"delta_position" :: nbi__unit___beamlets_group___tilting___delta_position{T} + var"delta_position"::nbi__unit___beamlets_group___tilting___delta_position{T} var"delta_tangency_radius" :: T var"delta_tangency_radius_σ" :: T var"time" :: Float64 @@ -53349,8 +53349,8 @@ mutable struct nbi__unit___beamlets_group___tilting{T} <: IDSvectorTimeElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beamlets_group___tilting} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beamlets_group___tilting} + _parent::WeakRef end function nbi__unit___beamlets_group___tilting{T}() where T @@ -53372,8 +53372,8 @@ mutable struct nbi__unit___beamlets_group___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beamlets_group___position} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beamlets_group___position} + _parent::WeakRef end function nbi__unit___beamlets_group___position{T}() where T @@ -53396,8 +53396,8 @@ mutable struct nbi__unit___beamlets_group___focus{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beamlets_group___focus} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beamlets_group___focus} + _parent::WeakRef end function nbi__unit___beamlets_group___focus{T}() where T @@ -53418,8 +53418,8 @@ mutable struct nbi__unit___beamlets_group___divergence_component{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beamlets_group___divergence_component} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beamlets_group___divergence_component} + _parent::WeakRef end function nbi__unit___beamlets_group___divergence_component{T}() where T @@ -53440,8 +53440,8 @@ mutable struct nbi__unit___beamlets_group___beamlets__positions{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beamlets_group___beamlets__positions} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beamlets_group___beamlets__positions} + _parent::WeakRef end function nbi__unit___beamlets_group___beamlets__positions{T}() where T @@ -53454,7 +53454,7 @@ nbi__unit___beamlets_group___beamlets__positions() = nbi__unit___beamlets_group_ mutable struct nbi__unit___beamlets_group___beamlets{T} <: IDS{T} var"angles" :: Vector{<:T} var"angles_σ" :: Vector{<:T} - var"positions" :: nbi__unit___beamlets_group___beamlets__positions{T} + var"positions"::nbi__unit___beamlets_group___beamlets__positions{T} var"power_fractions" :: Vector{<:T} var"power_fractions_σ" :: Vector{<:T} var"tangency_radii" :: Vector{<:T} @@ -53463,8 +53463,8 @@ mutable struct nbi__unit___beamlets_group___beamlets{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beamlets_group___beamlets} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beamlets_group___beamlets} + _parent::WeakRef end function nbi__unit___beamlets_group___beamlets{T}() where T @@ -53478,14 +53478,14 @@ nbi__unit___beamlets_group___beamlets() = nbi__unit___beamlets_group___beamlets{ mutable struct nbi__unit___beamlets_group{T} <: IDSvectorStaticElement{T} var"angle" :: T var"angle_σ" :: T - var"beamlets" :: nbi__unit___beamlets_group___beamlets{T} + var"beamlets"::nbi__unit___beamlets_group___beamlets{T} var"direction" :: Int - var"divergence_component" :: IDSvector{nbi__unit___beamlets_group___divergence_component{T}} - var"focus" :: nbi__unit___beamlets_group___focus{T} - var"position" :: nbi__unit___beamlets_group___position{T} + var"divergence_component"::IDSvector{nbi__unit___beamlets_group___divergence_component{T}} + var"focus"::nbi__unit___beamlets_group___focus{T} + var"position"::nbi__unit___beamlets_group___position{T} var"tangency_radius" :: T var"tangency_radius_σ" :: T - var"tilting" :: IDSvector{nbi__unit___beamlets_group___tilting{T}} + var"tilting"::IDSvector{nbi__unit___beamlets_group___tilting{T}} var"width_horizontal" :: T var"width_horizontal_σ" :: T var"width_vertical" :: T @@ -53494,8 +53494,8 @@ mutable struct nbi__unit___beamlets_group{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beamlets_group} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beamlets_group} + _parent::WeakRef end function nbi__unit___beamlets_group{T}() where T @@ -53518,8 +53518,8 @@ mutable struct nbi__unit___beam_power_fraction{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beam_power_fraction} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beam_power_fraction} + _parent::WeakRef end function nbi__unit___beam_power_fraction{T}() where T @@ -53537,8 +53537,8 @@ mutable struct nbi__unit___beam_current_fraction{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___beam_current_fraction} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___beam_current_fraction} + _parent::WeakRef end function nbi__unit___beam_current_fraction{T}() where T @@ -53559,8 +53559,8 @@ mutable struct nbi__unit___aperture___x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___aperture___x3_unit_vector} + _parent::WeakRef end function nbi__unit___aperture___x3_unit_vector{T}() where T @@ -53581,8 +53581,8 @@ mutable struct nbi__unit___aperture___x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___aperture___x2_unit_vector} + _parent::WeakRef end function nbi__unit___aperture___x2_unit_vector{T}() where T @@ -53603,8 +53603,8 @@ mutable struct nbi__unit___aperture___x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___aperture___x1_unit_vector} + _parent::WeakRef end function nbi__unit___aperture___x1_unit_vector{T}() where T @@ -53623,8 +53623,8 @@ mutable struct nbi__unit___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___aperture___outline} + _parent::WeakRef end function nbi__unit___aperture___outline{T}() where T @@ -53645,8 +53645,8 @@ mutable struct nbi__unit___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___aperture___centre} + _parent::WeakRef end function nbi__unit___aperture___centre{T}() where T @@ -53657,26 +53657,26 @@ end nbi__unit___aperture___centre() = nbi__unit___aperture___centre{Float64}() mutable struct nbi__unit___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: nbi__unit___aperture___centre{T} + var"centre"::nbi__unit___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: nbi__unit___aperture___outline{T} + var"outline"::nbi__unit___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: nbi__unit___aperture___x1_unit_vector{T} + var"x1_unit_vector"::nbi__unit___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: nbi__unit___aperture___x2_unit_vector{T} + var"x2_unit_vector"::nbi__unit___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: nbi__unit___aperture___x3_unit_vector{T} + var"x3_unit_vector"::nbi__unit___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit___aperture} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit___aperture} + _parent::WeakRef end function nbi__unit___aperture{T}() where T @@ -53692,25 +53692,25 @@ end nbi__unit___aperture() = nbi__unit___aperture{Float64}() mutable struct nbi__unit{T} <: IDSvectorStaticElement{T} - var"aperture" :: IDSvector{nbi__unit___aperture{T}} + var"aperture"::IDSvector{nbi__unit___aperture{T}} var"available_launch_power" :: T var"available_launch_power_σ" :: T - var"beam_current_fraction" :: nbi__unit___beam_current_fraction{T} - var"beam_power_fraction" :: nbi__unit___beam_power_fraction{T} - var"beamlets_group" :: IDSvector{nbi__unit___beamlets_group{T}} - var"efficiency" :: nbi__unit___efficiency{T} - var"energy" :: nbi__unit___energy{T} + var"beam_current_fraction"::nbi__unit___beam_current_fraction{T} + var"beam_power_fraction"::nbi__unit___beam_power_fraction{T} + var"beamlets_group"::IDSvector{nbi__unit___beamlets_group{T}} + var"efficiency"::nbi__unit___efficiency{T} + var"energy"::nbi__unit___energy{T} var"identifier" :: String var"name" :: String - var"power_launched" :: nbi__unit___power_launched{T} - var"source" :: nbi__unit___source{T} - var"species" :: nbi__unit___species{T} + var"power_launched"::nbi__unit___power_launched{T} + var"source"::nbi__unit___source{T} + var"species"::nbi__unit___species{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__unit} - _parent :: WeakRef + _ref::Union{Nothing,nbi__unit} + _parent::WeakRef end function nbi__unit{T}() where T @@ -53737,8 +53737,8 @@ mutable struct nbi__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__version_put} + _parent::WeakRef end function nbi__ids_properties__version_put{T}() where T @@ -53755,8 +53755,8 @@ mutable struct nbi__ids_properties__provenance__node{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__provenance__node} + _parent::WeakRef end function nbi__ids_properties__provenance__node{T}() where T @@ -53767,13 +53767,13 @@ end nbi__ids_properties__provenance__node() = nbi__ids_properties__provenance__node{Float64}() mutable struct nbi__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{nbi__ids_properties__provenance__node{T}} + var"node"::IDSvector{nbi__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__provenance} + _parent::WeakRef end function nbi__ids_properties__provenance{T}() where T @@ -53795,8 +53795,8 @@ mutable struct nbi__ids_properties__plugins__node___readback{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__plugins__node___readback} + _parent::WeakRef end function nbi__ids_properties__plugins__node___readback{T}() where T @@ -53817,8 +53817,8 @@ mutable struct nbi__ids_properties__plugins__node___put_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function nbi__ids_properties__plugins__node___put_operation{T}() where T @@ -53839,8 +53839,8 @@ mutable struct nbi__ids_properties__plugins__node___get_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function nbi__ids_properties__plugins__node___get_operation{T}() where T @@ -53851,16 +53851,16 @@ end nbi__ids_properties__plugins__node___get_operation() = nbi__ids_properties__plugins__node___get_operation{Float64}() mutable struct nbi__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{nbi__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{nbi__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{nbi__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{nbi__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{nbi__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{nbi__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__plugins__node} + _parent::WeakRef end function nbi__ids_properties__plugins__node{T}() where T @@ -53883,8 +53883,8 @@ mutable struct nbi__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function nbi__ids_properties__plugins__infrastructure_put{T}() where T @@ -53904,8 +53904,8 @@ mutable struct nbi__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function nbi__ids_properties__plugins__infrastructure_get{T}() where T @@ -53916,15 +53916,15 @@ end nbi__ids_properties__plugins__infrastructure_get() = nbi__ids_properties__plugins__infrastructure_get{Float64}() mutable struct nbi__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: nbi__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: nbi__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{nbi__ids_properties__plugins__node{T}} + var"infrastructure_get"::nbi__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::nbi__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{nbi__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__plugins} + _parent::WeakRef end function nbi__ids_properties__plugins{T}() where T @@ -53945,8 +53945,8 @@ mutable struct nbi__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties__occurrence_type} + _parent::WeakRef end function nbi__ids_properties__occurrence_type{T}() where T @@ -53962,17 +53962,17 @@ mutable struct nbi__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: nbi__ids_properties__occurrence_type{T} - var"plugins" :: nbi__ids_properties__plugins{T} - var"provenance" :: nbi__ids_properties__provenance{T} + var"occurrence_type"::nbi__ids_properties__occurrence_type{T} + var"plugins"::nbi__ids_properties__plugins{T} + var"provenance"::nbi__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: nbi__ids_properties__version_put{T} + var"version_put"::nbi__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,nbi__ids_properties} + _parent::WeakRef end function nbi__ids_properties{T}() where T @@ -53997,8 +53997,8 @@ mutable struct nbi__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__code__library} - _parent :: WeakRef + _ref::Union{Nothing,nbi__code__library} + _parent::WeakRef end function nbi__code__library{T}() where T @@ -54011,7 +54011,7 @@ nbi__code__library() = nbi__code__library{Float64}() mutable struct nbi__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{nbi__code__library{T}} + var"library"::IDSvector{nbi__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -54021,8 +54021,8 @@ mutable struct nbi__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi__code} - _parent :: WeakRef + _ref::Union{Nothing,nbi__code} + _parent::WeakRef end function nbi__code{T}() where T @@ -54034,18 +54034,18 @@ end nbi__code() = nbi__code{Float64}() mutable struct nbi{T} <: IDStop{T} - var"code" :: nbi__code{T} - var"ids_properties" :: nbi__ids_properties{T} + var"code"::nbi__code{T} + var"ids_properties"::nbi__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} - var"unit" :: IDSvector{nbi__unit{T}} + var"unit"::IDSvector{nbi__unit{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,nbi} - _parent :: WeakRef + _ref::Union{Nothing,nbi} + _parent::WeakRef end function nbi{T}() where T @@ -54066,8 +54066,8 @@ mutable struct mse__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__version_put} + _parent::WeakRef end function mse__ids_properties__version_put{T}() where T @@ -54084,8 +54084,8 @@ mutable struct mse__ids_properties__provenance__node{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__provenance__node} + _parent::WeakRef end function mse__ids_properties__provenance__node{T}() where T @@ -54096,13 +54096,13 @@ end mse__ids_properties__provenance__node() = mse__ids_properties__provenance__node{Float64}() mutable struct mse__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{mse__ids_properties__provenance__node{T}} + var"node"::IDSvector{mse__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__provenance} + _parent::WeakRef end function mse__ids_properties__provenance{T}() where T @@ -54124,8 +54124,8 @@ mutable struct mse__ids_properties__plugins__node___readback{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__plugins__node___readback} + _parent::WeakRef end function mse__ids_properties__plugins__node___readback{T}() where T @@ -54146,8 +54146,8 @@ mutable struct mse__ids_properties__plugins__node___put_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function mse__ids_properties__plugins__node___put_operation{T}() where T @@ -54168,8 +54168,8 @@ mutable struct mse__ids_properties__plugins__node___get_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function mse__ids_properties__plugins__node___get_operation{T}() where T @@ -54180,16 +54180,16 @@ end mse__ids_properties__plugins__node___get_operation() = mse__ids_properties__plugins__node___get_operation{Float64}() mutable struct mse__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{mse__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{mse__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{mse__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{mse__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{mse__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{mse__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__plugins__node} + _parent::WeakRef end function mse__ids_properties__plugins__node{T}() where T @@ -54212,8 +54212,8 @@ mutable struct mse__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function mse__ids_properties__plugins__infrastructure_put{T}() where T @@ -54233,8 +54233,8 @@ mutable struct mse__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function mse__ids_properties__plugins__infrastructure_get{T}() where T @@ -54245,15 +54245,15 @@ end mse__ids_properties__plugins__infrastructure_get() = mse__ids_properties__plugins__infrastructure_get{Float64}() mutable struct mse__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: mse__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: mse__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{mse__ids_properties__plugins__node{T}} + var"infrastructure_get"::mse__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::mse__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{mse__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__plugins} + _parent::WeakRef end function mse__ids_properties__plugins{T}() where T @@ -54274,8 +54274,8 @@ mutable struct mse__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties__occurrence_type} + _parent::WeakRef end function mse__ids_properties__occurrence_type{T}() where T @@ -54291,17 +54291,17 @@ mutable struct mse__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: mse__ids_properties__occurrence_type{T} - var"plugins" :: mse__ids_properties__plugins{T} - var"provenance" :: mse__ids_properties__provenance{T} + var"occurrence_type"::mse__ids_properties__occurrence_type{T} + var"plugins"::mse__ids_properties__plugins{T} + var"provenance"::mse__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: mse__ids_properties__version_put{T} + var"version_put"::mse__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,mse__ids_properties} + _parent::WeakRef end function mse__ids_properties{T}() where T @@ -54326,8 +54326,8 @@ mutable struct mse__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__code__library} - _parent :: WeakRef + _ref::Union{Nothing,mse__code__library} + _parent::WeakRef end function mse__code__library{T}() where T @@ -54340,7 +54340,7 @@ mse__code__library() = mse__code__library{Float64}() mutable struct mse__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{mse__code__library{T}} + var"library"::IDSvector{mse__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -54350,8 +54350,8 @@ mutable struct mse__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__code} - _parent :: WeakRef + _ref::Union{Nothing,mse__code} + _parent::WeakRef end function mse__code{T}() where T @@ -54372,8 +54372,8 @@ mutable struct mse__channel___polarisation_angle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___polarisation_angle} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___polarisation_angle} + _parent::WeakRef end function mse__channel___polarisation_angle{T}() where T @@ -54394,8 +54394,8 @@ mutable struct mse__channel___line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___line_of_sight__second_point} + _parent::WeakRef end function mse__channel___line_of_sight__second_point{T}() where T @@ -54416,8 +54416,8 @@ mutable struct mse__channel___line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___line_of_sight__first_point} + _parent::WeakRef end function mse__channel___line_of_sight__first_point{T}() where T @@ -54428,14 +54428,14 @@ end mse__channel___line_of_sight__first_point() = mse__channel___line_of_sight__first_point{Float64}() mutable struct mse__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: mse__channel___line_of_sight__first_point{T} - var"second_point" :: mse__channel___line_of_sight__second_point{T} + var"first_point"::mse__channel___line_of_sight__first_point{T} + var"second_point"::mse__channel___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___line_of_sight} + _parent::WeakRef end function mse__channel___line_of_sight{T}() where T @@ -54458,8 +54458,8 @@ mutable struct mse__channel___detector__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___detector__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___detector__x3_unit_vector} + _parent::WeakRef end function mse__channel___detector__x3_unit_vector{T}() where T @@ -54480,8 +54480,8 @@ mutable struct mse__channel___detector__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___detector__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___detector__x2_unit_vector} + _parent::WeakRef end function mse__channel___detector__x2_unit_vector{T}() where T @@ -54502,8 +54502,8 @@ mutable struct mse__channel___detector__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___detector__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___detector__x1_unit_vector} + _parent::WeakRef end function mse__channel___detector__x1_unit_vector{T}() where T @@ -54522,8 +54522,8 @@ mutable struct mse__channel___detector__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___detector__outline} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___detector__outline} + _parent::WeakRef end function mse__channel___detector__outline{T}() where T @@ -54544,8 +54544,8 @@ mutable struct mse__channel___detector__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___detector__centre} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___detector__centre} + _parent::WeakRef end function mse__channel___detector__centre{T}() where T @@ -54556,26 +54556,26 @@ end mse__channel___detector__centre() = mse__channel___detector__centre{Float64}() mutable struct mse__channel___detector{T} <: IDS{T} - var"centre" :: mse__channel___detector__centre{T} + var"centre"::mse__channel___detector__centre{T} var"geometry_type" :: Int - var"outline" :: mse__channel___detector__outline{T} + var"outline"::mse__channel___detector__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: mse__channel___detector__x1_unit_vector{T} + var"x1_unit_vector"::mse__channel___detector__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: mse__channel___detector__x2_unit_vector{T} + var"x2_unit_vector"::mse__channel___detector__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: mse__channel___detector__x3_unit_vector{T} + var"x3_unit_vector"::mse__channel___detector__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___detector} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___detector} + _parent::WeakRef end function mse__channel___detector{T}() where T @@ -54601,8 +54601,8 @@ mutable struct mse__channel___aperture___x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___aperture___x3_unit_vector} + _parent::WeakRef end function mse__channel___aperture___x3_unit_vector{T}() where T @@ -54623,8 +54623,8 @@ mutable struct mse__channel___aperture___x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___aperture___x2_unit_vector} + _parent::WeakRef end function mse__channel___aperture___x2_unit_vector{T}() where T @@ -54645,8 +54645,8 @@ mutable struct mse__channel___aperture___x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___aperture___x1_unit_vector} + _parent::WeakRef end function mse__channel___aperture___x1_unit_vector{T}() where T @@ -54665,8 +54665,8 @@ mutable struct mse__channel___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___aperture___outline} + _parent::WeakRef end function mse__channel___aperture___outline{T}() where T @@ -54687,8 +54687,8 @@ mutable struct mse__channel___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___aperture___centre} + _parent::WeakRef end function mse__channel___aperture___centre{T}() where T @@ -54699,26 +54699,26 @@ end mse__channel___aperture___centre() = mse__channel___aperture___centre{Float64}() mutable struct mse__channel___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: mse__channel___aperture___centre{T} + var"centre"::mse__channel___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: mse__channel___aperture___outline{T} + var"outline"::mse__channel___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: mse__channel___aperture___x1_unit_vector{T} + var"x1_unit_vector"::mse__channel___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: mse__channel___aperture___x2_unit_vector{T} + var"x2_unit_vector"::mse__channel___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: mse__channel___aperture___x3_unit_vector{T} + var"x3_unit_vector"::mse__channel___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___aperture} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___aperture} + _parent::WeakRef end function mse__channel___aperture{T}() where T @@ -54744,8 +54744,8 @@ mutable struct mse__channel___active_spatial_resolution___width{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___active_spatial_resolution___width} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___active_spatial_resolution___width} + _parent::WeakRef end function mse__channel___active_spatial_resolution___width{T}() where T @@ -54766,8 +54766,8 @@ mutable struct mse__channel___active_spatial_resolution___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___active_spatial_resolution___centre} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___active_spatial_resolution___centre} + _parent::WeakRef end function mse__channel___active_spatial_resolution___centre{T}() where T @@ -54778,17 +54778,17 @@ end mse__channel___active_spatial_resolution___centre() = mse__channel___active_spatial_resolution___centre{Float64}() mutable struct mse__channel___active_spatial_resolution{T} <: IDSvectorTimeElement{T} - var"centre" :: mse__channel___active_spatial_resolution___centre{T} + var"centre"::mse__channel___active_spatial_resolution___centre{T} var"geometric_coefficients" :: Vector{<:T} var"geometric_coefficients_σ" :: Vector{<:T} var"time" :: Float64 - var"width" :: mse__channel___active_spatial_resolution___width{T} + var"width"::mse__channel___active_spatial_resolution___width{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel___active_spatial_resolution} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel___active_spatial_resolution} + _parent::WeakRef end function mse__channel___active_spatial_resolution{T}() where T @@ -54801,18 +54801,18 @@ end mse__channel___active_spatial_resolution() = mse__channel___active_spatial_resolution{Float64}() mutable struct mse__channel{T} <: IDSvectorStaticElement{T} - var"active_spatial_resolution" :: IDSvector{mse__channel___active_spatial_resolution{T}} - var"aperture" :: IDSvector{mse__channel___aperture{T}} - var"detector" :: mse__channel___detector{T} - var"line_of_sight" :: mse__channel___line_of_sight{T} + var"active_spatial_resolution"::IDSvector{mse__channel___active_spatial_resolution{T}} + var"aperture"::IDSvector{mse__channel___aperture{T}} + var"detector"::mse__channel___detector{T} + var"line_of_sight"::mse__channel___line_of_sight{T} var"name" :: String - var"polarisation_angle" :: mse__channel___polarisation_angle{T} + var"polarisation_angle"::mse__channel___polarisation_angle{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse__channel} - _parent :: WeakRef + _ref::Union{Nothing,mse__channel} + _parent::WeakRef end function mse__channel{T}() where T @@ -54828,9 +54828,9 @@ end mse__channel() = mse__channel{Float64}() mutable struct mse{T} <: IDStop{T} - var"channel" :: IDSvector{mse__channel{T}} - var"code" :: mse__code{T} - var"ids_properties" :: mse__ids_properties{T} + var"channel"::IDSvector{mse__channel{T}} + var"code"::mse__code{T} + var"ids_properties"::mse__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -54838,8 +54838,8 @@ mutable struct mse{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mse} - _parent :: WeakRef + _ref::Union{Nothing,mse} + _parent::WeakRef end function mse{T}() where T @@ -54861,8 +54861,8 @@ mutable struct mhd_linear__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__vacuum_toroidal_field} + _parent::WeakRef end function mhd_linear__vacuum_toroidal_field{T}() where T @@ -54880,8 +54880,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__grid_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__grid_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__grid_type} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__grid_type{T}() where T @@ -54902,8 +54902,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__grid{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__grid} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__grid} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__grid{T}() where T @@ -54921,8 +54921,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_syste _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid_type} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid_type{T}() where T @@ -54943,8 +54943,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_syste _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid{T}() where T @@ -54955,8 +54955,8 @@ end mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid() = mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system{T} <: IDS{T} - var"grid" :: mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid{T} - var"grid_type" :: mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid_type{T} + var"grid"::mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid{T} + var"grid_type"::mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system__grid_type{T} var"jacobian" :: Matrix{<:T} var"jacobian_σ" :: Matrix{<:T} var"r" :: Matrix{<:T} @@ -54971,8 +54971,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_syste _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system{T}() where T @@ -54997,8 +54997,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate3} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate3} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate3{T}() where T @@ -55021,8 +55021,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate2} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate2} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate2{T}() where T @@ -55045,8 +55045,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate1} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate1} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate1{T}() where T @@ -55057,15 +55057,15 @@ end mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate1() = mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate1{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed{T} <: IDS{T} - var"coordinate1" :: mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate1{T} - var"coordinate2" :: mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate2{T} - var"coordinate3" :: mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate3{T} + var"coordinate1"::mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate1{T} + var"coordinate2"::mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate2{T} + var"coordinate3"::mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed__coordinate3{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed{T}() where T @@ -55091,8 +55091,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate3} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate3} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate3{T}() where T @@ -55115,8 +55115,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate2} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate2} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate2{T}() where T @@ -55139,8 +55139,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate1} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate1} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate1{T}() where T @@ -55151,15 +55151,15 @@ end mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate1() = mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate1{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed{T} <: IDS{T} - var"coordinate1" :: mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate1{T} - var"coordinate2" :: mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate2{T} - var"coordinate3" :: mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate3{T} + var"coordinate1"::mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate1{T} + var"coordinate2"::mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate2{T} + var"coordinate3"::mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed__coordinate3{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed{T}() where T @@ -55173,17 +55173,17 @@ end mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed() = mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___vacuum{T} <: IDS{T} - var"a_field_perturbed" :: mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed{T} - var"b_field_perturbed" :: mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed{T} - var"coordinate_system" :: mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system{T} - var"grid" :: mhd_linear__time_slice___toroidal_mode___vacuum__grid{T} - var"grid_type" :: mhd_linear__time_slice___toroidal_mode___vacuum__grid_type{T} + var"a_field_perturbed"::mhd_linear__time_slice___toroidal_mode___vacuum__a_field_perturbed{T} + var"b_field_perturbed"::mhd_linear__time_slice___toroidal_mode___vacuum__b_field_perturbed{T} + var"coordinate_system"::mhd_linear__time_slice___toroidal_mode___vacuum__coordinate_system{T} + var"grid"::mhd_linear__time_slice___toroidal_mode___vacuum__grid{T} + var"grid_type"::mhd_linear__time_slice___toroidal_mode___vacuum__grid_type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___vacuum} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___vacuum{T}() where T @@ -55211,8 +55211,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturb _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate3} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate3} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate3{T}() where T @@ -55235,8 +55235,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturb _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate2} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate2} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate2{T}() where T @@ -55259,8 +55259,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturb _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate1} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate1} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate1{T}() where T @@ -55271,15 +55271,15 @@ end mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate1() = mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate1{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed{T} <: IDS{T} - var"coordinate1" :: mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate1{T} - var"coordinate2" :: mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate2{T} - var"coordinate3" :: mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate3{T} + var"coordinate1"::mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate1{T} + var"coordinate2"::mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate2{T} + var"coordinate3"::mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed__coordinate3{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed{T}() where T @@ -55305,8 +55305,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__temperature_pert _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__temperature_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__temperature_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__temperature_perturbed{T}() where T @@ -55325,8 +55325,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__stress_reynolds{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__stress_reynolds} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__stress_reynolds} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__stress_reynolds{T}() where T @@ -55345,8 +55345,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__stress_maxwell{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__stress_maxwell} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__stress_maxwell} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__stress_maxwell{T}() where T @@ -55369,8 +55369,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__psi_potential_pe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__psi_potential_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__psi_potential_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__psi_potential_perturbed{T}() where T @@ -55393,8 +55393,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__pressure_perturb _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__pressure_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__pressure_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__pressure_perturbed{T}() where T @@ -55417,8 +55417,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__phi_potential_pe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__phi_potential_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__phi_potential_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__phi_potential_perturbed{T}() where T @@ -55437,8 +55437,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__ntv{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__ntv} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__ntv} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__ntv{T}() where T @@ -55461,8 +55461,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__mass_density_per _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__mass_density_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__mass_density_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__mass_density_perturbed{T}() where T @@ -55480,8 +55480,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__grid_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__grid_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__grid_type} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__grid_type{T}() where T @@ -55502,8 +55502,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__grid{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__grid} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__grid} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__grid{T}() where T @@ -55526,8 +55526,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__displacement_per _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__displacement_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__displacement_perpendicular} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__displacement_perpendicular{T}() where T @@ -55550,8 +55550,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__displacement_par _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__displacement_parallel} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__displacement_parallel} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__displacement_parallel{T}() where T @@ -55569,8 +55569,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__coordinate_syste _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid_type} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid_type{T}() where T @@ -55591,8 +55591,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__coordinate_syste _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid{T}() where T @@ -55603,8 +55603,8 @@ end mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid() = mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system{T} <: IDS{T} - var"grid" :: mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid{T} - var"grid_type" :: mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid_type{T} + var"grid"::mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid{T} + var"grid_type"::mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system__grid_type{T} var"jacobian" :: Matrix{<:T} var"jacobian_σ" :: Matrix{<:T} var"r" :: Matrix{<:T} @@ -55619,8 +55619,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__coordinate_syste _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system{T}() where T @@ -55645,8 +55645,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate3} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate3} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate3{T}() where T @@ -55669,8 +55669,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate2} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate2} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate2{T}() where T @@ -55693,8 +55693,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate1} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate1} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate1{T}() where T @@ -55705,15 +55705,15 @@ end mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate1() = mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate1{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed{T} <: IDS{T} - var"coordinate1" :: mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate1{T} - var"coordinate2" :: mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate2{T} - var"coordinate3" :: mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate3{T} + var"coordinate1"::mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate1{T} + var"coordinate2"::mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate2{T} + var"coordinate3"::mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed__coordinate3{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed{T}() where T @@ -55735,8 +55735,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__alfven_frequency _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__alfven_frequency_spectrum} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__alfven_frequency_spectrum} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__alfven_frequency_spectrum{T}() where T @@ -55759,8 +55759,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate3} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate3} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate3{T}() where T @@ -55783,8 +55783,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate2} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate2} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate2{T}() where T @@ -55807,8 +55807,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbe _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate1} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate1} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate1{T}() where T @@ -55819,15 +55819,15 @@ end mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate1() = mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate1{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed{T} <: IDS{T} - var"coordinate1" :: mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate1{T} - var"coordinate2" :: mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate2{T} - var"coordinate3" :: mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate3{T} + var"coordinate1"::mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate1{T} + var"coordinate2"::mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate2{T} + var"coordinate3"::mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed__coordinate3{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed{T}() where T @@ -55841,33 +55841,33 @@ end mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed() = mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed{Float64}() mutable struct mhd_linear__time_slice___toroidal_mode___plasma{T} <: IDS{T} - var"a_field_perturbed" :: mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed{T} - var"alfven_frequency_spectrum" :: IDSvector{mhd_linear__time_slice___toroidal_mode___plasma__alfven_frequency_spectrum{T}} - var"b_field_perturbed" :: mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed{T} - var"coordinate_system" :: mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system{T} - var"displacement_parallel" :: mhd_linear__time_slice___toroidal_mode___plasma__displacement_parallel{T} - var"displacement_perpendicular" :: mhd_linear__time_slice___toroidal_mode___plasma__displacement_perpendicular{T} - var"grid" :: mhd_linear__time_slice___toroidal_mode___plasma__grid{T} - var"grid_type" :: mhd_linear__time_slice___toroidal_mode___plasma__grid_type{T} - var"mass_density_perturbed" :: mhd_linear__time_slice___toroidal_mode___plasma__mass_density_perturbed{T} - var"ntv" :: mhd_linear__time_slice___toroidal_mode___plasma__ntv{T} - var"phi_potential_perturbed" :: mhd_linear__time_slice___toroidal_mode___plasma__phi_potential_perturbed{T} - var"pressure_perturbed" :: mhd_linear__time_slice___toroidal_mode___plasma__pressure_perturbed{T} - var"psi_potential_perturbed" :: mhd_linear__time_slice___toroidal_mode___plasma__psi_potential_perturbed{T} - var"stress_maxwell" :: mhd_linear__time_slice___toroidal_mode___plasma__stress_maxwell{T} - var"stress_reynolds" :: mhd_linear__time_slice___toroidal_mode___plasma__stress_reynolds{T} + var"a_field_perturbed"::mhd_linear__time_slice___toroidal_mode___plasma__a_field_perturbed{T} + var"alfven_frequency_spectrum"::IDSvector{mhd_linear__time_slice___toroidal_mode___plasma__alfven_frequency_spectrum{T}} + var"b_field_perturbed"::mhd_linear__time_slice___toroidal_mode___plasma__b_field_perturbed{T} + var"coordinate_system"::mhd_linear__time_slice___toroidal_mode___plasma__coordinate_system{T} + var"displacement_parallel"::mhd_linear__time_slice___toroidal_mode___plasma__displacement_parallel{T} + var"displacement_perpendicular"::mhd_linear__time_slice___toroidal_mode___plasma__displacement_perpendicular{T} + var"grid"::mhd_linear__time_slice___toroidal_mode___plasma__grid{T} + var"grid_type"::mhd_linear__time_slice___toroidal_mode___plasma__grid_type{T} + var"mass_density_perturbed"::mhd_linear__time_slice___toroidal_mode___plasma__mass_density_perturbed{T} + var"ntv"::mhd_linear__time_slice___toroidal_mode___plasma__ntv{T} + var"phi_potential_perturbed"::mhd_linear__time_slice___toroidal_mode___plasma__phi_potential_perturbed{T} + var"pressure_perturbed"::mhd_linear__time_slice___toroidal_mode___plasma__pressure_perturbed{T} + var"psi_potential_perturbed"::mhd_linear__time_slice___toroidal_mode___plasma__psi_potential_perturbed{T} + var"stress_maxwell"::mhd_linear__time_slice___toroidal_mode___plasma__stress_maxwell{T} + var"stress_reynolds"::mhd_linear__time_slice___toroidal_mode___plasma__stress_reynolds{T} var"tau_alfven" :: Vector{<:T} var"tau_alfven_σ" :: Vector{<:T} var"tau_resistive" :: Vector{<:T} var"tau_resistive_σ" :: Vector{<:T} - var"temperature_perturbed" :: mhd_linear__time_slice___toroidal_mode___plasma__temperature_perturbed{T} - var"velocity_perturbed" :: mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed{T} + var"temperature_perturbed"::mhd_linear__time_slice___toroidal_mode___plasma__temperature_perturbed{T} + var"velocity_perturbed"::mhd_linear__time_slice___toroidal_mode___plasma__velocity_perturbed{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___plasma} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___plasma{T}() where T @@ -55902,8 +55902,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___perturbation_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___perturbation_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___perturbation_type} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___perturbation_type{T}() where T @@ -55921,8 +55921,8 @@ mutable struct mhd_linear__time_slice___toroidal_mode___ballooning_type{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode___ballooning_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode___ballooning_type} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode___ballooning_type{T}() where T @@ -55935,7 +55935,7 @@ mhd_linear__time_slice___toroidal_mode___ballooning_type() = mhd_linear__time_sl mutable struct mhd_linear__time_slice___toroidal_mode{T} <: IDSvectorStaticElement{T} var"amplitude_multiplier" :: T var"amplitude_multiplier_σ" :: T - var"ballooning_type" :: mhd_linear__time_slice___toroidal_mode___ballooning_type{T} + var"ballooning_type"::mhd_linear__time_slice___toroidal_mode___ballooning_type{T} var"energy_perturbed" :: T var"energy_perturbed_σ" :: T var"frequency" :: T @@ -55945,21 +55945,21 @@ mutable struct mhd_linear__time_slice___toroidal_mode{T} <: IDSvectorStaticEleme var"m_pol_dominant" :: T var"m_pol_dominant_σ" :: T var"n_tor" :: Int - var"perturbation_type" :: mhd_linear__time_slice___toroidal_mode___perturbation_type{T} + var"perturbation_type"::mhd_linear__time_slice___toroidal_mode___perturbation_type{T} var"phase" :: T var"phase_σ" :: T - var"plasma" :: mhd_linear__time_slice___toroidal_mode___plasma{T} + var"plasma"::mhd_linear__time_slice___toroidal_mode___plasma{T} var"radial_mode_number" :: T var"radial_mode_number_σ" :: T var"stability_metric" :: T var"stability_metric_σ" :: T - var"vacuum" :: mhd_linear__time_slice___toroidal_mode___vacuum{T} + var"vacuum"::mhd_linear__time_slice___toroidal_mode___vacuum{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice___toroidal_mode} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice___toroidal_mode} + _parent::WeakRef end function mhd_linear__time_slice___toroidal_mode{T}() where T @@ -55975,13 +55975,13 @@ mhd_linear__time_slice___toroidal_mode() = mhd_linear__time_slice___toroidal_mod mutable struct mhd_linear__time_slice{T} <: IDSvectorTimeElement{T} var"time" :: Float64 - var"toroidal_mode" :: IDSvector{mhd_linear__time_slice___toroidal_mode{T}} + var"toroidal_mode"::IDSvector{mhd_linear__time_slice___toroidal_mode{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__time_slice} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__time_slice} + _parent::WeakRef end function mhd_linear__time_slice{T}() where T @@ -56000,8 +56000,8 @@ mutable struct mhd_linear__model_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__model_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__model_type} + _parent::WeakRef end function mhd_linear__model_type{T}() where T @@ -56019,8 +56019,8 @@ mutable struct mhd_linear__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__version_put} + _parent::WeakRef end function mhd_linear__ids_properties__version_put{T}() where T @@ -56037,8 +56037,8 @@ mutable struct mhd_linear__ids_properties__provenance__node{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__provenance__node} + _parent::WeakRef end function mhd_linear__ids_properties__provenance__node{T}() where T @@ -56049,13 +56049,13 @@ end mhd_linear__ids_properties__provenance__node() = mhd_linear__ids_properties__provenance__node{Float64}() mutable struct mhd_linear__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{mhd_linear__ids_properties__provenance__node{T}} + var"node"::IDSvector{mhd_linear__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__provenance} + _parent::WeakRef end function mhd_linear__ids_properties__provenance{T}() where T @@ -56077,8 +56077,8 @@ mutable struct mhd_linear__ids_properties__plugins__node___readback{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__plugins__node___readback} + _parent::WeakRef end function mhd_linear__ids_properties__plugins__node___readback{T}() where T @@ -56099,8 +56099,8 @@ mutable struct mhd_linear__ids_properties__plugins__node___put_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function mhd_linear__ids_properties__plugins__node___put_operation{T}() where T @@ -56121,8 +56121,8 @@ mutable struct mhd_linear__ids_properties__plugins__node___get_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function mhd_linear__ids_properties__plugins__node___get_operation{T}() where T @@ -56133,16 +56133,16 @@ end mhd_linear__ids_properties__plugins__node___get_operation() = mhd_linear__ids_properties__plugins__node___get_operation{Float64}() mutable struct mhd_linear__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{mhd_linear__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{mhd_linear__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{mhd_linear__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{mhd_linear__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{mhd_linear__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{mhd_linear__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__plugins__node} + _parent::WeakRef end function mhd_linear__ids_properties__plugins__node{T}() where T @@ -56165,8 +56165,8 @@ mutable struct mhd_linear__ids_properties__plugins__infrastructure_put{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function mhd_linear__ids_properties__plugins__infrastructure_put{T}() where T @@ -56186,8 +56186,8 @@ mutable struct mhd_linear__ids_properties__plugins__infrastructure_get{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function mhd_linear__ids_properties__plugins__infrastructure_get{T}() where T @@ -56198,15 +56198,15 @@ end mhd_linear__ids_properties__plugins__infrastructure_get() = mhd_linear__ids_properties__plugins__infrastructure_get{Float64}() mutable struct mhd_linear__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: mhd_linear__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: mhd_linear__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{mhd_linear__ids_properties__plugins__node{T}} + var"infrastructure_get"::mhd_linear__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::mhd_linear__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{mhd_linear__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__plugins} + _parent::WeakRef end function mhd_linear__ids_properties__plugins{T}() where T @@ -56227,8 +56227,8 @@ mutable struct mhd_linear__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties__occurrence_type} + _parent::WeakRef end function mhd_linear__ids_properties__occurrence_type{T}() where T @@ -56244,17 +56244,17 @@ mutable struct mhd_linear__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: mhd_linear__ids_properties__occurrence_type{T} - var"plugins" :: mhd_linear__ids_properties__plugins{T} - var"provenance" :: mhd_linear__ids_properties__provenance{T} + var"occurrence_type"::mhd_linear__ids_properties__occurrence_type{T} + var"plugins"::mhd_linear__ids_properties__plugins{T} + var"provenance"::mhd_linear__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: mhd_linear__ids_properties__version_put{T} + var"version_put"::mhd_linear__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__ids_properties} + _parent::WeakRef end function mhd_linear__ids_properties{T}() where T @@ -56276,8 +56276,8 @@ mutable struct mhd_linear__equations{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__equations} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__equations} + _parent::WeakRef end function mhd_linear__equations{T}() where T @@ -56298,8 +56298,8 @@ mutable struct mhd_linear__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__code__library} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__code__library} + _parent::WeakRef end function mhd_linear__code__library{T}() where T @@ -56312,7 +56312,7 @@ mhd_linear__code__library() = mhd_linear__code__library{Float64}() mutable struct mhd_linear__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{mhd_linear__code__library{T}} + var"library"::IDSvector{mhd_linear__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -56322,8 +56322,8 @@ mutable struct mhd_linear__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear__code} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear__code} + _parent::WeakRef end function mhd_linear__code{T}() where T @@ -56335,21 +56335,21 @@ end mhd_linear__code() = mhd_linear__code{Float64}() mutable struct mhd_linear{T} <: IDStop{T} - var"code" :: mhd_linear__code{T} - var"equations" :: mhd_linear__equations{T} + var"code"::mhd_linear__code{T} + var"equations"::mhd_linear__equations{T} var"fluids_n" :: Int var"ideal_flag" :: Int - var"ids_properties" :: mhd_linear__ids_properties{T} - var"model_type" :: mhd_linear__model_type{T} + var"ids_properties"::mhd_linear__ids_properties{T} + var"model_type"::mhd_linear__model_type{T} var"time" :: Vector{Float64} - var"time_slice" :: IDSvector{mhd_linear__time_slice{T}} - var"vacuum_toroidal_field" :: mhd_linear__vacuum_toroidal_field{T} + var"time_slice"::IDSvector{mhd_linear__time_slice{T}} + var"vacuum_toroidal_field"::mhd_linear__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd_linear} - _parent :: WeakRef + _ref::Union{Nothing,mhd_linear} + _parent::WeakRef end function mhd_linear{T}() where T @@ -56373,8 +56373,8 @@ mutable struct mhd__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__version_put} + _parent::WeakRef end function mhd__ids_properties__version_put{T}() where T @@ -56391,8 +56391,8 @@ mutable struct mhd__ids_properties__provenance__node{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__provenance__node} + _parent::WeakRef end function mhd__ids_properties__provenance__node{T}() where T @@ -56403,13 +56403,13 @@ end mhd__ids_properties__provenance__node() = mhd__ids_properties__provenance__node{Float64}() mutable struct mhd__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{mhd__ids_properties__provenance__node{T}} + var"node"::IDSvector{mhd__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__provenance} + _parent::WeakRef end function mhd__ids_properties__provenance{T}() where T @@ -56431,8 +56431,8 @@ mutable struct mhd__ids_properties__plugins__node___readback{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__plugins__node___readback} + _parent::WeakRef end function mhd__ids_properties__plugins__node___readback{T}() where T @@ -56453,8 +56453,8 @@ mutable struct mhd__ids_properties__plugins__node___put_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function mhd__ids_properties__plugins__node___put_operation{T}() where T @@ -56475,8 +56475,8 @@ mutable struct mhd__ids_properties__plugins__node___get_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function mhd__ids_properties__plugins__node___get_operation{T}() where T @@ -56487,16 +56487,16 @@ end mhd__ids_properties__plugins__node___get_operation() = mhd__ids_properties__plugins__node___get_operation{Float64}() mutable struct mhd__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{mhd__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{mhd__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{mhd__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{mhd__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{mhd__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{mhd__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__plugins__node} + _parent::WeakRef end function mhd__ids_properties__plugins__node{T}() where T @@ -56519,8 +56519,8 @@ mutable struct mhd__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function mhd__ids_properties__plugins__infrastructure_put{T}() where T @@ -56540,8 +56540,8 @@ mutable struct mhd__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function mhd__ids_properties__plugins__infrastructure_get{T}() where T @@ -56552,15 +56552,15 @@ end mhd__ids_properties__plugins__infrastructure_get() = mhd__ids_properties__plugins__infrastructure_get{Float64}() mutable struct mhd__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: mhd__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: mhd__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{mhd__ids_properties__plugins__node{T}} + var"infrastructure_get"::mhd__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::mhd__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{mhd__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__plugins} + _parent::WeakRef end function mhd__ids_properties__plugins{T}() where T @@ -56581,8 +56581,8 @@ mutable struct mhd__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties__occurrence_type} + _parent::WeakRef end function mhd__ids_properties__occurrence_type{T}() where T @@ -56598,17 +56598,17 @@ mutable struct mhd__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: mhd__ids_properties__occurrence_type{T} - var"plugins" :: mhd__ids_properties__plugins{T} - var"provenance" :: mhd__ids_properties__provenance{T} + var"occurrence_type"::mhd__ids_properties__occurrence_type{T} + var"plugins"::mhd__ids_properties__plugins{T} + var"provenance"::mhd__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: mhd__ids_properties__version_put{T} + var"version_put"::mhd__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ids_properties} + _parent::WeakRef end function mhd__ids_properties{T}() where T @@ -56629,8 +56629,8 @@ mutable struct mhd__grid_ggd___space___objects_per_dimension___object___boundary _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function mhd__grid_ggd___space___objects_per_dimension___object___boundary{T}() where T @@ -56641,7 +56641,7 @@ end mhd__grid_ggd___space___objects_per_dimension___object___boundary() = mhd__grid_ggd___space___objects_per_dimension___object___boundary{Float64}() mutable struct mhd__grid_ggd___space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{mhd__grid_ggd___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{mhd__grid_ggd___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -56653,8 +56653,8 @@ mutable struct mhd__grid_ggd___space___objects_per_dimension___object{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___space___objects_per_dimension___object} + _parent::WeakRef end function mhd__grid_ggd___space___objects_per_dimension___object{T}() where T @@ -56673,8 +56673,8 @@ mutable struct mhd__grid_ggd___space___objects_per_dimension___geometry_content{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function mhd__grid_ggd___space___objects_per_dimension___geometry_content{T}() where T @@ -56685,14 +56685,14 @@ end mhd__grid_ggd___space___objects_per_dimension___geometry_content() = mhd__grid_ggd___space___objects_per_dimension___geometry_content{Float64}() mutable struct mhd__grid_ggd___space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: mhd__grid_ggd___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{mhd__grid_ggd___space___objects_per_dimension___object{T}} + var"geometry_content"::mhd__grid_ggd___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{mhd__grid_ggd___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___space___objects_per_dimension} + _parent::WeakRef end function mhd__grid_ggd___space___objects_per_dimension{T}() where T @@ -56712,8 +56712,8 @@ mutable struct mhd__grid_ggd___space___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___space___identifier} + _parent::WeakRef end function mhd__grid_ggd___space___identifier{T}() where T @@ -56731,8 +56731,8 @@ mutable struct mhd__grid_ggd___space___geometry_type{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___space___geometry_type} + _parent::WeakRef end function mhd__grid_ggd___space___geometry_type{T}() where T @@ -56744,15 +56744,15 @@ mhd__grid_ggd___space___geometry_type() = mhd__grid_ggd___space___geometry_type{ mutable struct mhd__grid_ggd___space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: mhd__grid_ggd___space___geometry_type{T} - var"identifier" :: mhd__grid_ggd___space___identifier{T} - var"objects_per_dimension" :: IDSvector{mhd__grid_ggd___space___objects_per_dimension{T}} + var"geometry_type"::mhd__grid_ggd___space___geometry_type{T} + var"identifier"::mhd__grid_ggd___space___identifier{T} + var"objects_per_dimension"::IDSvector{mhd__grid_ggd___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___space} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___space} + _parent::WeakRef end function mhd__grid_ggd___space{T}() where T @@ -56773,8 +56773,8 @@ mutable struct mhd__grid_ggd___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___identifier} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___identifier} + _parent::WeakRef end function mhd__grid_ggd___identifier{T}() where T @@ -56795,8 +56795,8 @@ mutable struct mhd__grid_ggd___grid_subset___metric{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___grid_subset___metric} + _parent::WeakRef end function mhd__grid_ggd___grid_subset___metric{T}() where T @@ -56814,8 +56814,8 @@ mutable struct mhd__grid_ggd___grid_subset___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___grid_subset___identifier} + _parent::WeakRef end function mhd__grid_ggd___grid_subset___identifier{T}() where T @@ -56833,8 +56833,8 @@ mutable struct mhd__grid_ggd___grid_subset___element___object{T} <: IDSvectorRaw _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___grid_subset___element___object} + _parent::WeakRef end function mhd__grid_ggd___grid_subset___element___object{T}() where T @@ -56845,13 +56845,13 @@ end mhd__grid_ggd___grid_subset___element___object() = mhd__grid_ggd___grid_subset___element___object{Float64}() mutable struct mhd__grid_ggd___grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{mhd__grid_ggd___grid_subset___element___object{T}} + var"object"::IDSvector{mhd__grid_ggd___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___grid_subset___element} + _parent::WeakRef end function mhd__grid_ggd___grid_subset___element{T}() where T @@ -56873,8 +56873,8 @@ mutable struct mhd__grid_ggd___grid_subset___base{T} <: IDSvectorRawElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___grid_subset___base} + _parent::WeakRef end function mhd__grid_ggd___grid_subset___base{T}() where T @@ -56885,17 +56885,17 @@ end mhd__grid_ggd___grid_subset___base() = mhd__grid_ggd___grid_subset___base{Float64}() mutable struct mhd__grid_ggd___grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{mhd__grid_ggd___grid_subset___base{T}} + var"base"::IDSvector{mhd__grid_ggd___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{mhd__grid_ggd___grid_subset___element{T}} - var"identifier" :: mhd__grid_ggd___grid_subset___identifier{T} - var"metric" :: mhd__grid_ggd___grid_subset___metric{T} + var"element"::IDSvector{mhd__grid_ggd___grid_subset___element{T}} + var"identifier"::mhd__grid_ggd___grid_subset___identifier{T} + var"metric"::mhd__grid_ggd___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd___grid_subset} + _parent::WeakRef end function mhd__grid_ggd___grid_subset{T}() where T @@ -56910,17 +56910,17 @@ end mhd__grid_ggd___grid_subset() = mhd__grid_ggd___grid_subset{Float64}() mutable struct mhd__grid_ggd{T} <: IDSvectorRawElement{T} - var"grid_subset" :: IDSvector{mhd__grid_ggd___grid_subset{T}} - var"identifier" :: mhd__grid_ggd___identifier{T} + var"grid_subset"::IDSvector{mhd__grid_ggd___grid_subset{T}} + var"identifier"::mhd__grid_ggd___identifier{T} var"path" :: String - var"space" :: IDSvector{mhd__grid_ggd___space{T}} + var"space"::IDSvector{mhd__grid_ggd___space{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,mhd__grid_ggd} + _parent::WeakRef end function mhd__grid_ggd{T}() where T @@ -56944,8 +56944,8 @@ mutable struct mhd__ggd___zeff{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___zeff} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___zeff} + _parent::WeakRef end function mhd__ggd___zeff{T}() where T @@ -56966,8 +56966,8 @@ mutable struct mhd__ggd___vorticity_over_r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___vorticity_over_r} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___vorticity_over_r} + _parent::WeakRef end function mhd__ggd___vorticity_over_r{T}() where T @@ -56988,8 +56988,8 @@ mutable struct mhd__ggd___vorticity{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___vorticity} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___vorticity} + _parent::WeakRef end function mhd__ggd___vorticity{T}() where T @@ -57010,8 +57010,8 @@ mutable struct mhd__ggd___velocity_z{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___velocity_z} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___velocity_z} + _parent::WeakRef end function mhd__ggd___velocity_z{T}() where T @@ -57032,8 +57032,8 @@ mutable struct mhd__ggd___velocity_tor{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___velocity_tor} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___velocity_tor} + _parent::WeakRef end function mhd__ggd___velocity_tor{T}() where T @@ -57054,8 +57054,8 @@ mutable struct mhd__ggd___velocity_r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___velocity_r} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___velocity_r} + _parent::WeakRef end function mhd__ggd___velocity_r{T}() where T @@ -57076,8 +57076,8 @@ mutable struct mhd__ggd___velocity_parallel_over_b_field{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___velocity_parallel_over_b_field} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___velocity_parallel_over_b_field} + _parent::WeakRef end function mhd__ggd___velocity_parallel_over_b_field{T}() where T @@ -57098,8 +57098,8 @@ mutable struct mhd__ggd___velocity_parallel{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___velocity_parallel} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___velocity_parallel} + _parent::WeakRef end function mhd__ggd___velocity_parallel{T}() where T @@ -57120,8 +57120,8 @@ mutable struct mhd__ggd___t_i_average{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___t_i_average} + _parent::WeakRef end function mhd__ggd___t_i_average{T}() where T @@ -57142,8 +57142,8 @@ mutable struct mhd__ggd___psi{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___psi} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___psi} + _parent::WeakRef end function mhd__ggd___psi{T}() where T @@ -57164,8 +57164,8 @@ mutable struct mhd__ggd___phi_potential{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___phi_potential} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___phi_potential} + _parent::WeakRef end function mhd__ggd___phi_potential{T}() where T @@ -57186,8 +57186,8 @@ mutable struct mhd__ggd___n_i_total{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___n_i_total} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___n_i_total} + _parent::WeakRef end function mhd__ggd___n_i_total{T}() where T @@ -57208,8 +57208,8 @@ mutable struct mhd__ggd___mass_density{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___mass_density} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___mass_density} + _parent::WeakRef end function mhd__ggd___mass_density{T}() where T @@ -57230,8 +57230,8 @@ mutable struct mhd__ggd___j_z{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___j_z} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___j_z} + _parent::WeakRef end function mhd__ggd___j_z{T}() where T @@ -57252,8 +57252,8 @@ mutable struct mhd__ggd___j_tor_r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___j_tor_r} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___j_tor_r} + _parent::WeakRef end function mhd__ggd___j_tor_r{T}() where T @@ -57274,8 +57274,8 @@ mutable struct mhd__ggd___j_tor{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___j_tor} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___j_tor} + _parent::WeakRef end function mhd__ggd___j_tor{T}() where T @@ -57296,8 +57296,8 @@ mutable struct mhd__ggd___j_r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___j_r} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___j_r} + _parent::WeakRef end function mhd__ggd___j_r{T}() where T @@ -57318,8 +57318,8 @@ mutable struct mhd__ggd___electrons__temperature{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___electrons__temperature} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___electrons__temperature} + _parent::WeakRef end function mhd__ggd___electrons__temperature{T}() where T @@ -57330,13 +57330,13 @@ end mhd__ggd___electrons__temperature() = mhd__ggd___electrons__temperature{Float64}() mutable struct mhd__ggd___electrons{T} <: IDS{T} - var"temperature" :: IDSvector{mhd__ggd___electrons__temperature{T}} + var"temperature"::IDSvector{mhd__ggd___electrons__temperature{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___electrons} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___electrons} + _parent::WeakRef end function mhd__ggd___electrons{T}() where T @@ -57358,8 +57358,8 @@ mutable struct mhd__ggd___b_field_z{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___b_field_z} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___b_field_z} + _parent::WeakRef end function mhd__ggd___b_field_z{T}() where T @@ -57380,8 +57380,8 @@ mutable struct mhd__ggd___b_field_tor{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___b_field_tor} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___b_field_tor} + _parent::WeakRef end function mhd__ggd___b_field_tor{T}() where T @@ -57402,8 +57402,8 @@ mutable struct mhd__ggd___b_field_r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___b_field_r} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___b_field_r} + _parent::WeakRef end function mhd__ggd___b_field_r{T}() where T @@ -57424,8 +57424,8 @@ mutable struct mhd__ggd___a_field_z{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___a_field_z} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___a_field_z} + _parent::WeakRef end function mhd__ggd___a_field_z{T}() where T @@ -57446,8 +57446,8 @@ mutable struct mhd__ggd___a_field_tor{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___a_field_tor} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___a_field_tor} + _parent::WeakRef end function mhd__ggd___a_field_tor{T}() where T @@ -57468,8 +57468,8 @@ mutable struct mhd__ggd___a_field_r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd___a_field_r} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd___a_field_r} + _parent::WeakRef end function mhd__ggd___a_field_r{T}() where T @@ -57480,37 +57480,37 @@ end mhd__ggd___a_field_r() = mhd__ggd___a_field_r{Float64}() mutable struct mhd__ggd{T} <: IDSvectorTimeElement{T} - var"a_field_r" :: IDSvector{mhd__ggd___a_field_r{T}} - var"a_field_tor" :: IDSvector{mhd__ggd___a_field_tor{T}} - var"a_field_z" :: IDSvector{mhd__ggd___a_field_z{T}} - var"b_field_r" :: IDSvector{mhd__ggd___b_field_r{T}} - var"b_field_tor" :: IDSvector{mhd__ggd___b_field_tor{T}} - var"b_field_z" :: IDSvector{mhd__ggd___b_field_z{T}} - var"electrons" :: mhd__ggd___electrons{T} - var"j_r" :: IDSvector{mhd__ggd___j_r{T}} - var"j_tor" :: IDSvector{mhd__ggd___j_tor{T}} - var"j_tor_r" :: IDSvector{mhd__ggd___j_tor_r{T}} - var"j_z" :: IDSvector{mhd__ggd___j_z{T}} - var"mass_density" :: IDSvector{mhd__ggd___mass_density{T}} - var"n_i_total" :: IDSvector{mhd__ggd___n_i_total{T}} - var"phi_potential" :: IDSvector{mhd__ggd___phi_potential{T}} - var"psi" :: IDSvector{mhd__ggd___psi{T}} - var"t_i_average" :: IDSvector{mhd__ggd___t_i_average{T}} + var"a_field_r"::IDSvector{mhd__ggd___a_field_r{T}} + var"a_field_tor"::IDSvector{mhd__ggd___a_field_tor{T}} + var"a_field_z"::IDSvector{mhd__ggd___a_field_z{T}} + var"b_field_r"::IDSvector{mhd__ggd___b_field_r{T}} + var"b_field_tor"::IDSvector{mhd__ggd___b_field_tor{T}} + var"b_field_z"::IDSvector{mhd__ggd___b_field_z{T}} + var"electrons"::mhd__ggd___electrons{T} + var"j_r"::IDSvector{mhd__ggd___j_r{T}} + var"j_tor"::IDSvector{mhd__ggd___j_tor{T}} + var"j_tor_r"::IDSvector{mhd__ggd___j_tor_r{T}} + var"j_z"::IDSvector{mhd__ggd___j_z{T}} + var"mass_density"::IDSvector{mhd__ggd___mass_density{T}} + var"n_i_total"::IDSvector{mhd__ggd___n_i_total{T}} + var"phi_potential"::IDSvector{mhd__ggd___phi_potential{T}} + var"psi"::IDSvector{mhd__ggd___psi{T}} + var"t_i_average"::IDSvector{mhd__ggd___t_i_average{T}} var"time" :: Float64 - var"velocity_parallel" :: IDSvector{mhd__ggd___velocity_parallel{T}} - var"velocity_parallel_over_b_field" :: IDSvector{mhd__ggd___velocity_parallel_over_b_field{T}} - var"velocity_r" :: IDSvector{mhd__ggd___velocity_r{T}} - var"velocity_tor" :: IDSvector{mhd__ggd___velocity_tor{T}} - var"velocity_z" :: IDSvector{mhd__ggd___velocity_z{T}} - var"vorticity" :: IDSvector{mhd__ggd___vorticity{T}} - var"vorticity_over_r" :: IDSvector{mhd__ggd___vorticity_over_r{T}} - var"zeff" :: IDSvector{mhd__ggd___zeff{T}} + var"velocity_parallel"::IDSvector{mhd__ggd___velocity_parallel{T}} + var"velocity_parallel_over_b_field"::IDSvector{mhd__ggd___velocity_parallel_over_b_field{T}} + var"velocity_r"::IDSvector{mhd__ggd___velocity_r{T}} + var"velocity_tor"::IDSvector{mhd__ggd___velocity_tor{T}} + var"velocity_z"::IDSvector{mhd__ggd___velocity_z{T}} + var"vorticity"::IDSvector{mhd__ggd___vorticity{T}} + var"vorticity_over_r"::IDSvector{mhd__ggd___vorticity_over_r{T}} + var"zeff"::IDSvector{mhd__ggd___zeff{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__ggd} - _parent :: WeakRef + _ref::Union{Nothing,mhd__ggd} + _parent::WeakRef end function mhd__ggd{T}() where T @@ -57555,8 +57555,8 @@ mutable struct mhd__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__code__library} - _parent :: WeakRef + _ref::Union{Nothing,mhd__code__library} + _parent::WeakRef end function mhd__code__library{T}() where T @@ -57569,7 +57569,7 @@ mhd__code__library() = mhd__code__library{Float64}() mutable struct mhd__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{mhd__code__library{T}} + var"library"::IDSvector{mhd__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -57579,8 +57579,8 @@ mutable struct mhd__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd__code} - _parent :: WeakRef + _ref::Union{Nothing,mhd__code} + _parent::WeakRef end function mhd__code{T}() where T @@ -57592,17 +57592,17 @@ end mhd__code() = mhd__code{Float64}() mutable struct mhd{T} <: IDStop{T} - var"code" :: mhd__code{T} - var"ggd" :: IDSvector{mhd__ggd{T}} - var"grid_ggd" :: IDSvector{mhd__grid_ggd{T}} - var"ids_properties" :: mhd__ids_properties{T} + var"code"::mhd__code{T} + var"ggd"::IDSvector{mhd__ggd{T}} + var"grid_ggd"::IDSvector{mhd__grid_ggd{T}} + var"ids_properties"::mhd__ids_properties{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,mhd} - _parent :: WeakRef + _ref::Union{Nothing,mhd} + _parent::WeakRef end function mhd{T}() where T @@ -57626,8 +57626,8 @@ mutable struct magnetics__shunt___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__shunt___voltage} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__shunt___voltage} + _parent::WeakRef end function magnetics__shunt___voltage{T}() where T @@ -57646,8 +57646,8 @@ mutable struct magnetics__shunt___position__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__shunt___position__second_point} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__shunt___position__second_point} + _parent::WeakRef end function magnetics__shunt___position__second_point{T}() where T @@ -57666,8 +57666,8 @@ mutable struct magnetics__shunt___position__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__shunt___position__first_point} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__shunt___position__first_point} + _parent::WeakRef end function magnetics__shunt___position__first_point{T}() where T @@ -57678,14 +57678,14 @@ end magnetics__shunt___position__first_point() = magnetics__shunt___position__first_point{Float64}() mutable struct magnetics__shunt___position{T} <: IDS{T} - var"first_point" :: magnetics__shunt___position__first_point{T} - var"second_point" :: magnetics__shunt___position__second_point{T} + var"first_point"::magnetics__shunt___position__first_point{T} + var"second_point"::magnetics__shunt___position__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__shunt___position} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__shunt___position} + _parent::WeakRef end function magnetics__shunt___position{T}() where T @@ -57701,18 +57701,18 @@ mutable struct magnetics__shunt{T} <: IDSvectorStaticElement{T} var"divertor_index" :: Int var"identifier" :: String var"name" :: String - var"position" :: magnetics__shunt___position{T} + var"position"::magnetics__shunt___position{T} var"resistance" :: T var"resistance_σ" :: T var"target_index" :: Int var"tile_index" :: Int - var"voltage" :: magnetics__shunt___voltage{T} + var"voltage"::magnetics__shunt___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__shunt} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__shunt} + _parent::WeakRef end function magnetics__shunt{T}() where T @@ -57735,8 +57735,8 @@ mutable struct magnetics__rogowski_coil___position{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__rogowski_coil___position} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__rogowski_coil___position} + _parent::WeakRef end function magnetics__rogowski_coil___position{T}() where T @@ -57754,8 +57754,8 @@ mutable struct magnetics__rogowski_coil___measured_quantity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__rogowski_coil___measured_quantity} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__rogowski_coil___measured_quantity} + _parent::WeakRef end function magnetics__rogowski_coil___measured_quantity{T}() where T @@ -57775,8 +57775,8 @@ mutable struct magnetics__rogowski_coil___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__rogowski_coil___current} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__rogowski_coil___current} + _parent::WeakRef end function magnetics__rogowski_coil___current{T}() where T @@ -57789,20 +57789,20 @@ magnetics__rogowski_coil___current() = magnetics__rogowski_coil___current{Float6 mutable struct magnetics__rogowski_coil{T} <: IDSvectorStaticElement{T} var"area" :: T var"area_σ" :: T - var"current" :: magnetics__rogowski_coil___current{T} + var"current"::magnetics__rogowski_coil___current{T} var"identifier" :: String var"indices_compound" :: Vector{Int} - var"measured_quantity" :: magnetics__rogowski_coil___measured_quantity{T} + var"measured_quantity"::magnetics__rogowski_coil___measured_quantity{T} var"name" :: String - var"position" :: IDSvector{magnetics__rogowski_coil___position{T}} + var"position"::IDSvector{magnetics__rogowski_coil___position{T}} var"turns_per_metre" :: T var"turns_per_metre_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__rogowski_coil} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__rogowski_coil} + _parent::WeakRef end function magnetics__rogowski_coil{T}() where T @@ -57824,8 +57824,8 @@ mutable struct magnetics__ip{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ip} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ip} + _parent::WeakRef end function magnetics__ip{T}() where T @@ -57843,8 +57843,8 @@ mutable struct magnetics__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__version_put} + _parent::WeakRef end function magnetics__ids_properties__version_put{T}() where T @@ -57861,8 +57861,8 @@ mutable struct magnetics__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__provenance__node} + _parent::WeakRef end function magnetics__ids_properties__provenance__node{T}() where T @@ -57873,13 +57873,13 @@ end magnetics__ids_properties__provenance__node() = magnetics__ids_properties__provenance__node{Float64}() mutable struct magnetics__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{magnetics__ids_properties__provenance__node{T}} + var"node"::IDSvector{magnetics__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__provenance} + _parent::WeakRef end function magnetics__ids_properties__provenance{T}() where T @@ -57901,8 +57901,8 @@ mutable struct magnetics__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__plugins__node___readback} + _parent::WeakRef end function magnetics__ids_properties__plugins__node___readback{T}() where T @@ -57923,8 +57923,8 @@ mutable struct magnetics__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function magnetics__ids_properties__plugins__node___put_operation{T}() where T @@ -57945,8 +57945,8 @@ mutable struct magnetics__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function magnetics__ids_properties__plugins__node___get_operation{T}() where T @@ -57957,16 +57957,16 @@ end magnetics__ids_properties__plugins__node___get_operation() = magnetics__ids_properties__plugins__node___get_operation{Float64}() mutable struct magnetics__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{magnetics__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{magnetics__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{magnetics__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{magnetics__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{magnetics__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{magnetics__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__plugins__node} + _parent::WeakRef end function magnetics__ids_properties__plugins__node{T}() where T @@ -57989,8 +57989,8 @@ mutable struct magnetics__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function magnetics__ids_properties__plugins__infrastructure_put{T}() where T @@ -58010,8 +58010,8 @@ mutable struct magnetics__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function magnetics__ids_properties__plugins__infrastructure_get{T}() where T @@ -58022,15 +58022,15 @@ end magnetics__ids_properties__plugins__infrastructure_get() = magnetics__ids_properties__plugins__infrastructure_get{Float64}() mutable struct magnetics__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: magnetics__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: magnetics__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{magnetics__ids_properties__plugins__node{T}} + var"infrastructure_get"::magnetics__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::magnetics__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{magnetics__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__plugins} + _parent::WeakRef end function magnetics__ids_properties__plugins{T}() where T @@ -58051,8 +58051,8 @@ mutable struct magnetics__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties__occurrence_type} + _parent::WeakRef end function magnetics__ids_properties__occurrence_type{T}() where T @@ -58068,17 +58068,17 @@ mutable struct magnetics__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: magnetics__ids_properties__occurrence_type{T} - var"plugins" :: magnetics__ids_properties__plugins{T} - var"provenance" :: magnetics__ids_properties__provenance{T} + var"occurrence_type"::magnetics__ids_properties__occurrence_type{T} + var"plugins"::magnetics__ids_properties__plugins{T} + var"provenance"::magnetics__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: magnetics__ids_properties__version_put{T} + var"version_put"::magnetics__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__ids_properties} + _parent::WeakRef end function magnetics__ids_properties{T}() where T @@ -58102,8 +58102,8 @@ mutable struct magnetics__flux_loop___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__flux_loop___voltage} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__flux_loop___voltage} + _parent::WeakRef end function magnetics__flux_loop___voltage{T}() where T @@ -58121,8 +58121,8 @@ mutable struct magnetics__flux_loop___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__flux_loop___type} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__flux_loop___type} + _parent::WeakRef end function magnetics__flux_loop___type{T}() where T @@ -58143,8 +58143,8 @@ mutable struct magnetics__flux_loop___position{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__flux_loop___position} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__flux_loop___position} + _parent::WeakRef end function magnetics__flux_loop___position{T}() where T @@ -58164,8 +58164,8 @@ mutable struct magnetics__flux_loop___flux{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__flux_loop___flux} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__flux_loop___flux} + _parent::WeakRef end function magnetics__flux_loop___flux{T}() where T @@ -58178,21 +58178,21 @@ magnetics__flux_loop___flux() = magnetics__flux_loop___flux{Float64}() mutable struct magnetics__flux_loop{T} <: IDSvectorStaticElement{T} var"area" :: T var"area_σ" :: T - var"flux" :: magnetics__flux_loop___flux{T} + var"flux"::magnetics__flux_loop___flux{T} var"gm9" :: T var"gm9_σ" :: T var"identifier" :: String var"indices_differential" :: Vector{Int} var"name" :: String - var"position" :: IDSvector{magnetics__flux_loop___position{T}} - var"type" :: magnetics__flux_loop___type{T} - var"voltage" :: magnetics__flux_loop___voltage{T} + var"position"::IDSvector{magnetics__flux_loop___position{T}} + var"type"::magnetics__flux_loop___type{T} + var"voltage"::magnetics__flux_loop___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__flux_loop} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__flux_loop} + _parent::WeakRef end function magnetics__flux_loop{T}() where T @@ -58215,8 +58215,8 @@ mutable struct magnetics__diamagnetic_flux{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__diamagnetic_flux} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__diamagnetic_flux} + _parent::WeakRef end function magnetics__diamagnetic_flux{T}() where T @@ -58237,8 +58237,8 @@ mutable struct magnetics__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__code__library} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__code__library} + _parent::WeakRef end function magnetics__code__library{T}() where T @@ -58251,7 +58251,7 @@ magnetics__code__library() = magnetics__code__library{Float64}() mutable struct magnetics__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{magnetics__code__library{T}} + var"library"::IDSvector{magnetics__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -58261,8 +58261,8 @@ mutable struct magnetics__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__code} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__code} + _parent::WeakRef end function magnetics__code{T}() where T @@ -58283,8 +58283,8 @@ mutable struct magnetics__b_field_tor_probe___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_tor_probe___voltage} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_tor_probe___voltage} + _parent::WeakRef end function magnetics__b_field_tor_probe___voltage{T}() where T @@ -58302,8 +58302,8 @@ mutable struct magnetics__b_field_tor_probe___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_tor_probe___type} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_tor_probe___type} + _parent::WeakRef end function magnetics__b_field_tor_probe___type{T}() where T @@ -58324,8 +58324,8 @@ mutable struct magnetics__b_field_tor_probe___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_tor_probe___position} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_tor_probe___position} + _parent::WeakRef end function magnetics__b_field_tor_probe___position{T}() where T @@ -58344,8 +58344,8 @@ mutable struct magnetics__b_field_tor_probe___non_linear_response{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_tor_probe___non_linear_response} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_tor_probe___non_linear_response} + _parent::WeakRef end function magnetics__b_field_tor_probe___non_linear_response{T}() where T @@ -58365,8 +58365,8 @@ mutable struct magnetics__b_field_tor_probe___field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_tor_probe___field} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_tor_probe___field} + _parent::WeakRef end function magnetics__b_field_tor_probe___field{T}() where T @@ -58381,27 +58381,27 @@ mutable struct magnetics__b_field_tor_probe{T} <: IDSvectorStaticElement{T} var"area_σ" :: T var"bandwidth_3db" :: Vector{<:T} var"bandwidth_3db_σ" :: Vector{<:T} - var"field" :: magnetics__b_field_tor_probe___field{T} + var"field"::magnetics__b_field_tor_probe___field{T} var"identifier" :: String var"indices_differential" :: Vector{Int} var"length" :: T var"length_σ" :: T var"name" :: String - var"non_linear_response" :: magnetics__b_field_tor_probe___non_linear_response{T} + var"non_linear_response"::magnetics__b_field_tor_probe___non_linear_response{T} var"poloidal_angle" :: T var"poloidal_angle_σ" :: T - var"position" :: magnetics__b_field_tor_probe___position{T} + var"position"::magnetics__b_field_tor_probe___position{T} var"toroidal_angle" :: T var"toroidal_angle_σ" :: T var"turns" :: Int - var"type" :: magnetics__b_field_tor_probe___type{T} - var"voltage" :: magnetics__b_field_tor_probe___voltage{T} + var"type"::magnetics__b_field_tor_probe___type{T} + var"voltage"::magnetics__b_field_tor_probe___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_tor_probe} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_tor_probe} + _parent::WeakRef end function magnetics__b_field_tor_probe{T}() where T @@ -58426,8 +58426,8 @@ mutable struct magnetics__b_field_pol_probe___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_pol_probe___voltage} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_pol_probe___voltage} + _parent::WeakRef end function magnetics__b_field_pol_probe___voltage{T}() where T @@ -58445,8 +58445,8 @@ mutable struct magnetics__b_field_pol_probe___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_pol_probe___type} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_pol_probe___type} + _parent::WeakRef end function magnetics__b_field_pol_probe___type{T}() where T @@ -58467,8 +58467,8 @@ mutable struct magnetics__b_field_pol_probe___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_pol_probe___position} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_pol_probe___position} + _parent::WeakRef end function magnetics__b_field_pol_probe___position{T}() where T @@ -58487,8 +58487,8 @@ mutable struct magnetics__b_field_pol_probe___non_linear_response{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_pol_probe___non_linear_response} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_pol_probe___non_linear_response} + _parent::WeakRef end function magnetics__b_field_pol_probe___non_linear_response{T}() where T @@ -58508,8 +58508,8 @@ mutable struct magnetics__b_field_pol_probe___field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_pol_probe___field} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_pol_probe___field} + _parent::WeakRef end function magnetics__b_field_pol_probe___field{T}() where T @@ -58524,27 +58524,27 @@ mutable struct magnetics__b_field_pol_probe{T} <: IDSvectorStaticElement{T} var"area_σ" :: T var"bandwidth_3db" :: Vector{<:T} var"bandwidth_3db_σ" :: Vector{<:T} - var"field" :: magnetics__b_field_pol_probe___field{T} + var"field"::magnetics__b_field_pol_probe___field{T} var"identifier" :: String var"indices_differential" :: Vector{Int} var"length" :: T var"length_σ" :: T var"name" :: String - var"non_linear_response" :: magnetics__b_field_pol_probe___non_linear_response{T} + var"non_linear_response"::magnetics__b_field_pol_probe___non_linear_response{T} var"poloidal_angle" :: T var"poloidal_angle_σ" :: T - var"position" :: magnetics__b_field_pol_probe___position{T} + var"position"::magnetics__b_field_pol_probe___position{T} var"toroidal_angle" :: T var"toroidal_angle_σ" :: T var"turns" :: Int - var"type" :: magnetics__b_field_pol_probe___type{T} - var"voltage" :: magnetics__b_field_pol_probe___voltage{T} + var"type"::magnetics__b_field_pol_probe___type{T} + var"voltage"::magnetics__b_field_pol_probe___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics__b_field_pol_probe} - _parent :: WeakRef + _ref::Union{Nothing,magnetics__b_field_pol_probe} + _parent::WeakRef end function magnetics__b_field_pol_probe{T}() where T @@ -58560,24 +58560,24 @@ end magnetics__b_field_pol_probe() = magnetics__b_field_pol_probe{Float64}() mutable struct magnetics{T} <: IDStop{T} - var"b_field_pol_probe" :: IDSvector{magnetics__b_field_pol_probe{T}} - var"b_field_tor_probe" :: IDSvector{magnetics__b_field_tor_probe{T}} - var"code" :: magnetics__code{T} - var"diamagnetic_flux" :: IDSvector{magnetics__diamagnetic_flux{T}} - var"flux_loop" :: IDSvector{magnetics__flux_loop{T}} - var"ids_properties" :: magnetics__ids_properties{T} - var"ip" :: IDSvector{magnetics__ip{T}} + var"b_field_pol_probe"::IDSvector{magnetics__b_field_pol_probe{T}} + var"b_field_tor_probe"::IDSvector{magnetics__b_field_tor_probe{T}} + var"code"::magnetics__code{T} + var"diamagnetic_flux"::IDSvector{magnetics__diamagnetic_flux{T}} + var"flux_loop"::IDSvector{magnetics__flux_loop{T}} + var"ids_properties"::magnetics__ids_properties{T} + var"ip"::IDSvector{magnetics__ip{T}} var"latency" :: T var"latency_σ" :: T - var"rogowski_coil" :: IDSvector{magnetics__rogowski_coil{T}} - var"shunt" :: IDSvector{magnetics__shunt{T}} + var"rogowski_coil"::IDSvector{magnetics__rogowski_coil{T}} + var"shunt"::IDSvector{magnetics__shunt{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,magnetics} - _parent :: WeakRef + _ref::Union{Nothing,magnetics} + _parent::WeakRef end function magnetics{T}() where T @@ -58604,8 +58604,8 @@ mutable struct limits__model___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__model___identifier} - _parent :: WeakRef + _ref::Union{Nothing,limits__model___identifier} + _parent::WeakRef end function limits__model___identifier{T}() where T @@ -58619,13 +58619,13 @@ mutable struct limits__model{T} <: IDSvectorStaticElement{T} var"cleared" :: Vector{Int} var"fraction" :: Vector{<:T} var"fraction_σ" :: Vector{<:T} - var"identifier" :: limits__model___identifier{T} + var"identifier"::limits__model___identifier{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__model} - _parent :: WeakRef + _ref::Union{Nothing,limits__model} + _parent::WeakRef end function limits__model{T}() where T @@ -58644,8 +58644,8 @@ mutable struct limits__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__version_put} + _parent::WeakRef end function limits__ids_properties__version_put{T}() where T @@ -58662,8 +58662,8 @@ mutable struct limits__ids_properties__provenance__node{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__provenance__node} + _parent::WeakRef end function limits__ids_properties__provenance__node{T}() where T @@ -58674,13 +58674,13 @@ end limits__ids_properties__provenance__node() = limits__ids_properties__provenance__node{Float64}() mutable struct limits__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{limits__ids_properties__provenance__node{T}} + var"node"::IDSvector{limits__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__provenance} + _parent::WeakRef end function limits__ids_properties__provenance{T}() where T @@ -58702,8 +58702,8 @@ mutable struct limits__ids_properties__plugins__node___readback{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__plugins__node___readback} + _parent::WeakRef end function limits__ids_properties__plugins__node___readback{T}() where T @@ -58724,8 +58724,8 @@ mutable struct limits__ids_properties__plugins__node___put_operation{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function limits__ids_properties__plugins__node___put_operation{T}() where T @@ -58746,8 +58746,8 @@ mutable struct limits__ids_properties__plugins__node___get_operation{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function limits__ids_properties__plugins__node___get_operation{T}() where T @@ -58758,16 +58758,16 @@ end limits__ids_properties__plugins__node___get_operation() = limits__ids_properties__plugins__node___get_operation{Float64}() mutable struct limits__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{limits__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{limits__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{limits__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{limits__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{limits__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{limits__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__plugins__node} + _parent::WeakRef end function limits__ids_properties__plugins__node{T}() where T @@ -58790,8 +58790,8 @@ mutable struct limits__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function limits__ids_properties__plugins__infrastructure_put{T}() where T @@ -58811,8 +58811,8 @@ mutable struct limits__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function limits__ids_properties__plugins__infrastructure_get{T}() where T @@ -58823,15 +58823,15 @@ end limits__ids_properties__plugins__infrastructure_get() = limits__ids_properties__plugins__infrastructure_get{Float64}() mutable struct limits__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: limits__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: limits__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{limits__ids_properties__plugins__node{T}} + var"infrastructure_get"::limits__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::limits__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{limits__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__plugins} + _parent::WeakRef end function limits__ids_properties__plugins{T}() where T @@ -58852,8 +58852,8 @@ mutable struct limits__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties__occurrence_type} + _parent::WeakRef end function limits__ids_properties__occurrence_type{T}() where T @@ -58869,17 +58869,17 @@ mutable struct limits__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: limits__ids_properties__occurrence_type{T} - var"plugins" :: limits__ids_properties__plugins{T} - var"provenance" :: limits__ids_properties__provenance{T} + var"occurrence_type"::limits__ids_properties__occurrence_type{T} + var"plugins"::limits__ids_properties__plugins{T} + var"provenance"::limits__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: limits__ids_properties__version_put{T} + var"version_put"::limits__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,limits__ids_properties} + _parent::WeakRef end function limits__ids_properties{T}() where T @@ -58904,8 +58904,8 @@ mutable struct limits__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__code__library} - _parent :: WeakRef + _ref::Union{Nothing,limits__code__library} + _parent::WeakRef end function limits__code__library{T}() where T @@ -58918,7 +58918,7 @@ limits__code__library() = limits__code__library{Float64}() mutable struct limits__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{limits__code__library{T}} + var"library"::IDSvector{limits__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -58928,8 +58928,8 @@ mutable struct limits__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits__code} - _parent :: WeakRef + _ref::Union{Nothing,limits__code} + _parent::WeakRef end function limits__code{T}() where T @@ -58942,16 +58942,16 @@ limits__code() = limits__code{Float64}() mutable struct limits{T} <: IDStop{T} var"all_cleared" :: Vector{Int} - var"code" :: limits__code{T} - var"ids_properties" :: limits__ids_properties{T} - var"model" :: IDSvector{limits__model{T}} + var"code"::limits__code{T} + var"ids_properties"::limits__ids_properties{T} + var"model"::IDSvector{limits__model{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,limits} - _parent :: WeakRef + _ref::Union{Nothing,limits} + _parent::WeakRef end function limits{T}() where T @@ -58973,8 +58973,8 @@ mutable struct lh_antennas__reference_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__reference_point} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__reference_point} + _parent::WeakRef end function lh_antennas__reference_point{T}() where T @@ -58992,8 +58992,8 @@ mutable struct lh_antennas__power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__power_launched} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__power_launched} + _parent::WeakRef end function lh_antennas__power_launched{T}() where T @@ -59011,8 +59011,8 @@ mutable struct lh_antennas__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__version_put} + _parent::WeakRef end function lh_antennas__ids_properties__version_put{T}() where T @@ -59029,8 +59029,8 @@ mutable struct lh_antennas__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__provenance__node} + _parent::WeakRef end function lh_antennas__ids_properties__provenance__node{T}() where T @@ -59041,13 +59041,13 @@ end lh_antennas__ids_properties__provenance__node() = lh_antennas__ids_properties__provenance__node{Float64}() mutable struct lh_antennas__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{lh_antennas__ids_properties__provenance__node{T}} + var"node"::IDSvector{lh_antennas__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__provenance} + _parent::WeakRef end function lh_antennas__ids_properties__provenance{T}() where T @@ -59069,8 +59069,8 @@ mutable struct lh_antennas__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__plugins__node___readback} + _parent::WeakRef end function lh_antennas__ids_properties__plugins__node___readback{T}() where T @@ -59091,8 +59091,8 @@ mutable struct lh_antennas__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function lh_antennas__ids_properties__plugins__node___put_operation{T}() where T @@ -59113,8 +59113,8 @@ mutable struct lh_antennas__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function lh_antennas__ids_properties__plugins__node___get_operation{T}() where T @@ -59125,16 +59125,16 @@ end lh_antennas__ids_properties__plugins__node___get_operation() = lh_antennas__ids_properties__plugins__node___get_operation{Float64}() mutable struct lh_antennas__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{lh_antennas__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{lh_antennas__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{lh_antennas__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{lh_antennas__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{lh_antennas__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{lh_antennas__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__plugins__node} + _parent::WeakRef end function lh_antennas__ids_properties__plugins__node{T}() where T @@ -59157,8 +59157,8 @@ mutable struct lh_antennas__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function lh_antennas__ids_properties__plugins__infrastructure_put{T}() where T @@ -59178,8 +59178,8 @@ mutable struct lh_antennas__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function lh_antennas__ids_properties__plugins__infrastructure_get{T}() where T @@ -59190,15 +59190,15 @@ end lh_antennas__ids_properties__plugins__infrastructure_get() = lh_antennas__ids_properties__plugins__infrastructure_get{Float64}() mutable struct lh_antennas__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: lh_antennas__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: lh_antennas__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{lh_antennas__ids_properties__plugins__node{T}} + var"infrastructure_get"::lh_antennas__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::lh_antennas__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{lh_antennas__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__plugins} + _parent::WeakRef end function lh_antennas__ids_properties__plugins{T}() where T @@ -59219,8 +59219,8 @@ mutable struct lh_antennas__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties__occurrence_type} + _parent::WeakRef end function lh_antennas__ids_properties__occurrence_type{T}() where T @@ -59236,17 +59236,17 @@ mutable struct lh_antennas__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: lh_antennas__ids_properties__occurrence_type{T} - var"plugins" :: lh_antennas__ids_properties__plugins{T} - var"provenance" :: lh_antennas__ids_properties__provenance{T} + var"occurrence_type"::lh_antennas__ids_properties__occurrence_type{T} + var"plugins"::lh_antennas__ids_properties__plugins{T} + var"provenance"::lh_antennas__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: lh_antennas__ids_properties__version_put{T} + var"version_put"::lh_antennas__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__ids_properties} + _parent::WeakRef end function lh_antennas__ids_properties{T}() where T @@ -59271,8 +59271,8 @@ mutable struct lh_antennas__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__code__library} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__code__library} + _parent::WeakRef end function lh_antennas__code__library{T}() where T @@ -59285,7 +59285,7 @@ lh_antennas__code__library() = lh_antennas__code__library{Float64}() mutable struct lh_antennas__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{lh_antennas__code__library{T}} + var"library"::IDSvector{lh_antennas__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -59295,8 +59295,8 @@ mutable struct lh_antennas__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__code} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__code} + _parent::WeakRef end function lh_antennas__code{T}() where T @@ -59319,8 +59319,8 @@ mutable struct lh_antennas__antenna___row___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___row___position} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___row___position} + _parent::WeakRef end function lh_antennas__antenna___row___position{T}() where T @@ -59336,7 +59336,7 @@ mutable struct lh_antennas__antenna___row{T} <: IDSvectorStaticElement{T} var"n_tor" :: Vector{<:T} var"n_tor_σ" :: Vector{<:T} var"name" :: String - var"position" :: lh_antennas__antenna___row___position{T} + var"position"::lh_antennas__antenna___row___position{T} var"power_density_spectrum_1d" :: Matrix{<:T} var"power_density_spectrum_1d_σ" :: Matrix{<:T} var"power_density_spectrum_2d" :: Array{<:T, 3} @@ -59346,8 +59346,8 @@ mutable struct lh_antennas__antenna___row{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___row} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___row} + _parent::WeakRef end function lh_antennas__antenna___row{T}() where T @@ -59366,8 +59366,8 @@ mutable struct lh_antennas__antenna___reflection_coefficient{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___reflection_coefficient} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___reflection_coefficient} + _parent::WeakRef end function lh_antennas__antenna___reflection_coefficient{T}() where T @@ -59385,8 +59385,8 @@ mutable struct lh_antennas__antenna___pressure_tank{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___pressure_tank} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___pressure_tank} + _parent::WeakRef end function lh_antennas__antenna___pressure_tank{T}() where T @@ -59404,8 +59404,8 @@ mutable struct lh_antennas__antenna___power_reflected{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___power_reflected} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___power_reflected} + _parent::WeakRef end function lh_antennas__antenna___power_reflected{T}() where T @@ -59423,8 +59423,8 @@ mutable struct lh_antennas__antenna___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___power_launched} + _parent::WeakRef end function lh_antennas__antenna___power_launched{T}() where T @@ -59442,8 +59442,8 @@ mutable struct lh_antennas__antenna___power_forward{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___power_forward} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___power_forward} + _parent::WeakRef end function lh_antennas__antenna___power_forward{T}() where T @@ -59461,8 +59461,8 @@ mutable struct lh_antennas__antenna___position__z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___position__z} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___position__z} + _parent::WeakRef end function lh_antennas__antenna___position__z{T}() where T @@ -59480,8 +59480,8 @@ mutable struct lh_antennas__antenna___position__r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___position__r} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___position__r} + _parent::WeakRef end function lh_antennas__antenna___position__r{T}() where T @@ -59499,8 +59499,8 @@ mutable struct lh_antennas__antenna___position__phi{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___position__phi} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___position__phi} + _parent::WeakRef end function lh_antennas__antenna___position__phi{T}() where T @@ -59512,15 +59512,15 @@ lh_antennas__antenna___position__phi() = lh_antennas__antenna___position__phi{Fl mutable struct lh_antennas__antenna___position{T} <: IDS{T} var"definition" :: String - var"phi" :: lh_antennas__antenna___position__phi{T} - var"r" :: lh_antennas__antenna___position__r{T} - var"z" :: lh_antennas__antenna___position__z{T} + var"phi"::lh_antennas__antenna___position__phi{T} + var"r"::lh_antennas__antenna___position__r{T} + var"z"::lh_antennas__antenna___position__z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___position} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___position} + _parent::WeakRef end function lh_antennas__antenna___position{T}() where T @@ -59541,8 +59541,8 @@ mutable struct lh_antennas__antenna___phase_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___phase_average} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___phase_average} + _parent::WeakRef end function lh_antennas__antenna___phase_average{T}() where T @@ -59560,8 +59560,8 @@ mutable struct lh_antennas__antenna___n_parallel_peak{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___n_parallel_peak} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___n_parallel_peak} + _parent::WeakRef end function lh_antennas__antenna___n_parallel_peak{T}() where T @@ -59579,8 +59579,8 @@ mutable struct lh_antennas__antenna___n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___n_e} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___n_e} + _parent::WeakRef end function lh_antennas__antenna___n_e{T}() where T @@ -59598,8 +59598,8 @@ mutable struct lh_antennas__antenna___module___reflection_coefficient{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___module___reflection_coefficient} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___module___reflection_coefficient} + _parent::WeakRef end function lh_antennas__antenna___module___reflection_coefficient{T}() where T @@ -59617,8 +59617,8 @@ mutable struct lh_antennas__antenna___module___power_reflected{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___module___power_reflected} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___module___power_reflected} + _parent::WeakRef end function lh_antennas__antenna___module___power_reflected{T}() where T @@ -59636,8 +59636,8 @@ mutable struct lh_antennas__antenna___module___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___module___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___module___power_launched} + _parent::WeakRef end function lh_antennas__antenna___module___power_launched{T}() where T @@ -59655,8 +59655,8 @@ mutable struct lh_antennas__antenna___module___power_forward{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___module___power_forward} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___module___power_forward} + _parent::WeakRef end function lh_antennas__antenna___module___power_forward{T}() where T @@ -59674,8 +59674,8 @@ mutable struct lh_antennas__antenna___module___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___module___phase} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___module___phase} + _parent::WeakRef end function lh_antennas__antenna___module___phase{T}() where T @@ -59688,17 +59688,17 @@ lh_antennas__antenna___module___phase() = lh_antennas__antenna___module___phase{ mutable struct lh_antennas__antenna___module{T} <: IDSvectorStaticElement{T} var"identifier" :: String var"name" :: String - var"phase" :: lh_antennas__antenna___module___phase{T} - var"power_forward" :: lh_antennas__antenna___module___power_forward{T} - var"power_launched" :: lh_antennas__antenna___module___power_launched{T} - var"power_reflected" :: lh_antennas__antenna___module___power_reflected{T} - var"reflection_coefficient" :: lh_antennas__antenna___module___reflection_coefficient{T} + var"phase"::lh_antennas__antenna___module___phase{T} + var"power_forward"::lh_antennas__antenna___module___power_forward{T} + var"power_launched"::lh_antennas__antenna___module___power_launched{T} + var"power_reflected"::lh_antennas__antenna___module___power_reflected{T} + var"reflection_coefficient"::lh_antennas__antenna___module___reflection_coefficient{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___module} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___module} + _parent::WeakRef end function lh_antennas__antenna___module{T}() where T @@ -59724,8 +59724,8 @@ mutable struct lh_antennas__antenna___efficiency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna___efficiency} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna___efficiency} + _parent::WeakRef end function lh_antennas__antenna___efficiency{T}() where T @@ -59740,29 +59740,29 @@ mutable struct lh_antennas__antenna{T} <: IDSvectorStaticElement{T} var"available_launch_power_σ" :: T var"distance_to_antenna" :: Vector{<:T} var"distance_to_antenna_σ" :: Vector{<:T} - var"efficiency" :: lh_antennas__antenna___efficiency{T} + var"efficiency"::lh_antennas__antenna___efficiency{T} var"frequency" :: T var"frequency_σ" :: T var"identifier" :: String var"model_name" :: String - var"module" :: IDSvector{lh_antennas__antenna___module{T}} - var"n_e" :: lh_antennas__antenna___n_e{T} - var"n_parallel_peak" :: lh_antennas__antenna___n_parallel_peak{T} + var"module"::IDSvector{lh_antennas__antenna___module{T}} + var"n_e"::lh_antennas__antenna___n_e{T} + var"n_parallel_peak"::lh_antennas__antenna___n_parallel_peak{T} var"name" :: String - var"phase_average" :: lh_antennas__antenna___phase_average{T} - var"position" :: lh_antennas__antenna___position{T} - var"power_forward" :: lh_antennas__antenna___power_forward{T} - var"power_launched" :: lh_antennas__antenna___power_launched{T} - var"power_reflected" :: lh_antennas__antenna___power_reflected{T} - var"pressure_tank" :: lh_antennas__antenna___pressure_tank{T} - var"reflection_coefficient" :: lh_antennas__antenna___reflection_coefficient{T} - var"row" :: IDSvector{lh_antennas__antenna___row{T}} + var"phase_average"::lh_antennas__antenna___phase_average{T} + var"position"::lh_antennas__antenna___position{T} + var"power_forward"::lh_antennas__antenna___power_forward{T} + var"power_launched"::lh_antennas__antenna___power_launched{T} + var"power_reflected"::lh_antennas__antenna___power_reflected{T} + var"pressure_tank"::lh_antennas__antenna___pressure_tank{T} + var"reflection_coefficient"::lh_antennas__antenna___reflection_coefficient{T} + var"row"::IDSvector{lh_antennas__antenna___row{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas__antenna} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas__antenna} + _parent::WeakRef end function lh_antennas__antenna{T}() where T @@ -59785,20 +59785,20 @@ end lh_antennas__antenna() = lh_antennas__antenna{Float64}() mutable struct lh_antennas{T} <: IDStop{T} - var"antenna" :: IDSvector{lh_antennas__antenna{T}} - var"code" :: lh_antennas__code{T} - var"ids_properties" :: lh_antennas__ids_properties{T} + var"antenna"::IDSvector{lh_antennas__antenna{T}} + var"code"::lh_antennas__code{T} + var"ids_properties"::lh_antennas__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"power_launched" :: lh_antennas__power_launched{T} - var"reference_point" :: lh_antennas__reference_point{T} + var"power_launched"::lh_antennas__power_launched{T} + var"reference_point"::lh_antennas__reference_point{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,lh_antennas} - _parent :: WeakRef + _ref::Union{Nothing,lh_antennas} + _parent::WeakRef end function lh_antennas{T}() where T @@ -59822,8 +59822,8 @@ mutable struct langmuir_probes__reciprocating___plunge___v_plasma{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___v_plasma} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___v_plasma} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___v_plasma{T}() where T @@ -59842,8 +59842,8 @@ mutable struct langmuir_probes__reciprocating___plunge___t_i_average{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___t_i_average} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___t_i_average{T}() where T @@ -59862,8 +59862,8 @@ mutable struct langmuir_probes__reciprocating___plunge___t_e_average{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___t_e_average} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___t_e_average} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___t_e_average{T}() where T @@ -59886,8 +59886,8 @@ mutable struct langmuir_probes__reciprocating___plunge___position_average{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___position_average} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___position_average} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___position_average{T}() where T @@ -59906,8 +59906,8 @@ mutable struct langmuir_probes__reciprocating___plunge___n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___n_e} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___n_e} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___n_e{T}() where T @@ -59926,8 +59926,8 @@ mutable struct langmuir_probes__reciprocating___plunge___mach_number_parallel{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___mach_number_parallel} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___mach_number_parallel} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___mach_number_parallel{T}() where T @@ -59946,8 +59946,8 @@ mutable struct langmuir_probes__reciprocating___plunge___distance_x_point_z{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___distance_x_point_z} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___distance_x_point_z} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___distance_x_point_z{T}() where T @@ -59966,8 +59966,8 @@ mutable struct langmuir_probes__reciprocating___plunge___distance_separatrix_mid _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___distance_separatrix_midplane} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___distance_separatrix_midplane} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___distance_separatrix_midplane{T}() where T @@ -59986,8 +59986,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___v_floating_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___v_floating_sigma} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___v_floating_sigma} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___v_floating_sigma{T}() where T @@ -60006,8 +60006,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___v_floating{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___v_floating} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___v_floating} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___v_floating{T}() where T @@ -60026,8 +60026,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___t_i{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___t_i} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___t_i} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___t_i{T}() where T @@ -60046,8 +60046,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___t_e{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___t_e} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___t_e} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___t_e{T}() where T @@ -60070,8 +60070,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___position{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___position} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___position} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___position{T}() where T @@ -60090,8 +60090,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___j_i_skew{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_skew} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_skew} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___j_i_skew{T}() where T @@ -60110,8 +60110,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___j_i_sigma{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_sigma} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_sigma} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___j_i_sigma{T}() where T @@ -60130,8 +60130,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___j_i_saturat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_saturation} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_saturation} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___j_i_saturation{T}() where T @@ -60150,8 +60150,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___j_i_paralle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_parallel} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_parallel} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___j_i_parallel{T}() where T @@ -60170,8 +60170,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___j_i_kurtosi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_kurtosis} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___j_i_kurtosis} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___j_i_kurtosis{T}() where T @@ -60190,8 +60190,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___ion_saturat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___ion_saturation_current} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___ion_saturation_current} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___ion_saturation_current{T}() where T @@ -60210,8 +60210,8 @@ mutable struct langmuir_probes__reciprocating___plunge___collector___heat_flux_p _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector___heat_flux_parallel} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector___heat_flux_parallel} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector___heat_flux_parallel{T}() where T @@ -60222,24 +60222,24 @@ end langmuir_probes__reciprocating___plunge___collector___heat_flux_parallel() = langmuir_probes__reciprocating___plunge___collector___heat_flux_parallel{Float64}() mutable struct langmuir_probes__reciprocating___plunge___collector{T} <: IDSvectorStaticElement{T} - var"heat_flux_parallel" :: langmuir_probes__reciprocating___plunge___collector___heat_flux_parallel{T} - var"ion_saturation_current" :: langmuir_probes__reciprocating___plunge___collector___ion_saturation_current{T} - var"j_i_kurtosis" :: langmuir_probes__reciprocating___plunge___collector___j_i_kurtosis{T} - var"j_i_parallel" :: langmuir_probes__reciprocating___plunge___collector___j_i_parallel{T} - var"j_i_saturation" :: langmuir_probes__reciprocating___plunge___collector___j_i_saturation{T} - var"j_i_sigma" :: langmuir_probes__reciprocating___plunge___collector___j_i_sigma{T} - var"j_i_skew" :: langmuir_probes__reciprocating___plunge___collector___j_i_skew{T} - var"position" :: langmuir_probes__reciprocating___plunge___collector___position{T} - var"t_e" :: langmuir_probes__reciprocating___plunge___collector___t_e{T} - var"t_i" :: langmuir_probes__reciprocating___plunge___collector___t_i{T} - var"v_floating" :: langmuir_probes__reciprocating___plunge___collector___v_floating{T} - var"v_floating_sigma" :: langmuir_probes__reciprocating___plunge___collector___v_floating_sigma{T} + var"heat_flux_parallel"::langmuir_probes__reciprocating___plunge___collector___heat_flux_parallel{T} + var"ion_saturation_current"::langmuir_probes__reciprocating___plunge___collector___ion_saturation_current{T} + var"j_i_kurtosis"::langmuir_probes__reciprocating___plunge___collector___j_i_kurtosis{T} + var"j_i_parallel"::langmuir_probes__reciprocating___plunge___collector___j_i_parallel{T} + var"j_i_saturation"::langmuir_probes__reciprocating___plunge___collector___j_i_saturation{T} + var"j_i_sigma"::langmuir_probes__reciprocating___plunge___collector___j_i_sigma{T} + var"j_i_skew"::langmuir_probes__reciprocating___plunge___collector___j_i_skew{T} + var"position"::langmuir_probes__reciprocating___plunge___collector___position{T} + var"t_e"::langmuir_probes__reciprocating___plunge___collector___t_e{T} + var"t_i"::langmuir_probes__reciprocating___plunge___collector___t_i{T} + var"v_floating"::langmuir_probes__reciprocating___plunge___collector___v_floating{T} + var"v_floating_sigma"::langmuir_probes__reciprocating___plunge___collector___v_floating_sigma{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___collector} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___collector} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___collector{T}() where T @@ -60270,8 +60270,8 @@ mutable struct langmuir_probes__reciprocating___plunge___b_field_angle{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge___b_field_angle} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge___b_field_angle} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge___b_field_angle{T}() where T @@ -60282,25 +60282,25 @@ end langmuir_probes__reciprocating___plunge___b_field_angle() = langmuir_probes__reciprocating___plunge___b_field_angle{Float64}() mutable struct langmuir_probes__reciprocating___plunge{T} <: IDSvectorTimeElement{T} - var"b_field_angle" :: langmuir_probes__reciprocating___plunge___b_field_angle{T} - var"collector" :: IDSvector{langmuir_probes__reciprocating___plunge___collector{T}} - var"distance_separatrix_midplane" :: langmuir_probes__reciprocating___plunge___distance_separatrix_midplane{T} - var"distance_x_point_z" :: langmuir_probes__reciprocating___plunge___distance_x_point_z{T} - var"mach_number_parallel" :: langmuir_probes__reciprocating___plunge___mach_number_parallel{T} - var"n_e" :: langmuir_probes__reciprocating___plunge___n_e{T} - var"position_average" :: langmuir_probes__reciprocating___plunge___position_average{T} - var"t_e_average" :: langmuir_probes__reciprocating___plunge___t_e_average{T} - var"t_i_average" :: langmuir_probes__reciprocating___plunge___t_i_average{T} + var"b_field_angle"::langmuir_probes__reciprocating___plunge___b_field_angle{T} + var"collector"::IDSvector{langmuir_probes__reciprocating___plunge___collector{T}} + var"distance_separatrix_midplane"::langmuir_probes__reciprocating___plunge___distance_separatrix_midplane{T} + var"distance_x_point_z"::langmuir_probes__reciprocating___plunge___distance_x_point_z{T} + var"mach_number_parallel"::langmuir_probes__reciprocating___plunge___mach_number_parallel{T} + var"n_e"::langmuir_probes__reciprocating___plunge___n_e{T} + var"position_average"::langmuir_probes__reciprocating___plunge___position_average{T} + var"t_e_average"::langmuir_probes__reciprocating___plunge___t_e_average{T} + var"t_i_average"::langmuir_probes__reciprocating___plunge___t_i_average{T} var"time" :: Float64 var"time_within_plunge" :: Vector{<:T} var"time_within_plunge_σ" :: Vector{<:T} - var"v_plasma" :: langmuir_probes__reciprocating___plunge___v_plasma{T} + var"v_plasma"::langmuir_probes__reciprocating___plunge___v_plasma{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating___plunge} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating___plunge} + _parent::WeakRef end function langmuir_probes__reciprocating___plunge{T}() where T @@ -60323,15 +60323,15 @@ langmuir_probes__reciprocating___plunge() = langmuir_probes__reciprocating___plu mutable struct langmuir_probes__reciprocating{T} <: IDSvectorStaticElement{T} var"identifier" :: String var"name" :: String - var"plunge" :: IDSvector{langmuir_probes__reciprocating___plunge{T}} + var"plunge"::IDSvector{langmuir_probes__reciprocating___plunge{T}} var"surface_area" :: Vector{<:T} var"surface_area_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__reciprocating} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__reciprocating} + _parent::WeakRef end function langmuir_probes__reciprocating{T}() where T @@ -60350,8 +60350,8 @@ mutable struct langmuir_probes__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__midplane} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__midplane} + _parent::WeakRef end function langmuir_probes__midplane{T}() where T @@ -60369,8 +60369,8 @@ mutable struct langmuir_probes__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__version_put} + _parent::WeakRef end function langmuir_probes__ids_properties__version_put{T}() where T @@ -60387,8 +60387,8 @@ mutable struct langmuir_probes__ids_properties__provenance__node{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__provenance__node} + _parent::WeakRef end function langmuir_probes__ids_properties__provenance__node{T}() where T @@ -60399,13 +60399,13 @@ end langmuir_probes__ids_properties__provenance__node() = langmuir_probes__ids_properties__provenance__node{Float64}() mutable struct langmuir_probes__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{langmuir_probes__ids_properties__provenance__node{T}} + var"node"::IDSvector{langmuir_probes__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__provenance} + _parent::WeakRef end function langmuir_probes__ids_properties__provenance{T}() where T @@ -60427,8 +60427,8 @@ mutable struct langmuir_probes__ids_properties__plugins__node___readback{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__plugins__node___readback} + _parent::WeakRef end function langmuir_probes__ids_properties__plugins__node___readback{T}() where T @@ -60449,8 +60449,8 @@ mutable struct langmuir_probes__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function langmuir_probes__ids_properties__plugins__node___put_operation{T}() where T @@ -60471,8 +60471,8 @@ mutable struct langmuir_probes__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function langmuir_probes__ids_properties__plugins__node___get_operation{T}() where T @@ -60483,16 +60483,16 @@ end langmuir_probes__ids_properties__plugins__node___get_operation() = langmuir_probes__ids_properties__plugins__node___get_operation{Float64}() mutable struct langmuir_probes__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{langmuir_probes__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{langmuir_probes__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{langmuir_probes__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{langmuir_probes__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{langmuir_probes__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{langmuir_probes__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__plugins__node} + _parent::WeakRef end function langmuir_probes__ids_properties__plugins__node{T}() where T @@ -60515,8 +60515,8 @@ mutable struct langmuir_probes__ids_properties__plugins__infrastructure_put{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function langmuir_probes__ids_properties__plugins__infrastructure_put{T}() where T @@ -60536,8 +60536,8 @@ mutable struct langmuir_probes__ids_properties__plugins__infrastructure_get{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function langmuir_probes__ids_properties__plugins__infrastructure_get{T}() where T @@ -60548,15 +60548,15 @@ end langmuir_probes__ids_properties__plugins__infrastructure_get() = langmuir_probes__ids_properties__plugins__infrastructure_get{Float64}() mutable struct langmuir_probes__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: langmuir_probes__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: langmuir_probes__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{langmuir_probes__ids_properties__plugins__node{T}} + var"infrastructure_get"::langmuir_probes__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::langmuir_probes__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{langmuir_probes__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__plugins} + _parent::WeakRef end function langmuir_probes__ids_properties__plugins{T}() where T @@ -60577,8 +60577,8 @@ mutable struct langmuir_probes__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties__occurrence_type} + _parent::WeakRef end function langmuir_probes__ids_properties__occurrence_type{T}() where T @@ -60594,17 +60594,17 @@ mutable struct langmuir_probes__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: langmuir_probes__ids_properties__occurrence_type{T} - var"plugins" :: langmuir_probes__ids_properties__plugins{T} - var"provenance" :: langmuir_probes__ids_properties__provenance{T} + var"occurrence_type"::langmuir_probes__ids_properties__occurrence_type{T} + var"plugins"::langmuir_probes__ids_properties__plugins{T} + var"provenance"::langmuir_probes__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: langmuir_probes__ids_properties__version_put{T} + var"version_put"::langmuir_probes__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__ids_properties} + _parent::WeakRef end function langmuir_probes__ids_properties{T}() where T @@ -60628,8 +60628,8 @@ mutable struct langmuir_probes__equilibrium_id__data_entry{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__equilibrium_id__data_entry} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__equilibrium_id__data_entry} + _parent::WeakRef end function langmuir_probes__equilibrium_id__data_entry{T}() where T @@ -60640,15 +60640,15 @@ end langmuir_probes__equilibrium_id__data_entry() = langmuir_probes__equilibrium_id__data_entry{Float64}() mutable struct langmuir_probes__equilibrium_id{T} <: IDS{T} - var"data_entry" :: langmuir_probes__equilibrium_id__data_entry{T} + var"data_entry"::langmuir_probes__equilibrium_id__data_entry{T} var"name" :: String var"occurrence" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__equilibrium_id} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__equilibrium_id} + _parent::WeakRef end function langmuir_probes__equilibrium_id{T}() where T @@ -60668,8 +60668,8 @@ mutable struct langmuir_probes__embedded___v_plasma{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___v_plasma} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___v_plasma} + _parent::WeakRef end function langmuir_probes__embedded___v_plasma{T}() where T @@ -60688,8 +60688,8 @@ mutable struct langmuir_probes__embedded___v_floating_sigma{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___v_floating_sigma} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___v_floating_sigma} + _parent::WeakRef end function langmuir_probes__embedded___v_floating_sigma{T}() where T @@ -60708,8 +60708,8 @@ mutable struct langmuir_probes__embedded___v_floating{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___v_floating} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___v_floating} + _parent::WeakRef end function langmuir_probes__embedded___v_floating{T}() where T @@ -60728,8 +60728,8 @@ mutable struct langmuir_probes__embedded___t_i{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___t_i} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___t_i} + _parent::WeakRef end function langmuir_probes__embedded___t_i{T}() where T @@ -60748,8 +60748,8 @@ mutable struct langmuir_probes__embedded___t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___t_e} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___t_e} + _parent::WeakRef end function langmuir_probes__embedded___t_e{T}() where T @@ -60768,8 +60768,8 @@ mutable struct langmuir_probes__embedded___surface_area_effective{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___surface_area_effective} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___surface_area_effective} + _parent::WeakRef end function langmuir_probes__embedded___surface_area_effective{T}() where T @@ -60790,8 +60790,8 @@ mutable struct langmuir_probes__embedded___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___position} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___position} + _parent::WeakRef end function langmuir_probes__embedded___position{T}() where T @@ -60810,8 +60810,8 @@ mutable struct langmuir_probes__embedded___n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___n_e} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___n_e} + _parent::WeakRef end function langmuir_probes__embedded___n_e{T}() where T @@ -60830,8 +60830,8 @@ mutable struct langmuir_probes__embedded___multi_temperature_fits___t_i{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___multi_temperature_fits___t_i} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___multi_temperature_fits___t_i} + _parent::WeakRef end function langmuir_probes__embedded___multi_temperature_fits___t_i{T}() where T @@ -60850,8 +60850,8 @@ mutable struct langmuir_probes__embedded___multi_temperature_fits___t_e{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___multi_temperature_fits___t_e} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___multi_temperature_fits___t_e} + _parent::WeakRef end function langmuir_probes__embedded___multi_temperature_fits___t_e{T}() where T @@ -60862,15 +60862,15 @@ end langmuir_probes__embedded___multi_temperature_fits___t_e() = langmuir_probes__embedded___multi_temperature_fits___t_e{Float64}() mutable struct langmuir_probes__embedded___multi_temperature_fits{T} <: IDSvectorStaticElement{T} - var"t_e" :: langmuir_probes__embedded___multi_temperature_fits___t_e{T} - var"t_i" :: langmuir_probes__embedded___multi_temperature_fits___t_i{T} + var"t_e"::langmuir_probes__embedded___multi_temperature_fits___t_e{T} + var"t_i"::langmuir_probes__embedded___multi_temperature_fits___t_i{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___multi_temperature_fits} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___multi_temperature_fits} + _parent::WeakRef end function langmuir_probes__embedded___multi_temperature_fits{T}() where T @@ -60891,8 +60891,8 @@ mutable struct langmuir_probes__embedded___j_i_saturation_skew{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___j_i_saturation_skew} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___j_i_saturation_skew} + _parent::WeakRef end function langmuir_probes__embedded___j_i_saturation_skew{T}() where T @@ -60911,8 +60911,8 @@ mutable struct langmuir_probes__embedded___j_i_saturation_sigma{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___j_i_saturation_sigma} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___j_i_saturation_sigma} + _parent::WeakRef end function langmuir_probes__embedded___j_i_saturation_sigma{T}() where T @@ -60931,8 +60931,8 @@ mutable struct langmuir_probes__embedded___j_i_saturation_kurtosis{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___j_i_saturation_kurtosis} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___j_i_saturation_kurtosis} + _parent::WeakRef end function langmuir_probes__embedded___j_i_saturation_kurtosis{T}() where T @@ -60951,8 +60951,8 @@ mutable struct langmuir_probes__embedded___j_i_saturation{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___j_i_saturation} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___j_i_saturation} + _parent::WeakRef end function langmuir_probes__embedded___j_i_saturation{T}() where T @@ -60971,8 +60971,8 @@ mutable struct langmuir_probes__embedded___j_i_parallel_sigma{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___j_i_parallel_sigma} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___j_i_parallel_sigma} + _parent::WeakRef end function langmuir_probes__embedded___j_i_parallel_sigma{T}() where T @@ -60991,8 +60991,8 @@ mutable struct langmuir_probes__embedded___j_i_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___j_i_parallel} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___j_i_parallel} + _parent::WeakRef end function langmuir_probes__embedded___j_i_parallel{T}() where T @@ -61011,8 +61011,8 @@ mutable struct langmuir_probes__embedded___ion_saturation_current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___ion_saturation_current} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___ion_saturation_current} + _parent::WeakRef end function langmuir_probes__embedded___ion_saturation_current{T}() where T @@ -61031,8 +61031,8 @@ mutable struct langmuir_probes__embedded___heat_flux_parallel{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___heat_flux_parallel} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___heat_flux_parallel} + _parent::WeakRef end function langmuir_probes__embedded___heat_flux_parallel{T}() where T @@ -61051,8 +61051,8 @@ mutable struct langmuir_probes__embedded___fluence{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___fluence} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___fluence} + _parent::WeakRef end function langmuir_probes__embedded___fluence{T}() where T @@ -61071,8 +61071,8 @@ mutable struct langmuir_probes__embedded___distance_separatrix_midplane{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___distance_separatrix_midplane} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___distance_separatrix_midplane} + _parent::WeakRef end function langmuir_probes__embedded___distance_separatrix_midplane{T}() where T @@ -61091,8 +61091,8 @@ mutable struct langmuir_probes__embedded___b_field_angle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded___b_field_angle} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded___b_field_angle} + _parent::WeakRef end function langmuir_probes__embedded___b_field_angle{T}() where T @@ -61103,37 +61103,37 @@ end langmuir_probes__embedded___b_field_angle() = langmuir_probes__embedded___b_field_angle{Float64}() mutable struct langmuir_probes__embedded{T} <: IDSvectorStaticElement{T} - var"b_field_angle" :: langmuir_probes__embedded___b_field_angle{T} - var"distance_separatrix_midplane" :: langmuir_probes__embedded___distance_separatrix_midplane{T} - var"fluence" :: langmuir_probes__embedded___fluence{T} - var"heat_flux_parallel" :: langmuir_probes__embedded___heat_flux_parallel{T} + var"b_field_angle"::langmuir_probes__embedded___b_field_angle{T} + var"distance_separatrix_midplane"::langmuir_probes__embedded___distance_separatrix_midplane{T} + var"fluence"::langmuir_probes__embedded___fluence{T} + var"heat_flux_parallel"::langmuir_probes__embedded___heat_flux_parallel{T} var"identifier" :: String - var"ion_saturation_current" :: langmuir_probes__embedded___ion_saturation_current{T} - var"j_i_parallel" :: langmuir_probes__embedded___j_i_parallel{T} - var"j_i_parallel_sigma" :: langmuir_probes__embedded___j_i_parallel_sigma{T} - var"j_i_saturation" :: langmuir_probes__embedded___j_i_saturation{T} - var"j_i_saturation_kurtosis" :: langmuir_probes__embedded___j_i_saturation_kurtosis{T} - var"j_i_saturation_sigma" :: langmuir_probes__embedded___j_i_saturation_sigma{T} - var"j_i_saturation_skew" :: langmuir_probes__embedded___j_i_saturation_skew{T} - var"multi_temperature_fits" :: IDSvector{langmuir_probes__embedded___multi_temperature_fits{T}} - var"n_e" :: langmuir_probes__embedded___n_e{T} - var"name" :: String - var"position" :: langmuir_probes__embedded___position{T} + var"ion_saturation_current"::langmuir_probes__embedded___ion_saturation_current{T} + var"j_i_parallel"::langmuir_probes__embedded___j_i_parallel{T} + var"j_i_parallel_sigma"::langmuir_probes__embedded___j_i_parallel_sigma{T} + var"j_i_saturation"::langmuir_probes__embedded___j_i_saturation{T} + var"j_i_saturation_kurtosis"::langmuir_probes__embedded___j_i_saturation_kurtosis{T} + var"j_i_saturation_sigma"::langmuir_probes__embedded___j_i_saturation_sigma{T} + var"j_i_saturation_skew"::langmuir_probes__embedded___j_i_saturation_skew{T} + var"multi_temperature_fits"::IDSvector{langmuir_probes__embedded___multi_temperature_fits{T}} + var"n_e"::langmuir_probes__embedded___n_e{T} + var"name" :: String + var"position"::langmuir_probes__embedded___position{T} var"surface_area" :: T var"surface_area_σ" :: T - var"surface_area_effective" :: langmuir_probes__embedded___surface_area_effective{T} - var"t_e" :: langmuir_probes__embedded___t_e{T} - var"t_i" :: langmuir_probes__embedded___t_i{T} + var"surface_area_effective"::langmuir_probes__embedded___surface_area_effective{T} + var"t_e"::langmuir_probes__embedded___t_e{T} + var"t_i"::langmuir_probes__embedded___t_i{T} var"time" :: Vector{Float64} - var"v_floating" :: langmuir_probes__embedded___v_floating{T} - var"v_floating_sigma" :: langmuir_probes__embedded___v_floating_sigma{T} - var"v_plasma" :: langmuir_probes__embedded___v_plasma{T} + var"v_floating"::langmuir_probes__embedded___v_floating{T} + var"v_floating_sigma"::langmuir_probes__embedded___v_floating_sigma{T} + var"v_plasma"::langmuir_probes__embedded___v_plasma{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__embedded} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__embedded} + _parent::WeakRef end function langmuir_probes__embedded{T}() where T @@ -61174,8 +61174,8 @@ mutable struct langmuir_probes__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__code__library} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__code__library} + _parent::WeakRef end function langmuir_probes__code__library{T}() where T @@ -61188,7 +61188,7 @@ langmuir_probes__code__library() = langmuir_probes__code__library{Float64}() mutable struct langmuir_probes__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{langmuir_probes__code__library{T}} + var"library"::IDSvector{langmuir_probes__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -61198,8 +61198,8 @@ mutable struct langmuir_probes__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes__code} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes__code} + _parent::WeakRef end function langmuir_probes__code{T}() where T @@ -61211,21 +61211,21 @@ end langmuir_probes__code() = langmuir_probes__code{Float64}() mutable struct langmuir_probes{T} <: IDStop{T} - var"code" :: langmuir_probes__code{T} - var"embedded" :: IDSvector{langmuir_probes__embedded{T}} - var"equilibrium_id" :: langmuir_probes__equilibrium_id{T} - var"ids_properties" :: langmuir_probes__ids_properties{T} + var"code"::langmuir_probes__code{T} + var"embedded"::IDSvector{langmuir_probes__embedded{T}} + var"equilibrium_id"::langmuir_probes__equilibrium_id{T} + var"ids_properties"::langmuir_probes__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"midplane" :: langmuir_probes__midplane{T} - var"reciprocating" :: IDSvector{langmuir_probes__reciprocating{T}} + var"midplane"::langmuir_probes__midplane{T} + var"reciprocating"::IDSvector{langmuir_probes__reciprocating{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,langmuir_probes} - _parent :: WeakRef + _ref::Union{Nothing,langmuir_probes} + _parent::WeakRef end function langmuir_probes{T}() where T @@ -61249,8 +61249,8 @@ mutable struct iron_core__segment___magnetisation_z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___magnetisation_z} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___magnetisation_z} + _parent::WeakRef end function iron_core__segment___magnetisation_z{T}() where T @@ -61268,8 +61268,8 @@ mutable struct iron_core__segment___magnetisation_r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___magnetisation_r} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___magnetisation_r} + _parent::WeakRef end function iron_core__segment___magnetisation_r{T}() where T @@ -61288,8 +61288,8 @@ mutable struct iron_core__segment___geometry__thick_line__second_point{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry__thick_line__second_point} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry__thick_line__second_point} + _parent::WeakRef end function iron_core__segment___geometry__thick_line__second_point{T}() where T @@ -61308,8 +61308,8 @@ mutable struct iron_core__segment___geometry__thick_line__first_point{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry__thick_line__first_point} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry__thick_line__first_point} + _parent::WeakRef end function iron_core__segment___geometry__thick_line__first_point{T}() where T @@ -61320,16 +61320,16 @@ end iron_core__segment___geometry__thick_line__first_point() = iron_core__segment___geometry__thick_line__first_point{Float64}() mutable struct iron_core__segment___geometry__thick_line{T} <: IDS{T} - var"first_point" :: iron_core__segment___geometry__thick_line__first_point{T} - var"second_point" :: iron_core__segment___geometry__thick_line__second_point{T} + var"first_point"::iron_core__segment___geometry__thick_line__first_point{T} + var"second_point"::iron_core__segment___geometry__thick_line__second_point{T} var"thickness" :: T var"thickness_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry__thick_line} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry__thick_line} + _parent::WeakRef end function iron_core__segment___geometry__thick_line{T}() where T @@ -61354,8 +61354,8 @@ mutable struct iron_core__segment___geometry__rectangle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry__rectangle} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry__rectangle} + _parent::WeakRef end function iron_core__segment___geometry__rectangle{T}() where T @@ -61374,8 +61374,8 @@ mutable struct iron_core__segment___geometry__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry__outline} + _parent::WeakRef end function iron_core__segment___geometry__outline{T}() where T @@ -61402,8 +61402,8 @@ mutable struct iron_core__segment___geometry__oblique{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry__oblique} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry__oblique} + _parent::WeakRef end function iron_core__segment___geometry__oblique{T}() where T @@ -61424,8 +61424,8 @@ mutable struct iron_core__segment___geometry__arcs_of_circle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry__arcs_of_circle} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry__arcs_of_circle} + _parent::WeakRef end function iron_core__segment___geometry__arcs_of_circle{T}() where T @@ -61448,8 +61448,8 @@ mutable struct iron_core__segment___geometry__annulus{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry__annulus} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry__annulus} + _parent::WeakRef end function iron_core__segment___geometry__annulus{T}() where T @@ -61460,19 +61460,19 @@ end iron_core__segment___geometry__annulus() = iron_core__segment___geometry__annulus{Float64}() mutable struct iron_core__segment___geometry{T} <: IDS{T} - var"annulus" :: iron_core__segment___geometry__annulus{T} - var"arcs_of_circle" :: iron_core__segment___geometry__arcs_of_circle{T} + var"annulus"::iron_core__segment___geometry__annulus{T} + var"arcs_of_circle"::iron_core__segment___geometry__arcs_of_circle{T} var"geometry_type" :: Int - var"oblique" :: iron_core__segment___geometry__oblique{T} - var"outline" :: iron_core__segment___geometry__outline{T} - var"rectangle" :: iron_core__segment___geometry__rectangle{T} - var"thick_line" :: iron_core__segment___geometry__thick_line{T} + var"oblique"::iron_core__segment___geometry__oblique{T} + var"outline"::iron_core__segment___geometry__outline{T} + var"rectangle"::iron_core__segment___geometry__rectangle{T} + var"thick_line"::iron_core__segment___geometry__thick_line{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment___geometry} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment___geometry} + _parent::WeakRef end function iron_core__segment___geometry{T}() where T @@ -61491,10 +61491,10 @@ iron_core__segment___geometry() = iron_core__segment___geometry{Float64}() mutable struct iron_core__segment{T} <: IDSvectorStaticElement{T} var"b_field" :: Vector{<:T} var"b_field_σ" :: Vector{<:T} - var"geometry" :: iron_core__segment___geometry{T} + var"geometry"::iron_core__segment___geometry{T} var"identifier" :: String - var"magnetisation_r" :: iron_core__segment___magnetisation_r{T} - var"magnetisation_z" :: iron_core__segment___magnetisation_z{T} + var"magnetisation_r"::iron_core__segment___magnetisation_r{T} + var"magnetisation_z"::iron_core__segment___magnetisation_z{T} var"name" :: String var"permeability_relative" :: Vector{<:T} var"permeability_relative_σ" :: Vector{<:T} @@ -61502,8 +61502,8 @@ mutable struct iron_core__segment{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__segment} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__segment} + _parent::WeakRef end function iron_core__segment{T}() where T @@ -61524,8 +61524,8 @@ mutable struct iron_core__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__version_put} + _parent::WeakRef end function iron_core__ids_properties__version_put{T}() where T @@ -61542,8 +61542,8 @@ mutable struct iron_core__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__provenance__node} + _parent::WeakRef end function iron_core__ids_properties__provenance__node{T}() where T @@ -61554,13 +61554,13 @@ end iron_core__ids_properties__provenance__node() = iron_core__ids_properties__provenance__node{Float64}() mutable struct iron_core__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{iron_core__ids_properties__provenance__node{T}} + var"node"::IDSvector{iron_core__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__provenance} + _parent::WeakRef end function iron_core__ids_properties__provenance{T}() where T @@ -61582,8 +61582,8 @@ mutable struct iron_core__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__plugins__node___readback} + _parent::WeakRef end function iron_core__ids_properties__plugins__node___readback{T}() where T @@ -61604,8 +61604,8 @@ mutable struct iron_core__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function iron_core__ids_properties__plugins__node___put_operation{T}() where T @@ -61626,8 +61626,8 @@ mutable struct iron_core__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function iron_core__ids_properties__plugins__node___get_operation{T}() where T @@ -61638,16 +61638,16 @@ end iron_core__ids_properties__plugins__node___get_operation() = iron_core__ids_properties__plugins__node___get_operation{Float64}() mutable struct iron_core__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{iron_core__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{iron_core__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{iron_core__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{iron_core__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{iron_core__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{iron_core__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__plugins__node} + _parent::WeakRef end function iron_core__ids_properties__plugins__node{T}() where T @@ -61670,8 +61670,8 @@ mutable struct iron_core__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function iron_core__ids_properties__plugins__infrastructure_put{T}() where T @@ -61691,8 +61691,8 @@ mutable struct iron_core__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function iron_core__ids_properties__plugins__infrastructure_get{T}() where T @@ -61703,15 +61703,15 @@ end iron_core__ids_properties__plugins__infrastructure_get() = iron_core__ids_properties__plugins__infrastructure_get{Float64}() mutable struct iron_core__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: iron_core__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: iron_core__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{iron_core__ids_properties__plugins__node{T}} + var"infrastructure_get"::iron_core__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::iron_core__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{iron_core__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__plugins} + _parent::WeakRef end function iron_core__ids_properties__plugins{T}() where T @@ -61732,8 +61732,8 @@ mutable struct iron_core__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties__occurrence_type} + _parent::WeakRef end function iron_core__ids_properties__occurrence_type{T}() where T @@ -61749,17 +61749,17 @@ mutable struct iron_core__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: iron_core__ids_properties__occurrence_type{T} - var"plugins" :: iron_core__ids_properties__plugins{T} - var"provenance" :: iron_core__ids_properties__provenance{T} + var"occurrence_type"::iron_core__ids_properties__occurrence_type{T} + var"plugins"::iron_core__ids_properties__plugins{T} + var"provenance"::iron_core__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: iron_core__ids_properties__version_put{T} + var"version_put"::iron_core__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__ids_properties} + _parent::WeakRef end function iron_core__ids_properties{T}() where T @@ -61784,8 +61784,8 @@ mutable struct iron_core__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__code__library} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__code__library} + _parent::WeakRef end function iron_core__code__library{T}() where T @@ -61798,7 +61798,7 @@ iron_core__code__library() = iron_core__code__library{Float64}() mutable struct iron_core__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{iron_core__code__library{T}} + var"library"::IDSvector{iron_core__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -61808,8 +61808,8 @@ mutable struct iron_core__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core__code} - _parent :: WeakRef + _ref::Union{Nothing,iron_core__code} + _parent::WeakRef end function iron_core__code{T}() where T @@ -61821,16 +61821,16 @@ end iron_core__code() = iron_core__code{Float64}() mutable struct iron_core{T} <: IDStop{T} - var"code" :: iron_core__code{T} - var"ids_properties" :: iron_core__ids_properties{T} - var"segment" :: IDSvector{iron_core__segment{T}} + var"code"::iron_core__code{T} + var"ids_properties"::iron_core__ids_properties{T} + var"segment"::IDSvector{iron_core__segment{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,iron_core} - _parent :: WeakRef + _ref::Union{Nothing,iron_core} + _parent::WeakRef end function iron_core{T}() where T @@ -61853,8 +61853,8 @@ mutable struct interferometer__n_e_volume_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__n_e_volume_average} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__n_e_volume_average} + _parent::WeakRef end function interferometer__n_e_volume_average{T}() where T @@ -61872,8 +61872,8 @@ mutable struct interferometer__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__version_put} + _parent::WeakRef end function interferometer__ids_properties__version_put{T}() where T @@ -61890,8 +61890,8 @@ mutable struct interferometer__ids_properties__provenance__node{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__provenance__node} + _parent::WeakRef end function interferometer__ids_properties__provenance__node{T}() where T @@ -61902,13 +61902,13 @@ end interferometer__ids_properties__provenance__node() = interferometer__ids_properties__provenance__node{Float64}() mutable struct interferometer__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{interferometer__ids_properties__provenance__node{T}} + var"node"::IDSvector{interferometer__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__provenance} + _parent::WeakRef end function interferometer__ids_properties__provenance{T}() where T @@ -61930,8 +61930,8 @@ mutable struct interferometer__ids_properties__plugins__node___readback{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__plugins__node___readback} + _parent::WeakRef end function interferometer__ids_properties__plugins__node___readback{T}() where T @@ -61952,8 +61952,8 @@ mutable struct interferometer__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function interferometer__ids_properties__plugins__node___put_operation{T}() where T @@ -61974,8 +61974,8 @@ mutable struct interferometer__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function interferometer__ids_properties__plugins__node___get_operation{T}() where T @@ -61986,16 +61986,16 @@ end interferometer__ids_properties__plugins__node___get_operation() = interferometer__ids_properties__plugins__node___get_operation{Float64}() mutable struct interferometer__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{interferometer__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{interferometer__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{interferometer__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{interferometer__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{interferometer__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{interferometer__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__plugins__node} + _parent::WeakRef end function interferometer__ids_properties__plugins__node{T}() where T @@ -62018,8 +62018,8 @@ mutable struct interferometer__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function interferometer__ids_properties__plugins__infrastructure_put{T}() where T @@ -62039,8 +62039,8 @@ mutable struct interferometer__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function interferometer__ids_properties__plugins__infrastructure_get{T}() where T @@ -62051,15 +62051,15 @@ end interferometer__ids_properties__plugins__infrastructure_get() = interferometer__ids_properties__plugins__infrastructure_get{Float64}() mutable struct interferometer__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: interferometer__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: interferometer__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{interferometer__ids_properties__plugins__node{T}} + var"infrastructure_get"::interferometer__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::interferometer__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{interferometer__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__plugins} + _parent::WeakRef end function interferometer__ids_properties__plugins{T}() where T @@ -62080,8 +62080,8 @@ mutable struct interferometer__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties__occurrence_type} + _parent::WeakRef end function interferometer__ids_properties__occurrence_type{T}() where T @@ -62097,17 +62097,17 @@ mutable struct interferometer__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: interferometer__ids_properties__occurrence_type{T} - var"plugins" :: interferometer__ids_properties__plugins{T} - var"provenance" :: interferometer__ids_properties__provenance{T} + var"occurrence_type"::interferometer__ids_properties__occurrence_type{T} + var"plugins"::interferometer__ids_properties__plugins{T} + var"provenance"::interferometer__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: interferometer__ids_properties__version_put{T} + var"version_put"::interferometer__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__ids_properties} + _parent::WeakRef end function interferometer__ids_properties{T}() where T @@ -62131,8 +62131,8 @@ mutable struct interferometer__electrons_n{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__electrons_n} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__electrons_n} + _parent::WeakRef end function interferometer__electrons_n{T}() where T @@ -62153,8 +62153,8 @@ mutable struct interferometer__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__code__library} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__code__library} + _parent::WeakRef end function interferometer__code__library{T}() where T @@ -62167,7 +62167,7 @@ interferometer__code__library() = interferometer__code__library{Float64}() mutable struct interferometer__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{interferometer__code__library{T}} + var"library"::IDSvector{interferometer__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -62177,8 +62177,8 @@ mutable struct interferometer__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__code} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__code} + _parent::WeakRef end function interferometer__code{T}() where T @@ -62197,8 +62197,8 @@ mutable struct interferometer__channel___wavelength___phase_corrected{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___wavelength___phase_corrected} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___wavelength___phase_corrected} + _parent::WeakRef end function interferometer__channel___wavelength___phase_corrected{T}() where T @@ -62212,7 +62212,7 @@ mutable struct interferometer__channel___wavelength{T} <: IDSvectorStaticElement var"fringe_jump_correction" :: Vector{Int} var"fringe_jump_correction_times" :: Vector{<:T} var"fringe_jump_correction_times_σ" :: Vector{<:T} - var"phase_corrected" :: interferometer__channel___wavelength___phase_corrected{T} + var"phase_corrected"::interferometer__channel___wavelength___phase_corrected{T} var"phase_to_n_e_line" :: T var"phase_to_n_e_line_σ" :: T var"value" :: T @@ -62221,8 +62221,8 @@ mutable struct interferometer__channel___wavelength{T} <: IDSvectorStaticElement _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___wavelength} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___wavelength} + _parent::WeakRef end function interferometer__channel___wavelength{T}() where T @@ -62241,8 +62241,8 @@ mutable struct interferometer__channel___path_length_variation{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___path_length_variation} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___path_length_variation} + _parent::WeakRef end function interferometer__channel___path_length_variation{T}() where T @@ -62262,8 +62262,8 @@ mutable struct interferometer__channel___n_e_line_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___n_e_line_average} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___n_e_line_average} + _parent::WeakRef end function interferometer__channel___n_e_line_average{T}() where T @@ -62283,8 +62283,8 @@ mutable struct interferometer__channel___n_e_line{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___n_e_line} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___n_e_line} + _parent::WeakRef end function interferometer__channel___n_e_line{T}() where T @@ -62305,8 +62305,8 @@ mutable struct interferometer__channel___n_e__positions{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___n_e__positions} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___n_e__positions} + _parent::WeakRef end function interferometer__channel___n_e__positions{T}() where T @@ -62319,14 +62319,14 @@ interferometer__channel___n_e__positions() = interferometer__channel___n_e__posi mutable struct interferometer__channel___n_e{T} <: IDS{T} var"data" :: Matrix{<:T} var"data_σ" :: Matrix{<:T} - var"positions" :: interferometer__channel___n_e__positions{T} + var"positions"::interferometer__channel___n_e__positions{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___n_e} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___n_e} + _parent::WeakRef end function interferometer__channel___n_e{T}() where T @@ -62348,8 +62348,8 @@ mutable struct interferometer__channel___line_of_sight__third_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___line_of_sight__third_point} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___line_of_sight__third_point} + _parent::WeakRef end function interferometer__channel___line_of_sight__third_point{T}() where T @@ -62370,8 +62370,8 @@ mutable struct interferometer__channel___line_of_sight__second_point{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___line_of_sight__second_point} + _parent::WeakRef end function interferometer__channel___line_of_sight__second_point{T}() where T @@ -62392,8 +62392,8 @@ mutable struct interferometer__channel___line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___line_of_sight__first_point} + _parent::WeakRef end function interferometer__channel___line_of_sight__first_point{T}() where T @@ -62404,15 +62404,15 @@ end interferometer__channel___line_of_sight__first_point() = interferometer__channel___line_of_sight__first_point{Float64}() mutable struct interferometer__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: interferometer__channel___line_of_sight__first_point{T} - var"second_point" :: interferometer__channel___line_of_sight__second_point{T} - var"third_point" :: interferometer__channel___line_of_sight__third_point{T} + var"first_point"::interferometer__channel___line_of_sight__first_point{T} + var"second_point"::interferometer__channel___line_of_sight__second_point{T} + var"third_point"::interferometer__channel___line_of_sight__third_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel___line_of_sight} + _parent::WeakRef end function interferometer__channel___line_of_sight{T}() where T @@ -62427,19 +62427,19 @@ interferometer__channel___line_of_sight() = interferometer__channel___line_of_si mutable struct interferometer__channel{T} <: IDSvectorStaticElement{T} var"identifier" :: String - var"line_of_sight" :: interferometer__channel___line_of_sight{T} - var"n_e" :: interferometer__channel___n_e{T} - var"n_e_line" :: interferometer__channel___n_e_line{T} - var"n_e_line_average" :: interferometer__channel___n_e_line_average{T} + var"line_of_sight"::interferometer__channel___line_of_sight{T} + var"n_e"::interferometer__channel___n_e{T} + var"n_e_line"::interferometer__channel___n_e_line{T} + var"n_e_line_average"::interferometer__channel___n_e_line_average{T} var"name" :: String - var"path_length_variation" :: interferometer__channel___path_length_variation{T} - var"wavelength" :: IDSvector{interferometer__channel___wavelength{T}} + var"path_length_variation"::interferometer__channel___path_length_variation{T} + var"wavelength"::IDSvector{interferometer__channel___wavelength{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer__channel} - _parent :: WeakRef + _ref::Union{Nothing,interferometer__channel} + _parent::WeakRef end function interferometer__channel{T}() where T @@ -62456,20 +62456,20 @@ end interferometer__channel() = interferometer__channel{Float64}() mutable struct interferometer{T} <: IDStop{T} - var"channel" :: IDSvector{interferometer__channel{T}} - var"code" :: interferometer__code{T} - var"electrons_n" :: interferometer__electrons_n{T} - var"ids_properties" :: interferometer__ids_properties{T} + var"channel"::IDSvector{interferometer__channel{T}} + var"code"::interferometer__code{T} + var"electrons_n"::interferometer__electrons_n{T} + var"ids_properties"::interferometer__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"n_e_volume_average" :: interferometer__n_e_volume_average{T} + var"n_e_volume_average"::interferometer__n_e_volume_average{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,interferometer} - _parent :: WeakRef + _ref::Union{Nothing,interferometer} + _parent::WeakRef end function interferometer{T}() where T @@ -62493,8 +62493,8 @@ mutable struct ic_antennas__reference_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__reference_point} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__reference_point} + _parent::WeakRef end function ic_antennas__reference_point{T}() where T @@ -62512,8 +62512,8 @@ mutable struct ic_antennas__power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__power_launched} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__power_launched} + _parent::WeakRef end function ic_antennas__power_launched{T}() where T @@ -62531,8 +62531,8 @@ mutable struct ic_antennas__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__version_put} + _parent::WeakRef end function ic_antennas__ids_properties__version_put{T}() where T @@ -62549,8 +62549,8 @@ mutable struct ic_antennas__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__provenance__node} + _parent::WeakRef end function ic_antennas__ids_properties__provenance__node{T}() where T @@ -62561,13 +62561,13 @@ end ic_antennas__ids_properties__provenance__node() = ic_antennas__ids_properties__provenance__node{Float64}() mutable struct ic_antennas__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{ic_antennas__ids_properties__provenance__node{T}} + var"node"::IDSvector{ic_antennas__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__provenance} + _parent::WeakRef end function ic_antennas__ids_properties__provenance{T}() where T @@ -62589,8 +62589,8 @@ mutable struct ic_antennas__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__plugins__node___readback} + _parent::WeakRef end function ic_antennas__ids_properties__plugins__node___readback{T}() where T @@ -62611,8 +62611,8 @@ mutable struct ic_antennas__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function ic_antennas__ids_properties__plugins__node___put_operation{T}() where T @@ -62633,8 +62633,8 @@ mutable struct ic_antennas__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function ic_antennas__ids_properties__plugins__node___get_operation{T}() where T @@ -62645,16 +62645,16 @@ end ic_antennas__ids_properties__plugins__node___get_operation() = ic_antennas__ids_properties__plugins__node___get_operation{Float64}() mutable struct ic_antennas__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{ic_antennas__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{ic_antennas__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{ic_antennas__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{ic_antennas__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{ic_antennas__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{ic_antennas__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__plugins__node} + _parent::WeakRef end function ic_antennas__ids_properties__plugins__node{T}() where T @@ -62677,8 +62677,8 @@ mutable struct ic_antennas__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function ic_antennas__ids_properties__plugins__infrastructure_put{T}() where T @@ -62698,8 +62698,8 @@ mutable struct ic_antennas__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function ic_antennas__ids_properties__plugins__infrastructure_get{T}() where T @@ -62710,15 +62710,15 @@ end ic_antennas__ids_properties__plugins__infrastructure_get() = ic_antennas__ids_properties__plugins__infrastructure_get{Float64}() mutable struct ic_antennas__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: ic_antennas__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: ic_antennas__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{ic_antennas__ids_properties__plugins__node{T}} + var"infrastructure_get"::ic_antennas__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::ic_antennas__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{ic_antennas__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__plugins} + _parent::WeakRef end function ic_antennas__ids_properties__plugins{T}() where T @@ -62739,8 +62739,8 @@ mutable struct ic_antennas__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties__occurrence_type} + _parent::WeakRef end function ic_antennas__ids_properties__occurrence_type{T}() where T @@ -62756,17 +62756,17 @@ mutable struct ic_antennas__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: ic_antennas__ids_properties__occurrence_type{T} - var"plugins" :: ic_antennas__ids_properties__plugins{T} - var"provenance" :: ic_antennas__ids_properties__provenance{T} + var"occurrence_type"::ic_antennas__ids_properties__occurrence_type{T} + var"plugins"::ic_antennas__ids_properties__plugins{T} + var"provenance"::ic_antennas__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: ic_antennas__ids_properties__version_put{T} + var"version_put"::ic_antennas__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__ids_properties} + _parent::WeakRef end function ic_antennas__ids_properties{T}() where T @@ -62791,8 +62791,8 @@ mutable struct ic_antennas__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__code__library} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__code__library} + _parent::WeakRef end function ic_antennas__code__library{T}() where T @@ -62805,7 +62805,7 @@ ic_antennas__code__library() = ic_antennas__code__library{Float64}() mutable struct ic_antennas__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{ic_antennas__code__library{T}} + var"library"::IDSvector{ic_antennas__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -62815,8 +62815,8 @@ mutable struct ic_antennas__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__code} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__code} + _parent::WeakRef end function ic_antennas__code{T}() where T @@ -62837,8 +62837,8 @@ mutable struct ic_antennas__antenna___surface_current{T} <: IDSvectorTimeElement _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___surface_current} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___surface_current} + _parent::WeakRef end function ic_antennas__antenna___surface_current{T}() where T @@ -62856,8 +62856,8 @@ mutable struct ic_antennas__antenna___power_reflected{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___power_reflected} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___power_reflected} + _parent::WeakRef end function ic_antennas__antenna___power_reflected{T}() where T @@ -62875,8 +62875,8 @@ mutable struct ic_antennas__antenna___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___power_launched} + _parent::WeakRef end function ic_antennas__antenna___power_launched{T}() where T @@ -62894,8 +62894,8 @@ mutable struct ic_antennas__antenna___power_forward{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___power_forward} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___power_forward} + _parent::WeakRef end function ic_antennas__antenna___power_forward{T}() where T @@ -62916,8 +62916,8 @@ mutable struct ic_antennas__antenna___module___voltage___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___voltage___position} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___voltage___position} + _parent::WeakRef end function ic_antennas__antenna___module___voltage___position{T}() where T @@ -62935,8 +62935,8 @@ mutable struct ic_antennas__antenna___module___voltage___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___voltage___phase} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___voltage___phase} + _parent::WeakRef end function ic_antennas__antenna___module___voltage___phase{T}() where T @@ -62954,8 +62954,8 @@ mutable struct ic_antennas__antenna___module___voltage___amplitude{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___voltage___amplitude} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___voltage___amplitude} + _parent::WeakRef end function ic_antennas__antenna___module___voltage___amplitude{T}() where T @@ -62966,17 +62966,17 @@ end ic_antennas__antenna___module___voltage___amplitude() = ic_antennas__antenna___module___voltage___amplitude{Float64}() mutable struct ic_antennas__antenna___module___voltage{T} <: IDSvectorStaticElement{T} - var"amplitude" :: ic_antennas__antenna___module___voltage___amplitude{T} + var"amplitude"::ic_antennas__antenna___module___voltage___amplitude{T} var"identifier" :: String var"name" :: String - var"phase" :: ic_antennas__antenna___module___voltage___phase{T} - var"position" :: ic_antennas__antenna___module___voltage___position{T} + var"phase"::ic_antennas__antenna___module___voltage___phase{T} + var"position"::ic_antennas__antenna___module___voltage___position{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___voltage} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___voltage} + _parent::WeakRef end function ic_antennas__antenna___module___voltage{T}() where T @@ -62997,8 +62997,8 @@ mutable struct ic_antennas__antenna___module___strap___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___phase} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___phase} + _parent::WeakRef end function ic_antennas__antenna___module___strap___phase{T}() where T @@ -63019,8 +63019,8 @@ mutable struct ic_antennas__antenna___module___strap___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___outline} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___outline} + _parent::WeakRef end function ic_antennas__antenna___module___strap___outline{T}() where T @@ -63039,8 +63039,8 @@ mutable struct ic_antennas__antenna___module___strap___geometry__thick_line__sec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry__thick_line__second_point} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry__thick_line__second_point} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry__thick_line__second_point{T}() where T @@ -63059,8 +63059,8 @@ mutable struct ic_antennas__antenna___module___strap___geometry__thick_line__fir _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry__thick_line__first_point} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry__thick_line__first_point} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry__thick_line__first_point{T}() where T @@ -63071,16 +63071,16 @@ end ic_antennas__antenna___module___strap___geometry__thick_line__first_point() = ic_antennas__antenna___module___strap___geometry__thick_line__first_point{Float64}() mutable struct ic_antennas__antenna___module___strap___geometry__thick_line{T} <: IDS{T} - var"first_point" :: ic_antennas__antenna___module___strap___geometry__thick_line__first_point{T} - var"second_point" :: ic_antennas__antenna___module___strap___geometry__thick_line__second_point{T} + var"first_point"::ic_antennas__antenna___module___strap___geometry__thick_line__first_point{T} + var"second_point"::ic_antennas__antenna___module___strap___geometry__thick_line__second_point{T} var"thickness" :: T var"thickness_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry__thick_line} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry__thick_line} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry__thick_line{T}() where T @@ -63105,8 +63105,8 @@ mutable struct ic_antennas__antenna___module___strap___geometry__rectangle{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry__rectangle} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry__rectangle} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry__rectangle{T}() where T @@ -63125,8 +63125,8 @@ mutable struct ic_antennas__antenna___module___strap___geometry__outline{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry__outline} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry__outline{T}() where T @@ -63153,8 +63153,8 @@ mutable struct ic_antennas__antenna___module___strap___geometry__oblique{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry__oblique} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry__oblique} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry__oblique{T}() where T @@ -63175,8 +63175,8 @@ mutable struct ic_antennas__antenna___module___strap___geometry__arcs_of_circle{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry__arcs_of_circle} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry__arcs_of_circle} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry__arcs_of_circle{T}() where T @@ -63199,8 +63199,8 @@ mutable struct ic_antennas__antenna___module___strap___geometry__annulus{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry__annulus} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry__annulus} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry__annulus{T}() where T @@ -63211,19 +63211,19 @@ end ic_antennas__antenna___module___strap___geometry__annulus() = ic_antennas__antenna___module___strap___geometry__annulus{Float64}() mutable struct ic_antennas__antenna___module___strap___geometry{T} <: IDS{T} - var"annulus" :: ic_antennas__antenna___module___strap___geometry__annulus{T} - var"arcs_of_circle" :: ic_antennas__antenna___module___strap___geometry__arcs_of_circle{T} + var"annulus"::ic_antennas__antenna___module___strap___geometry__annulus{T} + var"arcs_of_circle"::ic_antennas__antenna___module___strap___geometry__arcs_of_circle{T} var"geometry_type" :: Int - var"oblique" :: ic_antennas__antenna___module___strap___geometry__oblique{T} - var"outline" :: ic_antennas__antenna___module___strap___geometry__outline{T} - var"rectangle" :: ic_antennas__antenna___module___strap___geometry__rectangle{T} - var"thick_line" :: ic_antennas__antenna___module___strap___geometry__thick_line{T} + var"oblique"::ic_antennas__antenna___module___strap___geometry__oblique{T} + var"outline"::ic_antennas__antenna___module___strap___geometry__outline{T} + var"rectangle"::ic_antennas__antenna___module___strap___geometry__rectangle{T} + var"thick_line"::ic_antennas__antenna___module___strap___geometry__thick_line{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___geometry} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___geometry} + _parent::WeakRef end function ic_antennas__antenna___module___strap___geometry{T}() where T @@ -63247,8 +63247,8 @@ mutable struct ic_antennas__antenna___module___strap___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap___current} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap___current} + _parent::WeakRef end function ic_antennas__antenna___module___strap___current{T}() where T @@ -63259,20 +63259,20 @@ end ic_antennas__antenna___module___strap___current() = ic_antennas__antenna___module___strap___current{Float64}() mutable struct ic_antennas__antenna___module___strap{T} <: IDSvectorStaticElement{T} - var"current" :: ic_antennas__antenna___module___strap___current{T} + var"current"::ic_antennas__antenna___module___strap___current{T} var"distance_to_conductor" :: T var"distance_to_conductor_σ" :: T - var"geometry" :: ic_antennas__antenna___module___strap___geometry{T} - var"outline" :: ic_antennas__antenna___module___strap___outline{T} - var"phase" :: ic_antennas__antenna___module___strap___phase{T} + var"geometry"::ic_antennas__antenna___module___strap___geometry{T} + var"outline"::ic_antennas__antenna___module___strap___outline{T} + var"phase"::ic_antennas__antenna___module___strap___phase{T} var"width_tor" :: T var"width_tor_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___strap} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___strap} + _parent::WeakRef end function ic_antennas__antenna___module___strap{T}() where T @@ -63297,8 +63297,8 @@ mutable struct ic_antennas__antenna___module___pressure___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___pressure___position} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___pressure___position} + _parent::WeakRef end function ic_antennas__antenna___module___pressure___position{T}() where T @@ -63316,8 +63316,8 @@ mutable struct ic_antennas__antenna___module___pressure___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___pressure___phase} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___pressure___phase} + _parent::WeakRef end function ic_antennas__antenna___module___pressure___phase{T}() where T @@ -63335,8 +63335,8 @@ mutable struct ic_antennas__antenna___module___pressure___amplitude{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___pressure___amplitude} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___pressure___amplitude} + _parent::WeakRef end function ic_antennas__antenna___module___pressure___amplitude{T}() where T @@ -63347,17 +63347,17 @@ end ic_antennas__antenna___module___pressure___amplitude() = ic_antennas__antenna___module___pressure___amplitude{Float64}() mutable struct ic_antennas__antenna___module___pressure{T} <: IDSvectorStaticElement{T} - var"amplitude" :: ic_antennas__antenna___module___pressure___amplitude{T} + var"amplitude"::ic_antennas__antenna___module___pressure___amplitude{T} var"identifier" :: String var"name" :: String - var"phase" :: ic_antennas__antenna___module___pressure___phase{T} - var"position" :: ic_antennas__antenna___module___pressure___position{T} + var"phase"::ic_antennas__antenna___module___pressure___phase{T} + var"position"::ic_antennas__antenna___module___pressure___position{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___pressure} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___pressure} + _parent::WeakRef end function ic_antennas__antenna___module___pressure{T}() where T @@ -63378,8 +63378,8 @@ mutable struct ic_antennas__antenna___module___power_reflected{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___power_reflected} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___power_reflected} + _parent::WeakRef end function ic_antennas__antenna___module___power_reflected{T}() where T @@ -63397,8 +63397,8 @@ mutable struct ic_antennas__antenna___module___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___power_launched} + _parent::WeakRef end function ic_antennas__antenna___module___power_launched{T}() where T @@ -63416,8 +63416,8 @@ mutable struct ic_antennas__antenna___module___power_forward{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___power_forward} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___power_forward} + _parent::WeakRef end function ic_antennas__antenna___module___power_forward{T}() where T @@ -63435,8 +63435,8 @@ mutable struct ic_antennas__antenna___module___phase_reflected{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___phase_reflected} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___phase_reflected} + _parent::WeakRef end function ic_antennas__antenna___module___phase_reflected{T}() where T @@ -63454,8 +63454,8 @@ mutable struct ic_antennas__antenna___module___phase_forward{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___phase_forward} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___phase_forward} + _parent::WeakRef end function ic_antennas__antenna___module___phase_forward{T}() where T @@ -63473,8 +63473,8 @@ mutable struct ic_antennas__antenna___module___matching_element___type{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___matching_element___type} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___matching_element___type} + _parent::WeakRef end function ic_antennas__antenna___module___matching_element___type{T}() where T @@ -63492,8 +63492,8 @@ mutable struct ic_antennas__antenna___module___matching_element___phase{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___matching_element___phase} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___matching_element___phase} + _parent::WeakRef end function ic_antennas__antenna___module___matching_element___phase{T}() where T @@ -63511,8 +63511,8 @@ mutable struct ic_antennas__antenna___module___matching_element___capacitance{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___matching_element___capacitance} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___matching_element___capacitance} + _parent::WeakRef end function ic_antennas__antenna___module___matching_element___capacitance{T}() where T @@ -63523,16 +63523,16 @@ end ic_antennas__antenna___module___matching_element___capacitance() = ic_antennas__antenna___module___matching_element___capacitance{Float64}() mutable struct ic_antennas__antenna___module___matching_element{T} <: IDSvectorStaticElement{T} - var"capacitance" :: ic_antennas__antenna___module___matching_element___capacitance{T} + var"capacitance"::ic_antennas__antenna___module___matching_element___capacitance{T} var"name" :: String - var"phase" :: ic_antennas__antenna___module___matching_element___phase{T} - var"type" :: ic_antennas__antenna___module___matching_element___type{T} + var"phase"::ic_antennas__antenna___module___matching_element___phase{T} + var"type"::ic_antennas__antenna___module___matching_element___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___matching_element} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___matching_element} + _parent::WeakRef end function ic_antennas__antenna___module___matching_element{T}() where T @@ -63553,8 +63553,8 @@ mutable struct ic_antennas__antenna___module___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___frequency} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___frequency} + _parent::WeakRef end function ic_antennas__antenna___module___frequency{T}() where T @@ -63575,8 +63575,8 @@ mutable struct ic_antennas__antenna___module___current___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___current___position} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___current___position} + _parent::WeakRef end function ic_antennas__antenna___module___current___position{T}() where T @@ -63594,8 +63594,8 @@ mutable struct ic_antennas__antenna___module___current___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___current___phase} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___current___phase} + _parent::WeakRef end function ic_antennas__antenna___module___current___phase{T}() where T @@ -63613,8 +63613,8 @@ mutable struct ic_antennas__antenna___module___current___amplitude{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___current___amplitude} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___current___amplitude} + _parent::WeakRef end function ic_antennas__antenna___module___current___amplitude{T}() where T @@ -63625,17 +63625,17 @@ end ic_antennas__antenna___module___current___amplitude() = ic_antennas__antenna___module___current___amplitude{Float64}() mutable struct ic_antennas__antenna___module___current{T} <: IDSvectorStaticElement{T} - var"amplitude" :: ic_antennas__antenna___module___current___amplitude{T} + var"amplitude"::ic_antennas__antenna___module___current___amplitude{T} var"identifier" :: String var"name" :: String - var"phase" :: ic_antennas__antenna___module___current___phase{T} - var"position" :: ic_antennas__antenna___module___current___position{T} + var"phase"::ic_antennas__antenna___module___current___phase{T} + var"position"::ic_antennas__antenna___module___current___position{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___current} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___current} + _parent::WeakRef end function ic_antennas__antenna___module___current{T}() where T @@ -63656,8 +63656,8 @@ mutable struct ic_antennas__antenna___module___coupling_resistance{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module___coupling_resistance} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module___coupling_resistance} + _parent::WeakRef end function ic_antennas__antenna___module___coupling_resistance{T}() where T @@ -63668,26 +63668,26 @@ end ic_antennas__antenna___module___coupling_resistance() = ic_antennas__antenna___module___coupling_resistance{Float64}() mutable struct ic_antennas__antenna___module{T} <: IDSvectorStaticElement{T} - var"coupling_resistance" :: ic_antennas__antenna___module___coupling_resistance{T} - var"current" :: IDSvector{ic_antennas__antenna___module___current{T}} - var"frequency" :: ic_antennas__antenna___module___frequency{T} + var"coupling_resistance"::ic_antennas__antenna___module___coupling_resistance{T} + var"current"::IDSvector{ic_antennas__antenna___module___current{T}} + var"frequency"::ic_antennas__antenna___module___frequency{T} var"identifier" :: String - var"matching_element" :: IDSvector{ic_antennas__antenna___module___matching_element{T}} + var"matching_element"::IDSvector{ic_antennas__antenna___module___matching_element{T}} var"name" :: String - var"phase_forward" :: ic_antennas__antenna___module___phase_forward{T} - var"phase_reflected" :: ic_antennas__antenna___module___phase_reflected{T} - var"power_forward" :: ic_antennas__antenna___module___power_forward{T} - var"power_launched" :: ic_antennas__antenna___module___power_launched{T} - var"power_reflected" :: ic_antennas__antenna___module___power_reflected{T} - var"pressure" :: IDSvector{ic_antennas__antenna___module___pressure{T}} - var"strap" :: IDSvector{ic_antennas__antenna___module___strap{T}} - var"voltage" :: IDSvector{ic_antennas__antenna___module___voltage{T}} + var"phase_forward"::ic_antennas__antenna___module___phase_forward{T} + var"phase_reflected"::ic_antennas__antenna___module___phase_reflected{T} + var"power_forward"::ic_antennas__antenna___module___power_forward{T} + var"power_launched"::ic_antennas__antenna___module___power_launched{T} + var"power_reflected"::ic_antennas__antenna___module___power_reflected{T} + var"pressure"::IDSvector{ic_antennas__antenna___module___pressure{T}} + var"strap"::IDSvector{ic_antennas__antenna___module___strap{T}} + var"voltage"::IDSvector{ic_antennas__antenna___module___voltage{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___module} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___module} + _parent::WeakRef end function ic_antennas__antenna___module{T}() where T @@ -63717,8 +63717,8 @@ mutable struct ic_antennas__antenna___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___frequency} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___frequency} + _parent::WeakRef end function ic_antennas__antenna___frequency{T}() where T @@ -63739,8 +63739,8 @@ mutable struct ic_antennas__antenna___efficiency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna___efficiency} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna___efficiency} + _parent::WeakRef end function ic_antennas__antenna___efficiency{T}() where T @@ -63753,21 +63753,21 @@ ic_antennas__antenna___efficiency() = ic_antennas__antenna___efficiency{Float64} mutable struct ic_antennas__antenna{T} <: IDSvectorStaticElement{T} var"available_launch_power" :: T var"available_launch_power_σ" :: T - var"efficiency" :: ic_antennas__antenna___efficiency{T} - var"frequency" :: ic_antennas__antenna___frequency{T} + var"efficiency"::ic_antennas__antenna___efficiency{T} + var"frequency"::ic_antennas__antenna___frequency{T} var"identifier" :: String - var"module" :: IDSvector{ic_antennas__antenna___module{T}} + var"module"::IDSvector{ic_antennas__antenna___module{T}} var"name" :: String - var"power_forward" :: ic_antennas__antenna___power_forward{T} - var"power_launched" :: ic_antennas__antenna___power_launched{T} - var"power_reflected" :: ic_antennas__antenna___power_reflected{T} - var"surface_current" :: IDSvector{ic_antennas__antenna___surface_current{T}} + var"power_forward"::ic_antennas__antenna___power_forward{T} + var"power_launched"::ic_antennas__antenna___power_launched{T} + var"power_reflected"::ic_antennas__antenna___power_reflected{T} + var"surface_current"::IDSvector{ic_antennas__antenna___surface_current{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas__antenna} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas__antenna} + _parent::WeakRef end function ic_antennas__antenna{T}() where T @@ -63785,20 +63785,20 @@ end ic_antennas__antenna() = ic_antennas__antenna{Float64}() mutable struct ic_antennas{T} <: IDStop{T} - var"antenna" :: IDSvector{ic_antennas__antenna{T}} - var"code" :: ic_antennas__code{T} - var"ids_properties" :: ic_antennas__ids_properties{T} + var"antenna"::IDSvector{ic_antennas__antenna{T}} + var"code"::ic_antennas__code{T} + var"ids_properties"::ic_antennas__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"power_launched" :: ic_antennas__power_launched{T} - var"reference_point" :: ic_antennas__reference_point{T} + var"power_launched"::ic_antennas__power_launched{T} + var"reference_point"::ic_antennas__reference_point{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ic_antennas} - _parent :: WeakRef + _ref::Union{Nothing,ic_antennas} + _parent::WeakRef end function ic_antennas{T}() where T @@ -63821,8 +63821,8 @@ mutable struct hard_x_rays__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__version_put} + _parent::WeakRef end function hard_x_rays__ids_properties__version_put{T}() where T @@ -63839,8 +63839,8 @@ mutable struct hard_x_rays__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__provenance__node} + _parent::WeakRef end function hard_x_rays__ids_properties__provenance__node{T}() where T @@ -63851,13 +63851,13 @@ end hard_x_rays__ids_properties__provenance__node() = hard_x_rays__ids_properties__provenance__node{Float64}() mutable struct hard_x_rays__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{hard_x_rays__ids_properties__provenance__node{T}} + var"node"::IDSvector{hard_x_rays__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__provenance} + _parent::WeakRef end function hard_x_rays__ids_properties__provenance{T}() where T @@ -63879,8 +63879,8 @@ mutable struct hard_x_rays__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__plugins__node___readback} + _parent::WeakRef end function hard_x_rays__ids_properties__plugins__node___readback{T}() where T @@ -63901,8 +63901,8 @@ mutable struct hard_x_rays__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function hard_x_rays__ids_properties__plugins__node___put_operation{T}() where T @@ -63923,8 +63923,8 @@ mutable struct hard_x_rays__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function hard_x_rays__ids_properties__plugins__node___get_operation{T}() where T @@ -63935,16 +63935,16 @@ end hard_x_rays__ids_properties__plugins__node___get_operation() = hard_x_rays__ids_properties__plugins__node___get_operation{Float64}() mutable struct hard_x_rays__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{hard_x_rays__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{hard_x_rays__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{hard_x_rays__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{hard_x_rays__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{hard_x_rays__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{hard_x_rays__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__plugins__node} + _parent::WeakRef end function hard_x_rays__ids_properties__plugins__node{T}() where T @@ -63967,8 +63967,8 @@ mutable struct hard_x_rays__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function hard_x_rays__ids_properties__plugins__infrastructure_put{T}() where T @@ -63988,8 +63988,8 @@ mutable struct hard_x_rays__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function hard_x_rays__ids_properties__plugins__infrastructure_get{T}() where T @@ -64000,15 +64000,15 @@ end hard_x_rays__ids_properties__plugins__infrastructure_get() = hard_x_rays__ids_properties__plugins__infrastructure_get{Float64}() mutable struct hard_x_rays__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: hard_x_rays__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: hard_x_rays__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{hard_x_rays__ids_properties__plugins__node{T}} + var"infrastructure_get"::hard_x_rays__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::hard_x_rays__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{hard_x_rays__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__plugins} + _parent::WeakRef end function hard_x_rays__ids_properties__plugins{T}() where T @@ -64029,8 +64029,8 @@ mutable struct hard_x_rays__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties__occurrence_type} + _parent::WeakRef end function hard_x_rays__ids_properties__occurrence_type{T}() where T @@ -64046,17 +64046,17 @@ mutable struct hard_x_rays__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: hard_x_rays__ids_properties__occurrence_type{T} - var"plugins" :: hard_x_rays__ids_properties__plugins{T} - var"provenance" :: hard_x_rays__ids_properties__provenance{T} + var"occurrence_type"::hard_x_rays__ids_properties__occurrence_type{T} + var"plugins"::hard_x_rays__ids_properties__plugins{T} + var"provenance"::hard_x_rays__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: hard_x_rays__ids_properties__version_put{T} + var"version_put"::hard_x_rays__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__ids_properties} + _parent::WeakRef end function hard_x_rays__ids_properties{T}() where T @@ -64091,8 +64091,8 @@ mutable struct hard_x_rays__emissivity_profile_1d{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__emissivity_profile_1d} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__emissivity_profile_1d} + _parent::WeakRef end function hard_x_rays__emissivity_profile_1d{T}() where T @@ -64113,8 +64113,8 @@ mutable struct hard_x_rays__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__code__library} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__code__library} + _parent::WeakRef end function hard_x_rays__code__library{T}() where T @@ -64127,7 +64127,7 @@ hard_x_rays__code__library() = hard_x_rays__code__library{Float64}() mutable struct hard_x_rays__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{hard_x_rays__code__library{T}} + var"library"::IDSvector{hard_x_rays__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -64137,8 +64137,8 @@ mutable struct hard_x_rays__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__code} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__code} + _parent::WeakRef end function hard_x_rays__code{T}() where T @@ -64159,8 +64159,8 @@ mutable struct hard_x_rays__channel___radiance{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___radiance} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___radiance} + _parent::WeakRef end function hard_x_rays__channel___radiance{T}() where T @@ -64181,8 +64181,8 @@ mutable struct hard_x_rays__channel___line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___line_of_sight__second_point} + _parent::WeakRef end function hard_x_rays__channel___line_of_sight__second_point{T}() where T @@ -64203,8 +64203,8 @@ mutable struct hard_x_rays__channel___line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___line_of_sight__first_point} + _parent::WeakRef end function hard_x_rays__channel___line_of_sight__first_point{T}() where T @@ -64215,14 +64215,14 @@ end hard_x_rays__channel___line_of_sight__first_point() = hard_x_rays__channel___line_of_sight__first_point{Float64}() mutable struct hard_x_rays__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: hard_x_rays__channel___line_of_sight__first_point{T} - var"second_point" :: hard_x_rays__channel___line_of_sight__second_point{T} + var"first_point"::hard_x_rays__channel___line_of_sight__first_point{T} + var"second_point"::hard_x_rays__channel___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___line_of_sight} + _parent::WeakRef end function hard_x_rays__channel___line_of_sight{T}() where T @@ -64245,8 +64245,8 @@ mutable struct hard_x_rays__channel___filter_window___x3_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window___x3_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___filter_window___x3_unit_vector{T}() where T @@ -64267,8 +64267,8 @@ mutable struct hard_x_rays__channel___filter_window___x2_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window___x2_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___filter_window___x2_unit_vector{T}() where T @@ -64289,8 +64289,8 @@ mutable struct hard_x_rays__channel___filter_window___x1_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window___x1_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___filter_window___x1_unit_vector{T}() where T @@ -64309,8 +64309,8 @@ mutable struct hard_x_rays__channel___filter_window___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window___outline} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window___outline} + _parent::WeakRef end function hard_x_rays__channel___filter_window___outline{T}() where T @@ -64328,8 +64328,8 @@ mutable struct hard_x_rays__channel___filter_window___material{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window___material} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window___material} + _parent::WeakRef end function hard_x_rays__channel___filter_window___material{T}() where T @@ -64347,8 +64347,8 @@ mutable struct hard_x_rays__channel___filter_window___geometry_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window___geometry_type} + _parent::WeakRef end function hard_x_rays__channel___filter_window___geometry_type{T}() where T @@ -64366,8 +64366,8 @@ mutable struct hard_x_rays__channel___filter_window___curvature_type{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window___curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window___curvature_type} + _parent::WeakRef end function hard_x_rays__channel___filter_window___curvature_type{T}() where T @@ -64388,8 +64388,8 @@ mutable struct hard_x_rays__channel___filter_window___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window___centre} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window___centre} + _parent::WeakRef end function hard_x_rays__channel___filter_window___centre{T}() where T @@ -64400,12 +64400,12 @@ end hard_x_rays__channel___filter_window___centre() = hard_x_rays__channel___filter_window___centre{Float64}() mutable struct hard_x_rays__channel___filter_window{T} <: IDSvectorStaticElement{T} - var"centre" :: hard_x_rays__channel___filter_window___centre{T} - var"curvature_type" :: hard_x_rays__channel___filter_window___curvature_type{T} - var"geometry_type" :: hard_x_rays__channel___filter_window___geometry_type{T} + var"centre"::hard_x_rays__channel___filter_window___centre{T} + var"curvature_type"::hard_x_rays__channel___filter_window___curvature_type{T} + var"geometry_type"::hard_x_rays__channel___filter_window___geometry_type{T} var"identifier" :: String - var"material" :: hard_x_rays__channel___filter_window___material{T} - var"outline" :: hard_x_rays__channel___filter_window___outline{T} + var"material"::hard_x_rays__channel___filter_window___material{T} + var"outline"::hard_x_rays__channel___filter_window___outline{T} var"photon_absorption" :: Vector{<:T} var"photon_absorption_σ" :: Vector{<:T} var"radius" :: T @@ -64422,21 +64422,21 @@ mutable struct hard_x_rays__channel___filter_window{T} <: IDSvectorStaticElement var"wavelengths_σ" :: Vector{<:T} var"x1_curvature" :: T var"x1_curvature_σ" :: T - var"x1_unit_vector" :: hard_x_rays__channel___filter_window___x1_unit_vector{T} + var"x1_unit_vector"::hard_x_rays__channel___filter_window___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T var"x2_curvature" :: T var"x2_curvature_σ" :: T - var"x2_unit_vector" :: hard_x_rays__channel___filter_window___x2_unit_vector{T} + var"x2_unit_vector"::hard_x_rays__channel___filter_window___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: hard_x_rays__channel___filter_window___x3_unit_vector{T} + var"x3_unit_vector"::hard_x_rays__channel___filter_window___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___filter_window} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___filter_window} + _parent::WeakRef end function hard_x_rays__channel___filter_window{T}() where T @@ -64462,8 +64462,8 @@ mutable struct hard_x_rays__channel___etendue_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___etendue_method} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___etendue_method} + _parent::WeakRef end function hard_x_rays__channel___etendue_method{T}() where T @@ -64486,8 +64486,8 @@ mutable struct hard_x_rays__channel___energy_band{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___energy_band} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___energy_band} + _parent::WeakRef end function hard_x_rays__channel___energy_band{T}() where T @@ -64508,8 +64508,8 @@ mutable struct hard_x_rays__channel___detector__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___detector__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___detector__x3_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___detector__x3_unit_vector{T}() where T @@ -64530,8 +64530,8 @@ mutable struct hard_x_rays__channel___detector__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___detector__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___detector__x2_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___detector__x2_unit_vector{T}() where T @@ -64552,8 +64552,8 @@ mutable struct hard_x_rays__channel___detector__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___detector__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___detector__x1_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___detector__x1_unit_vector{T}() where T @@ -64572,8 +64572,8 @@ mutable struct hard_x_rays__channel___detector__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___detector__outline} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___detector__outline} + _parent::WeakRef end function hard_x_rays__channel___detector__outline{T}() where T @@ -64594,8 +64594,8 @@ mutable struct hard_x_rays__channel___detector__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___detector__centre} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___detector__centre} + _parent::WeakRef end function hard_x_rays__channel___detector__centre{T}() where T @@ -64606,26 +64606,26 @@ end hard_x_rays__channel___detector__centre() = hard_x_rays__channel___detector__centre{Float64}() mutable struct hard_x_rays__channel___detector{T} <: IDS{T} - var"centre" :: hard_x_rays__channel___detector__centre{T} + var"centre"::hard_x_rays__channel___detector__centre{T} var"geometry_type" :: Int - var"outline" :: hard_x_rays__channel___detector__outline{T} + var"outline"::hard_x_rays__channel___detector__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: hard_x_rays__channel___detector__x1_unit_vector{T} + var"x1_unit_vector"::hard_x_rays__channel___detector__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: hard_x_rays__channel___detector__x2_unit_vector{T} + var"x2_unit_vector"::hard_x_rays__channel___detector__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: hard_x_rays__channel___detector__x3_unit_vector{T} + var"x3_unit_vector"::hard_x_rays__channel___detector__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___detector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___detector} + _parent::WeakRef end function hard_x_rays__channel___detector{T}() where T @@ -64651,8 +64651,8 @@ mutable struct hard_x_rays__channel___aperture___x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___aperture___x3_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___aperture___x3_unit_vector{T}() where T @@ -64673,8 +64673,8 @@ mutable struct hard_x_rays__channel___aperture___x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___aperture___x2_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___aperture___x2_unit_vector{T}() where T @@ -64695,8 +64695,8 @@ mutable struct hard_x_rays__channel___aperture___x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___aperture___x1_unit_vector} + _parent::WeakRef end function hard_x_rays__channel___aperture___x1_unit_vector{T}() where T @@ -64715,8 +64715,8 @@ mutable struct hard_x_rays__channel___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___aperture___outline} + _parent::WeakRef end function hard_x_rays__channel___aperture___outline{T}() where T @@ -64737,8 +64737,8 @@ mutable struct hard_x_rays__channel___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___aperture___centre} + _parent::WeakRef end function hard_x_rays__channel___aperture___centre{T}() where T @@ -64749,26 +64749,26 @@ end hard_x_rays__channel___aperture___centre() = hard_x_rays__channel___aperture___centre{Float64}() mutable struct hard_x_rays__channel___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: hard_x_rays__channel___aperture___centre{T} + var"centre"::hard_x_rays__channel___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: hard_x_rays__channel___aperture___outline{T} + var"outline"::hard_x_rays__channel___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: hard_x_rays__channel___aperture___x1_unit_vector{T} + var"x1_unit_vector"::hard_x_rays__channel___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: hard_x_rays__channel___aperture___x2_unit_vector{T} + var"x2_unit_vector"::hard_x_rays__channel___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: hard_x_rays__channel___aperture___x3_unit_vector{T} + var"x3_unit_vector"::hard_x_rays__channel___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel___aperture} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel___aperture} + _parent::WeakRef end function hard_x_rays__channel___aperture{T}() where T @@ -64784,23 +64784,23 @@ end hard_x_rays__channel___aperture() = hard_x_rays__channel___aperture{Float64}() mutable struct hard_x_rays__channel{T} <: IDSvectorStaticElement{T} - var"aperture" :: IDSvector{hard_x_rays__channel___aperture{T}} - var"detector" :: hard_x_rays__channel___detector{T} - var"energy_band" :: IDSvector{hard_x_rays__channel___energy_band{T}} + var"aperture"::IDSvector{hard_x_rays__channel___aperture{T}} + var"detector"::hard_x_rays__channel___detector{T} + var"energy_band"::IDSvector{hard_x_rays__channel___energy_band{T}} var"etendue" :: T var"etendue_σ" :: T - var"etendue_method" :: hard_x_rays__channel___etendue_method{T} - var"filter_window" :: IDSvector{hard_x_rays__channel___filter_window{T}} + var"etendue_method"::hard_x_rays__channel___etendue_method{T} + var"filter_window"::IDSvector{hard_x_rays__channel___filter_window{T}} var"identifier" :: String - var"line_of_sight" :: hard_x_rays__channel___line_of_sight{T} + var"line_of_sight"::hard_x_rays__channel___line_of_sight{T} var"name" :: String - var"radiance" :: hard_x_rays__channel___radiance{T} + var"radiance"::hard_x_rays__channel___radiance{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays__channel} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays__channel} + _parent::WeakRef end function hard_x_rays__channel{T}() where T @@ -64818,10 +64818,10 @@ end hard_x_rays__channel() = hard_x_rays__channel{Float64}() mutable struct hard_x_rays{T} <: IDStop{T} - var"channel" :: IDSvector{hard_x_rays__channel{T}} - var"code" :: hard_x_rays__code{T} - var"emissivity_profile_1d" :: IDSvector{hard_x_rays__emissivity_profile_1d{T}} - var"ids_properties" :: hard_x_rays__ids_properties{T} + var"channel"::IDSvector{hard_x_rays__channel{T}} + var"code"::hard_x_rays__code{T} + var"emissivity_profile_1d"::IDSvector{hard_x_rays__emissivity_profile_1d{T}} + var"ids_properties"::hard_x_rays__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -64829,8 +64829,8 @@ mutable struct hard_x_rays{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,hard_x_rays} - _parent :: WeakRef + _ref::Union{Nothing,hard_x_rays} + _parent::WeakRef end function hard_x_rays{T}() where T @@ -64859,8 +64859,8 @@ mutable struct gyrokinetics_local__species_all{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__species_all} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__species_all} + _parent::WeakRef end function gyrokinetics_local__species_all{T}() where T @@ -64893,8 +64893,8 @@ mutable struct gyrokinetics_local__species{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__species} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__species} + _parent::WeakRef end function gyrokinetics_local__species{T}() where T @@ -64917,8 +64917,8 @@ mutable struct gyrokinetics_local__normalizing_quantities{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__normalizing_quantities} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__normalizing_quantities} + _parent::WeakRef end function gyrokinetics_local__normalizing_quantities{T}() where T @@ -64957,8 +64957,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_5d_rotating_frame{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_5d_rotating_frame} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_5d_rotating_frame} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_5d_rotating_frame{T}() where T @@ -64997,8 +64997,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_5d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_5d} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_5d} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_5d{T}() where T @@ -65037,8 +65037,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_4d_rotating_frame{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_4d_rotating_frame} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_4d_rotating_frame} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_4d_rotating_frame{T}() where T @@ -65077,8 +65077,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_4d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_4d} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_4d} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_4d{T}() where T @@ -65117,8 +65117,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_3d_rotating_frame{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_3d_rotating_frame} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_3d_rotating_frame} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_3d_rotating_frame{T}() where T @@ -65157,8 +65157,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_3d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_3d} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_3d} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_3d{T}() where T @@ -65197,8 +65197,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_2d_k_x_sum_rotating_frame{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_2d_k_x_sum_rotating_frame} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_2d_k_x_sum_rotating_frame} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_2d_k_x_sum_rotating_frame{T}() where T @@ -65237,8 +65237,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_2d_k_x_sum{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_2d_k_x_sum} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_2d_k_x_sum} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_2d_k_x_sum{T}() where T @@ -65277,8 +65277,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum_rotating_fr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum_rotating_frame} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum_rotating_frame} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum_rotating_frame{T}() where T @@ -65317,8 +65317,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum{T}() where T @@ -65357,8 +65357,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_1d_rotating_frame{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_1d_rotating_frame} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_1d_rotating_frame} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_1d_rotating_frame{T}() where T @@ -65397,8 +65397,8 @@ mutable struct gyrokinetics_local__non_linear__fluxes_1d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fluxes_1d} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fluxes_1d} + _parent::WeakRef end function gyrokinetics_local__non_linear__fluxes_1d{T}() where T @@ -65416,8 +65416,8 @@ mutable struct gyrokinetics_local__non_linear__fields_zonal_2d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fields_zonal_2d} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fields_zonal_2d} + _parent::WeakRef end function gyrokinetics_local__non_linear__fields_zonal_2d{T}() where T @@ -65438,8 +65438,8 @@ mutable struct gyrokinetics_local__non_linear__fields_intensity_3d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fields_intensity_3d} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fields_intensity_3d} + _parent::WeakRef end function gyrokinetics_local__non_linear__fields_intensity_3d{T}() where T @@ -65460,8 +65460,8 @@ mutable struct gyrokinetics_local__non_linear__fields_intensity_2d_surface_avera _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fields_intensity_2d_surface_average} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fields_intensity_2d_surface_average} + _parent::WeakRef end function gyrokinetics_local__non_linear__fields_intensity_2d_surface_average{T}() where T @@ -65482,8 +65482,8 @@ mutable struct gyrokinetics_local__non_linear__fields_intensity_1d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fields_intensity_1d} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fields_intensity_1d} + _parent::WeakRef end function gyrokinetics_local__non_linear__fields_intensity_1d{T}() where T @@ -65501,8 +65501,8 @@ mutable struct gyrokinetics_local__non_linear__fields_4d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__fields_4d} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__fields_4d} + _parent::WeakRef end function gyrokinetics_local__non_linear__fields_4d{T}() where T @@ -65519,8 +65519,8 @@ mutable struct gyrokinetics_local__non_linear__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear__code} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear__code} + _parent::WeakRef end function gyrokinetics_local__non_linear__code{T}() where T @@ -65535,24 +65535,24 @@ mutable struct gyrokinetics_local__non_linear{T} <: IDS{T} var"angle_pol_σ" :: Vector{<:T} var"binormal_wavevector_norm" :: Vector{<:T} var"binormal_wavevector_norm_σ" :: Vector{<:T} - var"code" :: gyrokinetics_local__non_linear__code{T} - var"fields_4d" :: gyrokinetics_local__non_linear__fields_4d{T} - var"fields_intensity_1d" :: gyrokinetics_local__non_linear__fields_intensity_1d{T} - var"fields_intensity_2d_surface_average" :: gyrokinetics_local__non_linear__fields_intensity_2d_surface_average{T} - var"fields_intensity_3d" :: gyrokinetics_local__non_linear__fields_intensity_3d{T} - var"fields_zonal_2d" :: gyrokinetics_local__non_linear__fields_zonal_2d{T} - var"fluxes_1d" :: gyrokinetics_local__non_linear__fluxes_1d{T} - var"fluxes_1d_rotating_frame" :: gyrokinetics_local__non_linear__fluxes_1d_rotating_frame{T} - var"fluxes_2d_k_x_k_y_sum" :: gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum{T} - var"fluxes_2d_k_x_k_y_sum_rotating_frame" :: gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum_rotating_frame{T} - var"fluxes_2d_k_x_sum" :: gyrokinetics_local__non_linear__fluxes_2d_k_x_sum{T} - var"fluxes_2d_k_x_sum_rotating_frame" :: gyrokinetics_local__non_linear__fluxes_2d_k_x_sum_rotating_frame{T} - var"fluxes_3d" :: gyrokinetics_local__non_linear__fluxes_3d{T} - var"fluxes_3d_rotating_frame" :: gyrokinetics_local__non_linear__fluxes_3d_rotating_frame{T} - var"fluxes_4d" :: gyrokinetics_local__non_linear__fluxes_4d{T} - var"fluxes_4d_rotating_frame" :: gyrokinetics_local__non_linear__fluxes_4d_rotating_frame{T} - var"fluxes_5d" :: gyrokinetics_local__non_linear__fluxes_5d{T} - var"fluxes_5d_rotating_frame" :: gyrokinetics_local__non_linear__fluxes_5d_rotating_frame{T} + var"code"::gyrokinetics_local__non_linear__code{T} + var"fields_4d"::gyrokinetics_local__non_linear__fields_4d{T} + var"fields_intensity_1d"::gyrokinetics_local__non_linear__fields_intensity_1d{T} + var"fields_intensity_2d_surface_average"::gyrokinetics_local__non_linear__fields_intensity_2d_surface_average{T} + var"fields_intensity_3d"::gyrokinetics_local__non_linear__fields_intensity_3d{T} + var"fields_zonal_2d"::gyrokinetics_local__non_linear__fields_zonal_2d{T} + var"fluxes_1d"::gyrokinetics_local__non_linear__fluxes_1d{T} + var"fluxes_1d_rotating_frame"::gyrokinetics_local__non_linear__fluxes_1d_rotating_frame{T} + var"fluxes_2d_k_x_k_y_sum"::gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum{T} + var"fluxes_2d_k_x_k_y_sum_rotating_frame"::gyrokinetics_local__non_linear__fluxes_2d_k_x_k_y_sum_rotating_frame{T} + var"fluxes_2d_k_x_sum"::gyrokinetics_local__non_linear__fluxes_2d_k_x_sum{T} + var"fluxes_2d_k_x_sum_rotating_frame"::gyrokinetics_local__non_linear__fluxes_2d_k_x_sum_rotating_frame{T} + var"fluxes_3d"::gyrokinetics_local__non_linear__fluxes_3d{T} + var"fluxes_3d_rotating_frame"::gyrokinetics_local__non_linear__fluxes_3d_rotating_frame{T} + var"fluxes_4d"::gyrokinetics_local__non_linear__fluxes_4d{T} + var"fluxes_4d_rotating_frame"::gyrokinetics_local__non_linear__fluxes_4d_rotating_frame{T} + var"fluxes_5d"::gyrokinetics_local__non_linear__fluxes_5d{T} + var"fluxes_5d_rotating_frame"::gyrokinetics_local__non_linear__fluxes_5d_rotating_frame{T} var"quasi_linear" :: Int var"radial_wavevector_norm" :: Vector{<:T} var"radial_wavevector_norm_σ" :: Vector{<:T} @@ -65564,8 +65564,8 @@ mutable struct gyrokinetics_local__non_linear{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__non_linear} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__non_linear} + _parent::WeakRef end function gyrokinetics_local__non_linear{T}() where T @@ -65608,8 +65608,8 @@ mutable struct gyrokinetics_local__model{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__model} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__model} + _parent::WeakRef end function gyrokinetics_local__model{T}() where T @@ -65631,8 +65631,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode___moments_norm _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_particle} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_particle} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_particle{T}() where T @@ -65654,8 +65654,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode___moments_norm _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_1} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_1} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_1{T}() where T @@ -65677,8 +65677,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode___moments_norm _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_0} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_0} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_0{T}() where T @@ -65700,8 +65700,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode___moments_norm _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter{T}() where T @@ -65740,8 +65740,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode___linear_weigh _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___linear_weights_rotating_frame} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___linear_weights_rotating_frame} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode___linear_weights_rotating_frame{T}() where T @@ -65780,8 +65780,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode___linear_weigh _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___linear_weights} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___linear_weights} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode___linear_weights{T}() where T @@ -65811,8 +65811,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode___fields{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___fields} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___fields} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode___fields{T}() where T @@ -65829,8 +65829,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode___code{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___code} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode___code} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode___code{T}() where T @@ -65843,8 +65843,8 @@ gyrokinetics_local__linear__wavevector___eigenmode___code() = gyrokinetics_local mutable struct gyrokinetics_local__linear__wavevector___eigenmode{T} <: IDSvectorStaticElement{T} var"angle_pol" :: Vector{<:T} var"angle_pol_σ" :: Vector{<:T} - var"code" :: gyrokinetics_local__linear__wavevector___eigenmode___code{T} - var"fields" :: gyrokinetics_local__linear__wavevector___eigenmode___fields{T} + var"code"::gyrokinetics_local__linear__wavevector___eigenmode___code{T} + var"fields"::gyrokinetics_local__linear__wavevector___eigenmode___fields{T} var"frequency_norm" :: T var"frequency_norm_σ" :: T var"growth_rate_norm" :: T @@ -65852,12 +65852,12 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode{T} <: IDSvecto var"growth_rate_tolerance" :: T var"growth_rate_tolerance_σ" :: T var"initial_value_run" :: Int - var"linear_weights" :: gyrokinetics_local__linear__wavevector___eigenmode___linear_weights{T} - var"linear_weights_rotating_frame" :: gyrokinetics_local__linear__wavevector___eigenmode___linear_weights_rotating_frame{T} - var"moments_norm_gyrocenter" :: gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter{T} - var"moments_norm_gyrocenter_bessel_0" :: gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_0{T} - var"moments_norm_gyrocenter_bessel_1" :: gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_1{T} - var"moments_norm_particle" :: gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_particle{T} + var"linear_weights"::gyrokinetics_local__linear__wavevector___eigenmode___linear_weights{T} + var"linear_weights_rotating_frame"::gyrokinetics_local__linear__wavevector___eigenmode___linear_weights_rotating_frame{T} + var"moments_norm_gyrocenter"::gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter{T} + var"moments_norm_gyrocenter_bessel_0"::gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_0{T} + var"moments_norm_gyrocenter_bessel_1"::gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_gyrocenter_bessel_1{T} + var"moments_norm_particle"::gyrokinetics_local__linear__wavevector___eigenmode___moments_norm_particle{T} var"poloidal_turns" :: Int var"time_norm" :: Vector{<:T} var"time_norm_σ" :: Vector{<:T} @@ -65865,8 +65865,8 @@ mutable struct gyrokinetics_local__linear__wavevector___eigenmode{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector___eigenmode} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector___eigenmode{T}() where T @@ -65887,15 +65887,15 @@ gyrokinetics_local__linear__wavevector___eigenmode() = gyrokinetics_local__linea mutable struct gyrokinetics_local__linear__wavevector{T} <: IDSvectorStaticElement{T} var"binormal_wavevector_norm" :: T var"binormal_wavevector_norm_σ" :: T - var"eigenmode" :: IDSvector{gyrokinetics_local__linear__wavevector___eigenmode{T}} + var"eigenmode"::IDSvector{gyrokinetics_local__linear__wavevector___eigenmode{T}} var"radial_wavevector_norm" :: T var"radial_wavevector_norm_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear__wavevector} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear__wavevector} + _parent::WeakRef end function gyrokinetics_local__linear__wavevector{T}() where T @@ -65907,13 +65907,13 @@ end gyrokinetics_local__linear__wavevector() = gyrokinetics_local__linear__wavevector{Float64}() mutable struct gyrokinetics_local__linear{T} <: IDS{T} - var"wavevector" :: IDSvector{gyrokinetics_local__linear__wavevector{T}} + var"wavevector"::IDSvector{gyrokinetics_local__linear__wavevector{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__linear} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__linear} + _parent::WeakRef end function gyrokinetics_local__linear{T}() where T @@ -65932,8 +65932,8 @@ mutable struct gyrokinetics_local__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__version_put} + _parent::WeakRef end function gyrokinetics_local__ids_properties__version_put{T}() where T @@ -65950,8 +65950,8 @@ mutable struct gyrokinetics_local__ids_properties__provenance__node{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__provenance__node} + _parent::WeakRef end function gyrokinetics_local__ids_properties__provenance__node{T}() where T @@ -65962,13 +65962,13 @@ end gyrokinetics_local__ids_properties__provenance__node() = gyrokinetics_local__ids_properties__provenance__node{Float64}() mutable struct gyrokinetics_local__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{gyrokinetics_local__ids_properties__provenance__node{T}} + var"node"::IDSvector{gyrokinetics_local__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__provenance} + _parent::WeakRef end function gyrokinetics_local__ids_properties__provenance{T}() where T @@ -65990,8 +65990,8 @@ mutable struct gyrokinetics_local__ids_properties__plugins__node___readback{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__plugins__node___readback} + _parent::WeakRef end function gyrokinetics_local__ids_properties__plugins__node___readback{T}() where T @@ -66012,8 +66012,8 @@ mutable struct gyrokinetics_local__ids_properties__plugins__node___put_operation _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function gyrokinetics_local__ids_properties__plugins__node___put_operation{T}() where T @@ -66034,8 +66034,8 @@ mutable struct gyrokinetics_local__ids_properties__plugins__node___get_operation _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function gyrokinetics_local__ids_properties__plugins__node___get_operation{T}() where T @@ -66046,16 +66046,16 @@ end gyrokinetics_local__ids_properties__plugins__node___get_operation() = gyrokinetics_local__ids_properties__plugins__node___get_operation{Float64}() mutable struct gyrokinetics_local__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{gyrokinetics_local__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{gyrokinetics_local__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{gyrokinetics_local__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{gyrokinetics_local__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{gyrokinetics_local__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{gyrokinetics_local__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__plugins__node} + _parent::WeakRef end function gyrokinetics_local__ids_properties__plugins__node{T}() where T @@ -66078,8 +66078,8 @@ mutable struct gyrokinetics_local__ids_properties__plugins__infrastructure_put{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function gyrokinetics_local__ids_properties__plugins__infrastructure_put{T}() where T @@ -66099,8 +66099,8 @@ mutable struct gyrokinetics_local__ids_properties__plugins__infrastructure_get{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function gyrokinetics_local__ids_properties__plugins__infrastructure_get{T}() where T @@ -66111,15 +66111,15 @@ end gyrokinetics_local__ids_properties__plugins__infrastructure_get() = gyrokinetics_local__ids_properties__plugins__infrastructure_get{Float64}() mutable struct gyrokinetics_local__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: gyrokinetics_local__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: gyrokinetics_local__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{gyrokinetics_local__ids_properties__plugins__node{T}} + var"infrastructure_get"::gyrokinetics_local__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::gyrokinetics_local__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{gyrokinetics_local__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__plugins} + _parent::WeakRef end function gyrokinetics_local__ids_properties__plugins{T}() where T @@ -66140,8 +66140,8 @@ mutable struct gyrokinetics_local__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties__occurrence_type} + _parent::WeakRef end function gyrokinetics_local__ids_properties__occurrence_type{T}() where T @@ -66157,17 +66157,17 @@ mutable struct gyrokinetics_local__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: gyrokinetics_local__ids_properties__occurrence_type{T} - var"plugins" :: gyrokinetics_local__ids_properties__plugins{T} - var"provenance" :: gyrokinetics_local__ids_properties__provenance{T} + var"occurrence_type"::gyrokinetics_local__ids_properties__occurrence_type{T} + var"plugins"::gyrokinetics_local__ids_properties__plugins{T} + var"provenance"::gyrokinetics_local__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: gyrokinetics_local__ids_properties__version_put{T} + var"version_put"::gyrokinetics_local__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__ids_properties} + _parent::WeakRef end function gyrokinetics_local__ids_properties{T}() where T @@ -66214,8 +66214,8 @@ mutable struct gyrokinetics_local__flux_surface{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__flux_surface} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__flux_surface} + _parent::WeakRef end function gyrokinetics_local__flux_surface{T}() where T @@ -66232,8 +66232,8 @@ mutable struct gyrokinetics_local__collisions{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__collisions} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__collisions} + _parent::WeakRef end function gyrokinetics_local__collisions{T}() where T @@ -66254,8 +66254,8 @@ mutable struct gyrokinetics_local__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__code__library} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__code__library} + _parent::WeakRef end function gyrokinetics_local__code__library{T}() where T @@ -66268,7 +66268,7 @@ gyrokinetics_local__code__library() = gyrokinetics_local__code__library{Float64} mutable struct gyrokinetics_local__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{gyrokinetics_local__code__library{T}} + var"library"::IDSvector{gyrokinetics_local__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -66278,8 +66278,8 @@ mutable struct gyrokinetics_local__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local__code} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local__code} + _parent::WeakRef end function gyrokinetics_local__code{T}() where T @@ -66291,23 +66291,23 @@ end gyrokinetics_local__code() = gyrokinetics_local__code{Float64}() mutable struct gyrokinetics_local{T} <: IDStop{T} - var"code" :: gyrokinetics_local__code{T} - var"collisions" :: gyrokinetics_local__collisions{T} - var"flux_surface" :: gyrokinetics_local__flux_surface{T} - var"ids_properties" :: gyrokinetics_local__ids_properties{T} - var"linear" :: gyrokinetics_local__linear{T} - var"model" :: gyrokinetics_local__model{T} - var"non_linear" :: gyrokinetics_local__non_linear{T} - var"normalizing_quantities" :: gyrokinetics_local__normalizing_quantities{T} - var"species" :: IDSvector{gyrokinetics_local__species{T}} - var"species_all" :: gyrokinetics_local__species_all{T} + var"code"::gyrokinetics_local__code{T} + var"collisions"::gyrokinetics_local__collisions{T} + var"flux_surface"::gyrokinetics_local__flux_surface{T} + var"ids_properties"::gyrokinetics_local__ids_properties{T} + var"linear"::gyrokinetics_local__linear{T} + var"model"::gyrokinetics_local__model{T} + var"non_linear"::gyrokinetics_local__non_linear{T} + var"normalizing_quantities"::gyrokinetics_local__normalizing_quantities{T} + var"species"::IDSvector{gyrokinetics_local__species{T}} + var"species_all"::gyrokinetics_local__species_all{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gyrokinetics_local} - _parent :: WeakRef + _ref::Union{Nothing,gyrokinetics_local} + _parent::WeakRef end function gyrokinetics_local{T}() where T @@ -66335,8 +66335,8 @@ mutable struct gas_pumping__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__version_put} + _parent::WeakRef end function gas_pumping__ids_properties__version_put{T}() where T @@ -66353,8 +66353,8 @@ mutable struct gas_pumping__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__provenance__node} + _parent::WeakRef end function gas_pumping__ids_properties__provenance__node{T}() where T @@ -66365,13 +66365,13 @@ end gas_pumping__ids_properties__provenance__node() = gas_pumping__ids_properties__provenance__node{Float64}() mutable struct gas_pumping__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{gas_pumping__ids_properties__provenance__node{T}} + var"node"::IDSvector{gas_pumping__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__provenance} + _parent::WeakRef end function gas_pumping__ids_properties__provenance{T}() where T @@ -66393,8 +66393,8 @@ mutable struct gas_pumping__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__plugins__node___readback} + _parent::WeakRef end function gas_pumping__ids_properties__plugins__node___readback{T}() where T @@ -66415,8 +66415,8 @@ mutable struct gas_pumping__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function gas_pumping__ids_properties__plugins__node___put_operation{T}() where T @@ -66437,8 +66437,8 @@ mutable struct gas_pumping__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function gas_pumping__ids_properties__plugins__node___get_operation{T}() where T @@ -66449,16 +66449,16 @@ end gas_pumping__ids_properties__plugins__node___get_operation() = gas_pumping__ids_properties__plugins__node___get_operation{Float64}() mutable struct gas_pumping__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{gas_pumping__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{gas_pumping__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{gas_pumping__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{gas_pumping__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{gas_pumping__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{gas_pumping__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__plugins__node} + _parent::WeakRef end function gas_pumping__ids_properties__plugins__node{T}() where T @@ -66481,8 +66481,8 @@ mutable struct gas_pumping__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function gas_pumping__ids_properties__plugins__infrastructure_put{T}() where T @@ -66502,8 +66502,8 @@ mutable struct gas_pumping__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function gas_pumping__ids_properties__plugins__infrastructure_get{T}() where T @@ -66514,15 +66514,15 @@ end gas_pumping__ids_properties__plugins__infrastructure_get() = gas_pumping__ids_properties__plugins__infrastructure_get{Float64}() mutable struct gas_pumping__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: gas_pumping__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: gas_pumping__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{gas_pumping__ids_properties__plugins__node{T}} + var"infrastructure_get"::gas_pumping__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::gas_pumping__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{gas_pumping__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__plugins} + _parent::WeakRef end function gas_pumping__ids_properties__plugins{T}() where T @@ -66543,8 +66543,8 @@ mutable struct gas_pumping__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties__occurrence_type} + _parent::WeakRef end function gas_pumping__ids_properties__occurrence_type{T}() where T @@ -66560,17 +66560,17 @@ mutable struct gas_pumping__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: gas_pumping__ids_properties__occurrence_type{T} - var"plugins" :: gas_pumping__ids_properties__plugins{T} - var"provenance" :: gas_pumping__ids_properties__provenance{T} + var"occurrence_type"::gas_pumping__ids_properties__occurrence_type{T} + var"plugins"::gas_pumping__ids_properties__plugins{T} + var"provenance"::gas_pumping__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: gas_pumping__ids_properties__version_put{T} + var"version_put"::gas_pumping__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__ids_properties} + _parent::WeakRef end function gas_pumping__ids_properties{T}() where T @@ -66592,8 +66592,8 @@ mutable struct gas_pumping__duct___species___flow_rate{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__duct___species___flow_rate} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__duct___species___flow_rate} + _parent::WeakRef end function gas_pumping__duct___species___flow_rate{T}() where T @@ -66613,8 +66613,8 @@ mutable struct gas_pumping__duct___species___element{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__duct___species___element} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__duct___species___element} + _parent::WeakRef end function gas_pumping__duct___species___element{T}() where T @@ -66625,15 +66625,15 @@ end gas_pumping__duct___species___element() = gas_pumping__duct___species___element{Float64}() mutable struct gas_pumping__duct___species{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{gas_pumping__duct___species___element{T}} - var"flow_rate" :: gas_pumping__duct___species___flow_rate{T} + var"element"::IDSvector{gas_pumping__duct___species___element{T}} + var"flow_rate"::gas_pumping__duct___species___flow_rate{T} var"label" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__duct___species} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__duct___species} + _parent::WeakRef end function gas_pumping__duct___species{T}() where T @@ -66653,8 +66653,8 @@ mutable struct gas_pumping__duct___flow_rate{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__duct___flow_rate} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__duct___flow_rate} + _parent::WeakRef end function gas_pumping__duct___flow_rate{T}() where T @@ -66665,16 +66665,16 @@ end gas_pumping__duct___flow_rate() = gas_pumping__duct___flow_rate{Float64}() mutable struct gas_pumping__duct{T} <: IDSvectorStaticElement{T} - var"flow_rate" :: gas_pumping__duct___flow_rate{T} + var"flow_rate"::gas_pumping__duct___flow_rate{T} var"identifier" :: String var"name" :: String - var"species" :: IDSvector{gas_pumping__duct___species{T}} + var"species"::IDSvector{gas_pumping__duct___species{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__duct} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__duct} + _parent::WeakRef end function gas_pumping__duct{T}() where T @@ -66697,8 +66697,8 @@ mutable struct gas_pumping__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__code__library} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__code__library} + _parent::WeakRef end function gas_pumping__code__library{T}() where T @@ -66711,7 +66711,7 @@ gas_pumping__code__library() = gas_pumping__code__library{Float64}() mutable struct gas_pumping__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{gas_pumping__code__library{T}} + var"library"::IDSvector{gas_pumping__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -66721,8 +66721,8 @@ mutable struct gas_pumping__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping__code} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping__code} + _parent::WeakRef end function gas_pumping__code{T}() where T @@ -66734,16 +66734,16 @@ end gas_pumping__code() = gas_pumping__code{Float64}() mutable struct gas_pumping{T} <: IDStop{T} - var"code" :: gas_pumping__code{T} - var"duct" :: IDSvector{gas_pumping__duct{T}} - var"ids_properties" :: gas_pumping__ids_properties{T} + var"code"::gas_pumping__code{T} + var"duct"::IDSvector{gas_pumping__duct{T}} + var"ids_properties"::gas_pumping__ids_properties{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_pumping} - _parent :: WeakRef + _ref::Union{Nothing,gas_pumping} + _parent::WeakRef end function gas_pumping{T}() where T @@ -66764,8 +66764,8 @@ mutable struct gas_injection__valve___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__valve___voltage} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__valve___voltage} + _parent::WeakRef end function gas_injection__valve___voltage{T}() where T @@ -66785,8 +66785,8 @@ mutable struct gas_injection__valve___species___element{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__valve___species___element} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__valve___species___element} + _parent::WeakRef end function gas_injection__valve___species___element{T}() where T @@ -66797,7 +66797,7 @@ end gas_injection__valve___species___element() = gas_injection__valve___species___element{Float64}() mutable struct gas_injection__valve___species{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{gas_injection__valve___species___element{T}} + var"element"::IDSvector{gas_injection__valve___species___element{T}} var"fraction" :: T var"fraction_σ" :: T var"label" :: String @@ -66805,8 +66805,8 @@ mutable struct gas_injection__valve___species{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__valve___species} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__valve___species} + _parent::WeakRef end function gas_injection__valve___species{T}() where T @@ -66826,8 +66826,8 @@ mutable struct gas_injection__valve___response_curve{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__valve___response_curve} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__valve___response_curve} + _parent::WeakRef end function gas_injection__valve___response_curve{T}() where T @@ -66845,8 +66845,8 @@ mutable struct gas_injection__valve___flow_rate{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__valve___flow_rate} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__valve___flow_rate} + _parent::WeakRef end function gas_injection__valve___flow_rate{T}() where T @@ -66864,8 +66864,8 @@ mutable struct gas_injection__valve___electron_rate{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__valve___electron_rate} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__valve___electron_rate} + _parent::WeakRef end function gas_injection__valve___electron_rate{T}() where T @@ -66876,8 +66876,8 @@ end gas_injection__valve___electron_rate() = gas_injection__valve___electron_rate{Float64}() mutable struct gas_injection__valve{T} <: IDSvectorStaticElement{T} - var"electron_rate" :: gas_injection__valve___electron_rate{T} - var"flow_rate" :: gas_injection__valve___flow_rate{T} + var"electron_rate"::gas_injection__valve___electron_rate{T} + var"flow_rate"::gas_injection__valve___flow_rate{T} var"flow_rate_max" :: T var"flow_rate_max_σ" :: T var"flow_rate_min" :: T @@ -66885,15 +66885,15 @@ mutable struct gas_injection__valve{T} <: IDSvectorStaticElement{T} var"identifier" :: String var"name" :: String var"pipe_indices" :: Vector{Int} - var"response_curve" :: gas_injection__valve___response_curve{T} - var"species" :: IDSvector{gas_injection__valve___species{T}} - var"voltage" :: gas_injection__valve___voltage{T} + var"response_curve"::gas_injection__valve___response_curve{T} + var"species"::IDSvector{gas_injection__valve___species{T}} + var"voltage"::gas_injection__valve___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__valve} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__valve} + _parent::WeakRef end function gas_injection__valve{T}() where T @@ -66918,8 +66918,8 @@ mutable struct gas_injection__pipe___species___element{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__pipe___species___element} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__pipe___species___element} + _parent::WeakRef end function gas_injection__pipe___species___element{T}() where T @@ -66930,7 +66930,7 @@ end gas_injection__pipe___species___element() = gas_injection__pipe___species___element{Float64}() mutable struct gas_injection__pipe___species{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{gas_injection__pipe___species___element{T}} + var"element"::IDSvector{gas_injection__pipe___species___element{T}} var"fraction" :: T var"fraction_σ" :: T var"label" :: String @@ -66938,8 +66938,8 @@ mutable struct gas_injection__pipe___species{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__pipe___species} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__pipe___species} + _parent::WeakRef end function gas_injection__pipe___species{T}() where T @@ -66961,8 +66961,8 @@ mutable struct gas_injection__pipe___second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__pipe___second_point} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__pipe___second_point} + _parent::WeakRef end function gas_injection__pipe___second_point{T}() where T @@ -66980,8 +66980,8 @@ mutable struct gas_injection__pipe___flow_rate{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__pipe___flow_rate} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__pipe___flow_rate} + _parent::WeakRef end function gas_injection__pipe___flow_rate{T}() where T @@ -67002,8 +67002,8 @@ mutable struct gas_injection__pipe___exit_position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__pipe___exit_position} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__pipe___exit_position} + _parent::WeakRef end function gas_injection__pipe___exit_position{T}() where T @@ -67014,21 +67014,21 @@ end gas_injection__pipe___exit_position() = gas_injection__pipe___exit_position{Float64}() mutable struct gas_injection__pipe{T} <: IDSvectorStaticElement{T} - var"exit_position" :: gas_injection__pipe___exit_position{T} - var"flow_rate" :: gas_injection__pipe___flow_rate{T} + var"exit_position"::gas_injection__pipe___exit_position{T} + var"flow_rate"::gas_injection__pipe___flow_rate{T} var"identifier" :: String var"length" :: T var"length_σ" :: T var"name" :: String - var"second_point" :: gas_injection__pipe___second_point{T} - var"species" :: IDSvector{gas_injection__pipe___species{T}} + var"second_point"::gas_injection__pipe___second_point{T} + var"species"::IDSvector{gas_injection__pipe___species{T}} var"valve_indices" :: Vector{Int} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__pipe} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__pipe} + _parent::WeakRef end function gas_injection__pipe{T}() where T @@ -67050,8 +67050,8 @@ mutable struct gas_injection__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__version_put} + _parent::WeakRef end function gas_injection__ids_properties__version_put{T}() where T @@ -67068,8 +67068,8 @@ mutable struct gas_injection__ids_properties__provenance__node{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__provenance__node} + _parent::WeakRef end function gas_injection__ids_properties__provenance__node{T}() where T @@ -67080,13 +67080,13 @@ end gas_injection__ids_properties__provenance__node() = gas_injection__ids_properties__provenance__node{Float64}() mutable struct gas_injection__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{gas_injection__ids_properties__provenance__node{T}} + var"node"::IDSvector{gas_injection__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__provenance} + _parent::WeakRef end function gas_injection__ids_properties__provenance{T}() where T @@ -67108,8 +67108,8 @@ mutable struct gas_injection__ids_properties__plugins__node___readback{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__plugins__node___readback} + _parent::WeakRef end function gas_injection__ids_properties__plugins__node___readback{T}() where T @@ -67130,8 +67130,8 @@ mutable struct gas_injection__ids_properties__plugins__node___put_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function gas_injection__ids_properties__plugins__node___put_operation{T}() where T @@ -67152,8 +67152,8 @@ mutable struct gas_injection__ids_properties__plugins__node___get_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function gas_injection__ids_properties__plugins__node___get_operation{T}() where T @@ -67164,16 +67164,16 @@ end gas_injection__ids_properties__plugins__node___get_operation() = gas_injection__ids_properties__plugins__node___get_operation{Float64}() mutable struct gas_injection__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{gas_injection__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{gas_injection__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{gas_injection__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{gas_injection__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{gas_injection__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{gas_injection__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__plugins__node} + _parent::WeakRef end function gas_injection__ids_properties__plugins__node{T}() where T @@ -67196,8 +67196,8 @@ mutable struct gas_injection__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function gas_injection__ids_properties__plugins__infrastructure_put{T}() where T @@ -67217,8 +67217,8 @@ mutable struct gas_injection__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function gas_injection__ids_properties__plugins__infrastructure_get{T}() where T @@ -67229,15 +67229,15 @@ end gas_injection__ids_properties__plugins__infrastructure_get() = gas_injection__ids_properties__plugins__infrastructure_get{Float64}() mutable struct gas_injection__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: gas_injection__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: gas_injection__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{gas_injection__ids_properties__plugins__node{T}} + var"infrastructure_get"::gas_injection__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::gas_injection__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{gas_injection__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__plugins} + _parent::WeakRef end function gas_injection__ids_properties__plugins{T}() where T @@ -67258,8 +67258,8 @@ mutable struct gas_injection__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties__occurrence_type} + _parent::WeakRef end function gas_injection__ids_properties__occurrence_type{T}() where T @@ -67275,17 +67275,17 @@ mutable struct gas_injection__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: gas_injection__ids_properties__occurrence_type{T} - var"plugins" :: gas_injection__ids_properties__plugins{T} - var"provenance" :: gas_injection__ids_properties__provenance{T} + var"occurrence_type"::gas_injection__ids_properties__occurrence_type{T} + var"plugins"::gas_injection__ids_properties__plugins{T} + var"provenance"::gas_injection__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: gas_injection__ids_properties__version_put{T} + var"version_put"::gas_injection__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__ids_properties} + _parent::WeakRef end function gas_injection__ids_properties{T}() where T @@ -67310,8 +67310,8 @@ mutable struct gas_injection__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__code__library} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__code__library} + _parent::WeakRef end function gas_injection__code__library{T}() where T @@ -67324,7 +67324,7 @@ gas_injection__code__library() = gas_injection__code__library{Float64}() mutable struct gas_injection__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{gas_injection__code__library{T}} + var"library"::IDSvector{gas_injection__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -67334,8 +67334,8 @@ mutable struct gas_injection__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection__code} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection__code} + _parent::WeakRef end function gas_injection__code{T}() where T @@ -67347,19 +67347,19 @@ end gas_injection__code() = gas_injection__code{Float64}() mutable struct gas_injection{T} <: IDStop{T} - var"code" :: gas_injection__code{T} - var"ids_properties" :: gas_injection__ids_properties{T} + var"code"::gas_injection__code{T} + var"ids_properties"::gas_injection__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"pipe" :: IDSvector{gas_injection__pipe{T}} + var"pipe"::IDSvector{gas_injection__pipe{T}} var"time" :: Vector{Float64} - var"valve" :: IDSvector{gas_injection__valve{T}} + var"valve"::IDSvector{gas_injection__valve{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,gas_injection} - _parent :: WeakRef + _ref::Union{Nothing,gas_injection} + _parent::WeakRef end function gas_injection{T}() where T @@ -67387,8 +67387,8 @@ mutable struct focs__stokes_output{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__stokes_output} - _parent :: WeakRef + _ref::Union{Nothing,focs__stokes_output} + _parent::WeakRef end function focs__stokes_output{T}() where T @@ -67411,8 +67411,8 @@ mutable struct focs__stokes_initial{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__stokes_initial} - _parent :: WeakRef + _ref::Union{Nothing,focs__stokes_initial} + _parent::WeakRef end function focs__stokes_initial{T}() where T @@ -67433,8 +67433,8 @@ mutable struct focs__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__outline} - _parent :: WeakRef + _ref::Union{Nothing,focs__outline} + _parent::WeakRef end function focs__outline{T}() where T @@ -67452,8 +67452,8 @@ mutable struct focs__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__version_put} + _parent::WeakRef end function focs__ids_properties__version_put{T}() where T @@ -67470,8 +67470,8 @@ mutable struct focs__ids_properties__provenance__node{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__provenance__node} + _parent::WeakRef end function focs__ids_properties__provenance__node{T}() where T @@ -67482,13 +67482,13 @@ end focs__ids_properties__provenance__node() = focs__ids_properties__provenance__node{Float64}() mutable struct focs__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{focs__ids_properties__provenance__node{T}} + var"node"::IDSvector{focs__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__provenance} + _parent::WeakRef end function focs__ids_properties__provenance{T}() where T @@ -67510,8 +67510,8 @@ mutable struct focs__ids_properties__plugins__node___readback{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__plugins__node___readback} + _parent::WeakRef end function focs__ids_properties__plugins__node___readback{T}() where T @@ -67532,8 +67532,8 @@ mutable struct focs__ids_properties__plugins__node___put_operation{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function focs__ids_properties__plugins__node___put_operation{T}() where T @@ -67554,8 +67554,8 @@ mutable struct focs__ids_properties__plugins__node___get_operation{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function focs__ids_properties__plugins__node___get_operation{T}() where T @@ -67566,16 +67566,16 @@ end focs__ids_properties__plugins__node___get_operation() = focs__ids_properties__plugins__node___get_operation{Float64}() mutable struct focs__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{focs__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{focs__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{focs__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{focs__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{focs__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{focs__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__plugins__node} + _parent::WeakRef end function focs__ids_properties__plugins__node{T}() where T @@ -67598,8 +67598,8 @@ mutable struct focs__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function focs__ids_properties__plugins__infrastructure_put{T}() where T @@ -67619,8 +67619,8 @@ mutable struct focs__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function focs__ids_properties__plugins__infrastructure_get{T}() where T @@ -67631,15 +67631,15 @@ end focs__ids_properties__plugins__infrastructure_get() = focs__ids_properties__plugins__infrastructure_get{Float64}() mutable struct focs__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: focs__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: focs__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{focs__ids_properties__plugins__node{T}} + var"infrastructure_get"::focs__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::focs__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{focs__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__plugins} + _parent::WeakRef end function focs__ids_properties__plugins{T}() where T @@ -67660,8 +67660,8 @@ mutable struct focs__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties__occurrence_type} + _parent::WeakRef end function focs__ids_properties__occurrence_type{T}() where T @@ -67677,17 +67677,17 @@ mutable struct focs__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: focs__ids_properties__occurrence_type{T} - var"plugins" :: focs__ids_properties__plugins{T} - var"provenance" :: focs__ids_properties__provenance{T} + var"occurrence_type"::focs__ids_properties__occurrence_type{T} + var"plugins"::focs__ids_properties__plugins{T} + var"provenance"::focs__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: focs__ids_properties__version_put{T} + var"version_put"::focs__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,focs__ids_properties} + _parent::WeakRef end function focs__ids_properties{T}() where T @@ -67717,8 +67717,8 @@ mutable struct focs__fibre_properties{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__fibre_properties} - _parent :: WeakRef + _ref::Union{Nothing,focs__fibre_properties} + _parent::WeakRef end function focs__fibre_properties{T}() where T @@ -67738,8 +67738,8 @@ mutable struct focs__current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__current} - _parent :: WeakRef + _ref::Union{Nothing,focs__current} + _parent::WeakRef end function focs__current{T}() where T @@ -67760,8 +67760,8 @@ mutable struct focs__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__code__library} - _parent :: WeakRef + _ref::Union{Nothing,focs__code__library} + _parent::WeakRef end function focs__code__library{T}() where T @@ -67774,7 +67774,7 @@ focs__code__library() = focs__code__library{Float64}() mutable struct focs__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{focs__code__library{T}} + var"library"::IDSvector{focs__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -67784,8 +67784,8 @@ mutable struct focs__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__code} - _parent :: WeakRef + _ref::Union{Nothing,focs__code} + _parent::WeakRef end function focs__code{T}() where T @@ -67806,8 +67806,8 @@ mutable struct focs__b_field_z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs__b_field_z} - _parent :: WeakRef + _ref::Union{Nothing,focs__b_field_z} + _parent::WeakRef end function focs__b_field_z{T}() where T @@ -67818,27 +67818,27 @@ end focs__b_field_z() = focs__b_field_z{Float64}() mutable struct focs{T} <: IDStop{T} - var"b_field_z" :: focs__b_field_z{T} - var"code" :: focs__code{T} - var"current" :: focs__current{T} + var"b_field_z"::focs__b_field_z{T} + var"code"::focs__code{T} + var"current"::focs__current{T} var"fibre_length" :: T var"fibre_length_σ" :: T - var"fibre_properties" :: focs__fibre_properties{T} + var"fibre_properties"::focs__fibre_properties{T} var"id" :: String - var"ids_properties" :: focs__ids_properties{T} + var"ids_properties"::focs__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"name" :: String - var"outline" :: focs__outline{T} - var"stokes_initial" :: focs__stokes_initial{T} - var"stokes_output" :: IDSvector{focs__stokes_output{T}} + var"outline"::focs__outline{T} + var"stokes_initial"::focs__stokes_initial{T} + var"stokes_output"::IDSvector{focs__stokes_output{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,focs} - _parent :: WeakRef + _ref::Union{Nothing,focs} + _parent::WeakRef end function focs{T}() where T @@ -67867,8 +67867,8 @@ mutable struct ferritic__permeability_table{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__permeability_table} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__permeability_table} + _parent::WeakRef end function ferritic__permeability_table{T}() where T @@ -67896,8 +67896,8 @@ mutable struct ferritic__object___time_slice{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___time_slice} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___time_slice} + _parent::WeakRef end function ferritic__object___time_slice{T}() where T @@ -67918,8 +67918,8 @@ mutable struct ferritic__object___centroid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___centroid} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___centroid} + _parent::WeakRef end function ferritic__object___centroid{T}() where T @@ -67938,8 +67938,8 @@ mutable struct ferritic__object___axisymmetric___thick_line__second_point{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric___thick_line__second_point} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric___thick_line__second_point} + _parent::WeakRef end function ferritic__object___axisymmetric___thick_line__second_point{T}() where T @@ -67958,8 +67958,8 @@ mutable struct ferritic__object___axisymmetric___thick_line__first_point{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric___thick_line__first_point} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric___thick_line__first_point} + _parent::WeakRef end function ferritic__object___axisymmetric___thick_line__first_point{T}() where T @@ -67970,16 +67970,16 @@ end ferritic__object___axisymmetric___thick_line__first_point() = ferritic__object___axisymmetric___thick_line__first_point{Float64}() mutable struct ferritic__object___axisymmetric___thick_line{T} <: IDS{T} - var"first_point" :: ferritic__object___axisymmetric___thick_line__first_point{T} - var"second_point" :: ferritic__object___axisymmetric___thick_line__second_point{T} + var"first_point"::ferritic__object___axisymmetric___thick_line__first_point{T} + var"second_point"::ferritic__object___axisymmetric___thick_line__second_point{T} var"thickness" :: T var"thickness_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric___thick_line} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric___thick_line} + _parent::WeakRef end function ferritic__object___axisymmetric___thick_line{T}() where T @@ -68004,8 +68004,8 @@ mutable struct ferritic__object___axisymmetric___rectangle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric___rectangle} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric___rectangle} + _parent::WeakRef end function ferritic__object___axisymmetric___rectangle{T}() where T @@ -68024,8 +68024,8 @@ mutable struct ferritic__object___axisymmetric___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric___outline} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric___outline} + _parent::WeakRef end function ferritic__object___axisymmetric___outline{T}() where T @@ -68052,8 +68052,8 @@ mutable struct ferritic__object___axisymmetric___oblique{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric___oblique} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric___oblique} + _parent::WeakRef end function ferritic__object___axisymmetric___oblique{T}() where T @@ -68074,8 +68074,8 @@ mutable struct ferritic__object___axisymmetric___arcs_of_circle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric___arcs_of_circle} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric___arcs_of_circle} + _parent::WeakRef end function ferritic__object___axisymmetric___arcs_of_circle{T}() where T @@ -68098,8 +68098,8 @@ mutable struct ferritic__object___axisymmetric___annulus{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric___annulus} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric___annulus} + _parent::WeakRef end function ferritic__object___axisymmetric___annulus{T}() where T @@ -68110,19 +68110,19 @@ end ferritic__object___axisymmetric___annulus() = ferritic__object___axisymmetric___annulus{Float64}() mutable struct ferritic__object___axisymmetric{T} <: IDSvectorStaticElement{T} - var"annulus" :: ferritic__object___axisymmetric___annulus{T} - var"arcs_of_circle" :: ferritic__object___axisymmetric___arcs_of_circle{T} + var"annulus"::ferritic__object___axisymmetric___annulus{T} + var"arcs_of_circle"::ferritic__object___axisymmetric___arcs_of_circle{T} var"geometry_type" :: Int - var"oblique" :: ferritic__object___axisymmetric___oblique{T} - var"outline" :: ferritic__object___axisymmetric___outline{T} - var"rectangle" :: ferritic__object___axisymmetric___rectangle{T} - var"thick_line" :: ferritic__object___axisymmetric___thick_line{T} + var"oblique"::ferritic__object___axisymmetric___oblique{T} + var"outline"::ferritic__object___axisymmetric___outline{T} + var"rectangle"::ferritic__object___axisymmetric___rectangle{T} + var"thick_line"::ferritic__object___axisymmetric___thick_line{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object___axisymmetric} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object___axisymmetric} + _parent::WeakRef end function ferritic__object___axisymmetric{T}() where T @@ -68139,21 +68139,21 @@ end ferritic__object___axisymmetric() = ferritic__object___axisymmetric{Float64}() mutable struct ferritic__object{T} <: IDSvectorStaticElement{T} - var"axisymmetric" :: IDSvector{ferritic__object___axisymmetric{T}} - var"centroid" :: ferritic__object___centroid{T} + var"axisymmetric"::IDSvector{ferritic__object___axisymmetric{T}} + var"centroid"::ferritic__object___centroid{T} var"ggd_object_index" :: Vector{Int} var"permeability_table_index" :: Vector{Int} var"saturated_relative_permeability" :: Vector{<:T} var"saturated_relative_permeability_σ" :: Vector{<:T} - var"time_slice" :: IDSvector{ferritic__object___time_slice{T}} + var"time_slice"::IDSvector{ferritic__object___time_slice{T}} var"volume" :: Vector{<:T} var"volume_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__object} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__object} + _parent::WeakRef end function ferritic__object{T}() where T @@ -68174,8 +68174,8 @@ mutable struct ferritic__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__version_put} + _parent::WeakRef end function ferritic__ids_properties__version_put{T}() where T @@ -68192,8 +68192,8 @@ mutable struct ferritic__ids_properties__provenance__node{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__provenance__node} + _parent::WeakRef end function ferritic__ids_properties__provenance__node{T}() where T @@ -68204,13 +68204,13 @@ end ferritic__ids_properties__provenance__node() = ferritic__ids_properties__provenance__node{Float64}() mutable struct ferritic__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{ferritic__ids_properties__provenance__node{T}} + var"node"::IDSvector{ferritic__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__provenance} + _parent::WeakRef end function ferritic__ids_properties__provenance{T}() where T @@ -68232,8 +68232,8 @@ mutable struct ferritic__ids_properties__plugins__node___readback{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__plugins__node___readback} + _parent::WeakRef end function ferritic__ids_properties__plugins__node___readback{T}() where T @@ -68254,8 +68254,8 @@ mutable struct ferritic__ids_properties__plugins__node___put_operation{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function ferritic__ids_properties__plugins__node___put_operation{T}() where T @@ -68276,8 +68276,8 @@ mutable struct ferritic__ids_properties__plugins__node___get_operation{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function ferritic__ids_properties__plugins__node___get_operation{T}() where T @@ -68288,16 +68288,16 @@ end ferritic__ids_properties__plugins__node___get_operation() = ferritic__ids_properties__plugins__node___get_operation{Float64}() mutable struct ferritic__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{ferritic__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{ferritic__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{ferritic__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{ferritic__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{ferritic__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{ferritic__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__plugins__node} + _parent::WeakRef end function ferritic__ids_properties__plugins__node{T}() where T @@ -68320,8 +68320,8 @@ mutable struct ferritic__ids_properties__plugins__infrastructure_put{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function ferritic__ids_properties__plugins__infrastructure_put{T}() where T @@ -68341,8 +68341,8 @@ mutable struct ferritic__ids_properties__plugins__infrastructure_get{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function ferritic__ids_properties__plugins__infrastructure_get{T}() where T @@ -68353,15 +68353,15 @@ end ferritic__ids_properties__plugins__infrastructure_get() = ferritic__ids_properties__plugins__infrastructure_get{Float64}() mutable struct ferritic__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: ferritic__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: ferritic__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{ferritic__ids_properties__plugins__node{T}} + var"infrastructure_get"::ferritic__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::ferritic__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{ferritic__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__plugins} + _parent::WeakRef end function ferritic__ids_properties__plugins{T}() where T @@ -68382,8 +68382,8 @@ mutable struct ferritic__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties__occurrence_type} + _parent::WeakRef end function ferritic__ids_properties__occurrence_type{T}() where T @@ -68399,17 +68399,17 @@ mutable struct ferritic__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: ferritic__ids_properties__occurrence_type{T} - var"plugins" :: ferritic__ids_properties__plugins{T} - var"provenance" :: ferritic__ids_properties__provenance{T} + var"occurrence_type"::ferritic__ids_properties__occurrence_type{T} + var"plugins"::ferritic__ids_properties__plugins{T} + var"provenance"::ferritic__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: ferritic__ids_properties__version_put{T} + var"version_put"::ferritic__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__ids_properties} + _parent::WeakRef end function ferritic__ids_properties{T}() where T @@ -68430,8 +68430,8 @@ mutable struct ferritic__grid_ggd__space___objects_per_dimension___object___boun _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__space___objects_per_dimension___object___boundary} + _parent::WeakRef end function ferritic__grid_ggd__space___objects_per_dimension___object___boundary{T}() where T @@ -68442,7 +68442,7 @@ end ferritic__grid_ggd__space___objects_per_dimension___object___boundary() = ferritic__grid_ggd__space___objects_per_dimension___object___boundary{Float64}() mutable struct ferritic__grid_ggd__space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{ferritic__grid_ggd__space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{ferritic__grid_ggd__space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -68454,8 +68454,8 @@ mutable struct ferritic__grid_ggd__space___objects_per_dimension___object{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__space___objects_per_dimension___object} + _parent::WeakRef end function ferritic__grid_ggd__space___objects_per_dimension___object{T}() where T @@ -68474,8 +68474,8 @@ mutable struct ferritic__grid_ggd__space___objects_per_dimension___geometry_cont _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__space___objects_per_dimension___geometry_content} + _parent::WeakRef end function ferritic__grid_ggd__space___objects_per_dimension___geometry_content{T}() where T @@ -68486,14 +68486,14 @@ end ferritic__grid_ggd__space___objects_per_dimension___geometry_content() = ferritic__grid_ggd__space___objects_per_dimension___geometry_content{Float64}() mutable struct ferritic__grid_ggd__space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: ferritic__grid_ggd__space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{ferritic__grid_ggd__space___objects_per_dimension___object{T}} + var"geometry_content"::ferritic__grid_ggd__space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{ferritic__grid_ggd__space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__space___objects_per_dimension} + _parent::WeakRef end function ferritic__grid_ggd__space___objects_per_dimension{T}() where T @@ -68513,8 +68513,8 @@ mutable struct ferritic__grid_ggd__space___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__space___identifier} + _parent::WeakRef end function ferritic__grid_ggd__space___identifier{T}() where T @@ -68532,8 +68532,8 @@ mutable struct ferritic__grid_ggd__space___geometry_type{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__space___geometry_type} + _parent::WeakRef end function ferritic__grid_ggd__space___geometry_type{T}() where T @@ -68545,15 +68545,15 @@ ferritic__grid_ggd__space___geometry_type() = ferritic__grid_ggd__space___geomet mutable struct ferritic__grid_ggd__space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: ferritic__grid_ggd__space___geometry_type{T} - var"identifier" :: ferritic__grid_ggd__space___identifier{T} - var"objects_per_dimension" :: IDSvector{ferritic__grid_ggd__space___objects_per_dimension{T}} + var"geometry_type"::ferritic__grid_ggd__space___geometry_type{T} + var"identifier"::ferritic__grid_ggd__space___identifier{T} + var"objects_per_dimension"::IDSvector{ferritic__grid_ggd__space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__space} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__space} + _parent::WeakRef end function ferritic__grid_ggd__space{T}() where T @@ -68574,8 +68574,8 @@ mutable struct ferritic__grid_ggd__identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__identifier} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__identifier} + _parent::WeakRef end function ferritic__grid_ggd__identifier{T}() where T @@ -68596,8 +68596,8 @@ mutable struct ferritic__grid_ggd__grid_subset___metric{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__grid_subset___metric} + _parent::WeakRef end function ferritic__grid_ggd__grid_subset___metric{T}() where T @@ -68615,8 +68615,8 @@ mutable struct ferritic__grid_ggd__grid_subset___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__grid_subset___identifier} + _parent::WeakRef end function ferritic__grid_ggd__grid_subset___identifier{T}() where T @@ -68634,8 +68634,8 @@ mutable struct ferritic__grid_ggd__grid_subset___element___object{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__grid_subset___element___object} + _parent::WeakRef end function ferritic__grid_ggd__grid_subset___element___object{T}() where T @@ -68646,13 +68646,13 @@ end ferritic__grid_ggd__grid_subset___element___object() = ferritic__grid_ggd__grid_subset___element___object{Float64}() mutable struct ferritic__grid_ggd__grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{ferritic__grid_ggd__grid_subset___element___object{T}} + var"object"::IDSvector{ferritic__grid_ggd__grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__grid_subset___element} + _parent::WeakRef end function ferritic__grid_ggd__grid_subset___element{T}() where T @@ -68674,8 +68674,8 @@ mutable struct ferritic__grid_ggd__grid_subset___base{T} <: IDSvectorRawElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__grid_subset___base} + _parent::WeakRef end function ferritic__grid_ggd__grid_subset___base{T}() where T @@ -68686,17 +68686,17 @@ end ferritic__grid_ggd__grid_subset___base() = ferritic__grid_ggd__grid_subset___base{Float64}() mutable struct ferritic__grid_ggd__grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{ferritic__grid_ggd__grid_subset___base{T}} + var"base"::IDSvector{ferritic__grid_ggd__grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{ferritic__grid_ggd__grid_subset___element{T}} - var"identifier" :: ferritic__grid_ggd__grid_subset___identifier{T} - var"metric" :: ferritic__grid_ggd__grid_subset___metric{T} + var"element"::IDSvector{ferritic__grid_ggd__grid_subset___element{T}} + var"identifier"::ferritic__grid_ggd__grid_subset___identifier{T} + var"metric"::ferritic__grid_ggd__grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd__grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd__grid_subset} + _parent::WeakRef end function ferritic__grid_ggd__grid_subset{T}() where T @@ -68711,16 +68711,16 @@ end ferritic__grid_ggd__grid_subset() = ferritic__grid_ggd__grid_subset{Float64}() mutable struct ferritic__grid_ggd{T} <: IDSraw{T} - var"grid_subset" :: IDSvector{ferritic__grid_ggd__grid_subset{T}} - var"identifier" :: ferritic__grid_ggd__identifier{T} + var"grid_subset"::IDSvector{ferritic__grid_ggd__grid_subset{T}} + var"identifier"::ferritic__grid_ggd__identifier{T} var"path" :: String - var"space" :: IDSvector{ferritic__grid_ggd__space{T}} + var"space"::IDSvector{ferritic__grid_ggd__space{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__grid_ggd} + _parent::WeakRef end function ferritic__grid_ggd{T}() where T @@ -68744,8 +68744,8 @@ mutable struct ferritic__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__code__library} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__code__library} + _parent::WeakRef end function ferritic__code__library{T}() where T @@ -68758,7 +68758,7 @@ ferritic__code__library() = ferritic__code__library{Float64}() mutable struct ferritic__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{ferritic__code__library{T}} + var"library"::IDSvector{ferritic__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -68768,8 +68768,8 @@ mutable struct ferritic__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic__code} - _parent :: WeakRef + _ref::Union{Nothing,ferritic__code} + _parent::WeakRef end function ferritic__code{T}() where T @@ -68781,18 +68781,18 @@ end ferritic__code() = ferritic__code{Float64}() mutable struct ferritic{T} <: IDStop{T} - var"code" :: ferritic__code{T} - var"grid_ggd" :: ferritic__grid_ggd{T} - var"ids_properties" :: ferritic__ids_properties{T} - var"object" :: IDSvector{ferritic__object{T}} - var"permeability_table" :: IDSvector{ferritic__permeability_table{T}} + var"code"::ferritic__code{T} + var"grid_ggd"::ferritic__grid_ggd{T} + var"ids_properties"::ferritic__ids_properties{T} + var"object"::IDSvector{ferritic__object{T}} + var"permeability_table"::IDSvector{ferritic__permeability_table{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ferritic} - _parent :: WeakRef + _ref::Union{Nothing,ferritic} + _parent::WeakRef end function ferritic{T}() where T @@ -68816,8 +68816,8 @@ mutable struct equilibrium__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__vacuum_toroidal_field} + _parent::WeakRef end function equilibrium__vacuum_toroidal_field{T}() where T @@ -68835,8 +68835,8 @@ mutable struct equilibrium__time_slice___profiles_2d___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___profiles_2d___type} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___profiles_2d___type} + _parent::WeakRef end function equilibrium__time_slice___profiles_2d___type{T}() where T @@ -68854,8 +68854,8 @@ mutable struct equilibrium__time_slice___profiles_2d___grid_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___profiles_2d___grid_type} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___profiles_2d___grid_type} + _parent::WeakRef end function equilibrium__time_slice___profiles_2d___grid_type{T}() where T @@ -68876,8 +68876,8 @@ mutable struct equilibrium__time_slice___profiles_2d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___profiles_2d___grid} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___profiles_2d___grid} + _parent::WeakRef end function equilibrium__time_slice___profiles_2d___grid{T}() where T @@ -68894,8 +68894,8 @@ mutable struct equilibrium__time_slice___profiles_2d{T} <: IDSvectorStaticElemen var"b_field_tor_σ" :: Matrix{<:T} var"b_field_z" :: Matrix{<:T} var"b_field_z_σ" :: Matrix{<:T} - var"grid" :: equilibrium__time_slice___profiles_2d___grid{T} - var"grid_type" :: equilibrium__time_slice___profiles_2d___grid_type{T} + var"grid"::equilibrium__time_slice___profiles_2d___grid{T} + var"grid_type"::equilibrium__time_slice___profiles_2d___grid_type{T} var"j_parallel" :: Matrix{<:T} var"j_parallel_σ" :: Matrix{<:T} var"j_tor" :: Matrix{<:T} @@ -68908,15 +68908,15 @@ mutable struct equilibrium__time_slice___profiles_2d{T} <: IDSvectorStaticElemen var"r_σ" :: Matrix{<:T} var"theta" :: Matrix{<:T} var"theta_σ" :: Matrix{<:T} - var"type" :: equilibrium__time_slice___profiles_2d___type{T} + var"type"::equilibrium__time_slice___profiles_2d___type{T} var"z" :: Matrix{<:T} var"z_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___profiles_2d} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___profiles_2d} + _parent::WeakRef end function equilibrium__time_slice___profiles_2d{T}() where T @@ -68938,8 +68938,8 @@ mutable struct equilibrium__time_slice___profiles_1d__geometric_axis{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___profiles_1d__geometric_axis} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___profiles_1d__geometric_axis} + _parent::WeakRef end function equilibrium__time_slice___profiles_1d__geometric_axis{T}() where T @@ -68980,7 +68980,7 @@ mutable struct equilibrium__time_slice___profiles_1d{T} <: IDS{T} var"f_df_dpsi_σ" :: Vector{<:T} var"fsa_bp" :: Vector{<:T} var"fsa_bp_σ" :: Vector{<:T} - var"geometric_axis" :: equilibrium__time_slice___profiles_1d__geometric_axis{T} + var"geometric_axis"::equilibrium__time_slice___profiles_1d__geometric_axis{T} var"gm1" :: Vector{<:T} var"gm1_σ" :: Vector{<:T} var"gm10" :: Vector{<:T} @@ -69051,8 +69051,8 @@ mutable struct equilibrium__time_slice___profiles_1d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___profiles_1d} + _parent::WeakRef end function equilibrium__time_slice___profiles_1d{T}() where T @@ -69072,8 +69072,8 @@ mutable struct equilibrium__time_slice___global_quantities__vacuum_toroidal_fiel _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___global_quantities__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___global_quantities__vacuum_toroidal_field} + _parent::WeakRef end function equilibrium__time_slice___global_quantities__vacuum_toroidal_field{T}() where T @@ -69096,8 +69096,8 @@ mutable struct equilibrium__time_slice___global_quantities__q_min{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___global_quantities__q_min} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___global_quantities__q_min} + _parent::WeakRef end function equilibrium__time_slice___global_quantities__q_min{T}() where T @@ -69118,8 +69118,8 @@ mutable struct equilibrium__time_slice___global_quantities__magnetic_axis{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___global_quantities__magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___global_quantities__magnetic_axis} + _parent::WeakRef end function equilibrium__time_slice___global_quantities__magnetic_axis{T}() where T @@ -69140,8 +69140,8 @@ mutable struct equilibrium__time_slice___global_quantities__current_centre{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___global_quantities__current_centre} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___global_quantities__current_centre} + _parent::WeakRef end function equilibrium__time_slice___global_quantities__current_centre{T}() where T @@ -69160,7 +69160,7 @@ mutable struct equilibrium__time_slice___global_quantities{T} <: IDS{T} var"beta_pol_σ" :: T var"beta_tor" :: T var"beta_tor_σ" :: T - var"current_centre" :: equilibrium__time_slice___global_quantities__current_centre{T} + var"current_centre"::equilibrium__time_slice___global_quantities__current_centre{T} var"energy_mhd" :: T var"energy_mhd_σ" :: T var"ip" :: T @@ -69169,7 +69169,7 @@ mutable struct equilibrium__time_slice___global_quantities{T} <: IDS{T} var"length_pol_σ" :: T var"li_3" :: T var"li_3_σ" :: T - var"magnetic_axis" :: equilibrium__time_slice___global_quantities__magnetic_axis{T} + var"magnetic_axis"::equilibrium__time_slice___global_quantities__magnetic_axis{T} var"plasma_inductance" :: T var"plasma_inductance_σ" :: T var"plasma_resistance" :: T @@ -69184,22 +69184,22 @@ mutable struct equilibrium__time_slice___global_quantities{T} <: IDS{T} var"q_95_σ" :: T var"q_axis" :: T var"q_axis_σ" :: T - var"q_min" :: equilibrium__time_slice___global_quantities__q_min{T} + var"q_min"::equilibrium__time_slice___global_quantities__q_min{T} var"rho_tor_boundary" :: T var"rho_tor_boundary_σ" :: T var"surface" :: T var"surface_σ" :: T var"v_external" :: T var"v_external_σ" :: T - var"vacuum_toroidal_field" :: equilibrium__time_slice___global_quantities__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::equilibrium__time_slice___global_quantities__vacuum_toroidal_field{T} var"volume" :: T var"volume_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___global_quantities} + _parent::WeakRef end function equilibrium__time_slice___global_quantities{T}() where T @@ -69224,8 +69224,8 @@ mutable struct equilibrium__time_slice___ggd___z{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___z} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___z} + _parent::WeakRef end function equilibrium__time_slice___ggd___z{T}() where T @@ -69246,8 +69246,8 @@ mutable struct equilibrium__time_slice___ggd___theta{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___theta} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___theta} + _parent::WeakRef end function equilibrium__time_slice___ggd___theta{T}() where T @@ -69268,8 +69268,8 @@ mutable struct equilibrium__time_slice___ggd___r{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___r} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___r} + _parent::WeakRef end function equilibrium__time_slice___ggd___r{T}() where T @@ -69290,8 +69290,8 @@ mutable struct equilibrium__time_slice___ggd___psi{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___psi} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___psi} + _parent::WeakRef end function equilibrium__time_slice___ggd___psi{T}() where T @@ -69312,8 +69312,8 @@ mutable struct equilibrium__time_slice___ggd___phi{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___phi} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___phi} + _parent::WeakRef end function equilibrium__time_slice___ggd___phi{T}() where T @@ -69334,8 +69334,8 @@ mutable struct equilibrium__time_slice___ggd___j_tor{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___j_tor} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___j_tor} + _parent::WeakRef end function equilibrium__time_slice___ggd___j_tor{T}() where T @@ -69356,8 +69356,8 @@ mutable struct equilibrium__time_slice___ggd___j_parallel{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___j_parallel} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___j_parallel} + _parent::WeakRef end function equilibrium__time_slice___ggd___j_parallel{T}() where T @@ -69378,8 +69378,8 @@ mutable struct equilibrium__time_slice___ggd___b_field_z{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___b_field_z} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___b_field_z} + _parent::WeakRef end function equilibrium__time_slice___ggd___b_field_z{T}() where T @@ -69400,8 +69400,8 @@ mutable struct equilibrium__time_slice___ggd___b_field_tor{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___b_field_tor} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___b_field_tor} + _parent::WeakRef end function equilibrium__time_slice___ggd___b_field_tor{T}() where T @@ -69422,8 +69422,8 @@ mutable struct equilibrium__time_slice___ggd___b_field_r{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd___b_field_r} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd___b_field_r} + _parent::WeakRef end function equilibrium__time_slice___ggd___b_field_r{T}() where T @@ -69434,22 +69434,22 @@ end equilibrium__time_slice___ggd___b_field_r() = equilibrium__time_slice___ggd___b_field_r{Float64}() mutable struct equilibrium__time_slice___ggd{T} <: IDSvectorStaticElement{T} - var"b_field_r" :: IDSvector{equilibrium__time_slice___ggd___b_field_r{T}} - var"b_field_tor" :: IDSvector{equilibrium__time_slice___ggd___b_field_tor{T}} - var"b_field_z" :: IDSvector{equilibrium__time_slice___ggd___b_field_z{T}} - var"j_parallel" :: IDSvector{equilibrium__time_slice___ggd___j_parallel{T}} - var"j_tor" :: IDSvector{equilibrium__time_slice___ggd___j_tor{T}} - var"phi" :: IDSvector{equilibrium__time_slice___ggd___phi{T}} - var"psi" :: IDSvector{equilibrium__time_slice___ggd___psi{T}} - var"r" :: IDSvector{equilibrium__time_slice___ggd___r{T}} - var"theta" :: IDSvector{equilibrium__time_slice___ggd___theta{T}} - var"z" :: IDSvector{equilibrium__time_slice___ggd___z{T}} + var"b_field_r"::IDSvector{equilibrium__time_slice___ggd___b_field_r{T}} + var"b_field_tor"::IDSvector{equilibrium__time_slice___ggd___b_field_tor{T}} + var"b_field_z"::IDSvector{equilibrium__time_slice___ggd___b_field_z{T}} + var"j_parallel"::IDSvector{equilibrium__time_slice___ggd___j_parallel{T}} + var"j_tor"::IDSvector{equilibrium__time_slice___ggd___j_tor{T}} + var"phi"::IDSvector{equilibrium__time_slice___ggd___phi{T}} + var"psi"::IDSvector{equilibrium__time_slice___ggd___psi{T}} + var"r"::IDSvector{equilibrium__time_slice___ggd___r{T}} + var"theta"::IDSvector{equilibrium__time_slice___ggd___theta{T}} + var"z"::IDSvector{equilibrium__time_slice___ggd___z{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___ggd} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___ggd} + _parent::WeakRef end function equilibrium__time_slice___ggd{T}() where T @@ -69477,8 +69477,8 @@ mutable struct equilibrium__time_slice___coordinate_system__grid_type{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___coordinate_system__grid_type} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___coordinate_system__grid_type} + _parent::WeakRef end function equilibrium__time_slice___coordinate_system__grid_type{T}() where T @@ -69499,8 +69499,8 @@ mutable struct equilibrium__time_slice___coordinate_system__grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___coordinate_system__grid} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___coordinate_system__grid} + _parent::WeakRef end function equilibrium__time_slice___coordinate_system__grid{T}() where T @@ -69511,8 +69511,8 @@ end equilibrium__time_slice___coordinate_system__grid() = equilibrium__time_slice___coordinate_system__grid{Float64}() mutable struct equilibrium__time_slice___coordinate_system{T} <: IDS{T} - var"grid" :: equilibrium__time_slice___coordinate_system__grid{T} - var"grid_type" :: equilibrium__time_slice___coordinate_system__grid_type{T} + var"grid"::equilibrium__time_slice___coordinate_system__grid{T} + var"grid_type"::equilibrium__time_slice___coordinate_system__grid_type{T} var"jacobian" :: Matrix{<:T} var"jacobian_σ" :: Matrix{<:T} var"r" :: Matrix{<:T} @@ -69527,8 +69527,8 @@ mutable struct equilibrium__time_slice___coordinate_system{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___coordinate_system} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___coordinate_system} + _parent::WeakRef end function equilibrium__time_slice___coordinate_system{T}() where T @@ -69548,8 +69548,8 @@ mutable struct equilibrium__time_slice___convergence__result{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___convergence__result} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___convergence__result} + _parent::WeakRef end function equilibrium__time_slice___convergence__result{T}() where T @@ -69567,8 +69567,8 @@ mutable struct equilibrium__time_slice___convergence__grad_shafranov_deviation_e _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___convergence__grad_shafranov_deviation_expression} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___convergence__grad_shafranov_deviation_expression} + _parent::WeakRef end function equilibrium__time_slice___convergence__grad_shafranov_deviation_expression{T}() where T @@ -69579,17 +69579,17 @@ end equilibrium__time_slice___convergence__grad_shafranov_deviation_expression() = equilibrium__time_slice___convergence__grad_shafranov_deviation_expression{Float64}() mutable struct equilibrium__time_slice___convergence{T} <: IDS{T} - var"grad_shafranov_deviation_expression" :: equilibrium__time_slice___convergence__grad_shafranov_deviation_expression{T} + var"grad_shafranov_deviation_expression"::equilibrium__time_slice___convergence__grad_shafranov_deviation_expression{T} var"grad_shafranov_deviation_value" :: T var"grad_shafranov_deviation_value_σ" :: T var"iterations_n" :: Int - var"result" :: equilibrium__time_slice___convergence__result{T} + var"result"::equilibrium__time_slice___convergence__result{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___convergence} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___convergence} + _parent::WeakRef end function equilibrium__time_slice___convergence{T}() where T @@ -69610,8 +69610,8 @@ mutable struct equilibrium__time_slice___constraints__x_point___position_reconst _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__x_point___position_reconstructed} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__x_point___position_reconstructed} + _parent::WeakRef end function equilibrium__time_slice___constraints__x_point___position_reconstructed{T}() where T @@ -69630,8 +69630,8 @@ mutable struct equilibrium__time_slice___constraints__x_point___position_measure _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__x_point___position_measured} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__x_point___position_measured} + _parent::WeakRef end function equilibrium__time_slice___constraints__x_point___position_measured{T}() where T @@ -69647,8 +69647,8 @@ mutable struct equilibrium__time_slice___constraints__x_point{T} <: IDSvectorSta var"chi_squared_z" :: T var"chi_squared_z_σ" :: T var"exact" :: Int - var"position_measured" :: equilibrium__time_slice___constraints__x_point___position_measured{T} - var"position_reconstructed" :: equilibrium__time_slice___constraints__x_point___position_reconstructed{T} + var"position_measured"::equilibrium__time_slice___constraints__x_point___position_measured{T} + var"position_reconstructed"::equilibrium__time_slice___constraints__x_point___position_reconstructed{T} var"source" :: String var"time_measurement" :: T var"time_measurement_σ" :: T @@ -69658,8 +69658,8 @@ mutable struct equilibrium__time_slice___constraints__x_point{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__x_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__x_point} + _parent::WeakRef end function equilibrium__time_slice___constraints__x_point{T}() where T @@ -69680,8 +69680,8 @@ mutable struct equilibrium__time_slice___constraints__strike_point___position_re _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__strike_point___position_reconstructed} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__strike_point___position_reconstructed} + _parent::WeakRef end function equilibrium__time_slice___constraints__strike_point___position_reconstructed{T}() where T @@ -69700,8 +69700,8 @@ mutable struct equilibrium__time_slice___constraints__strike_point___position_me _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__strike_point___position_measured} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__strike_point___position_measured} + _parent::WeakRef end function equilibrium__time_slice___constraints__strike_point___position_measured{T}() where T @@ -69717,8 +69717,8 @@ mutable struct equilibrium__time_slice___constraints__strike_point{T} <: IDSvect var"chi_squared_z" :: T var"chi_squared_z_σ" :: T var"exact" :: Int - var"position_measured" :: equilibrium__time_slice___constraints__strike_point___position_measured{T} - var"position_reconstructed" :: equilibrium__time_slice___constraints__strike_point___position_reconstructed{T} + var"position_measured"::equilibrium__time_slice___constraints__strike_point___position_measured{T} + var"position_reconstructed"::equilibrium__time_slice___constraints__strike_point___position_reconstructed{T} var"source" :: String var"time_measurement" :: T var"time_measurement_σ" :: T @@ -69728,8 +69728,8 @@ mutable struct equilibrium__time_slice___constraints__strike_point{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__strike_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__strike_point} + _parent::WeakRef end function equilibrium__time_slice___constraints__strike_point{T}() where T @@ -69756,8 +69756,8 @@ mutable struct equilibrium__time_slice___constraints__q___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__q___position} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__q___position} + _parent::WeakRef end function equilibrium__time_slice___constraints__q___position{T}() where T @@ -69773,7 +69773,7 @@ mutable struct equilibrium__time_slice___constraints__q{T} <: IDSvectorStaticEle var"exact" :: Int var"measured" :: T var"measured_σ" :: T - var"position" :: equilibrium__time_slice___constraints__q___position{T} + var"position"::equilibrium__time_slice___constraints__q___position{T} var"reconstructed" :: T var"reconstructed_σ" :: T var"source" :: String @@ -69785,8 +69785,8 @@ mutable struct equilibrium__time_slice___constraints__q{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__q} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__q} + _parent::WeakRef end function equilibrium__time_slice___constraints__q{T}() where T @@ -69812,8 +69812,8 @@ mutable struct equilibrium__time_slice___constraints__pressure_rotational___posi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__pressure_rotational___position} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__pressure_rotational___position} + _parent::WeakRef end function equilibrium__time_slice___constraints__pressure_rotational___position{T}() where T @@ -69829,7 +69829,7 @@ mutable struct equilibrium__time_slice___constraints__pressure_rotational{T} <: var"exact" :: Int var"measured" :: T var"measured_σ" :: T - var"position" :: equilibrium__time_slice___constraints__pressure_rotational___position{T} + var"position"::equilibrium__time_slice___constraints__pressure_rotational___position{T} var"reconstructed" :: T var"reconstructed_σ" :: T var"source" :: String @@ -69841,8 +69841,8 @@ mutable struct equilibrium__time_slice___constraints__pressure_rotational{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__pressure_rotational} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__pressure_rotational} + _parent::WeakRef end function equilibrium__time_slice___constraints__pressure_rotational{T}() where T @@ -69868,8 +69868,8 @@ mutable struct equilibrium__time_slice___constraints__pressure___position{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__pressure___position} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__pressure___position} + _parent::WeakRef end function equilibrium__time_slice___constraints__pressure___position{T}() where T @@ -69885,7 +69885,7 @@ mutable struct equilibrium__time_slice___constraints__pressure{T} <: IDSvectorSt var"exact" :: Int var"measured" :: T var"measured_σ" :: T - var"position" :: equilibrium__time_slice___constraints__pressure___position{T} + var"position"::equilibrium__time_slice___constraints__pressure___position{T} var"reconstructed" :: T var"reconstructed_σ" :: T var"source" :: String @@ -69897,8 +69897,8 @@ mutable struct equilibrium__time_slice___constraints__pressure{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__pressure} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__pressure} + _parent::WeakRef end function equilibrium__time_slice___constraints__pressure{T}() where T @@ -69926,8 +69926,8 @@ mutable struct equilibrium__time_slice___constraints__pf_passive_current{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__pf_passive_current} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__pf_passive_current} + _parent::WeakRef end function equilibrium__time_slice___constraints__pf_passive_current{T}() where T @@ -69954,8 +69954,8 @@ mutable struct equilibrium__time_slice___constraints__pf_current{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__pf_current} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__pf_current} + _parent::WeakRef end function equilibrium__time_slice___constraints__pf_current{T}() where T @@ -69982,8 +69982,8 @@ mutable struct equilibrium__time_slice___constraints__n_e_line{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__n_e_line} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__n_e_line} + _parent::WeakRef end function equilibrium__time_slice___constraints__n_e_line{T}() where T @@ -70008,8 +70008,8 @@ mutable struct equilibrium__time_slice___constraints__n_e___position{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__n_e___position} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__n_e___position} + _parent::WeakRef end function equilibrium__time_slice___constraints__n_e___position{T}() where T @@ -70025,7 +70025,7 @@ mutable struct equilibrium__time_slice___constraints__n_e{T} <: IDSvectorStaticE var"exact" :: Int var"measured" :: T var"measured_σ" :: T - var"position" :: equilibrium__time_slice___constraints__n_e___position{T} + var"position"::equilibrium__time_slice___constraints__n_e___position{T} var"reconstructed" :: T var"reconstructed_σ" :: T var"source" :: String @@ -70037,8 +70037,8 @@ mutable struct equilibrium__time_slice___constraints__n_e{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__n_e} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__n_e} + _parent::WeakRef end function equilibrium__time_slice___constraints__n_e{T}() where T @@ -70066,8 +70066,8 @@ mutable struct equilibrium__time_slice___constraints__mse_polarisation_angle{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__mse_polarisation_angle} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__mse_polarisation_angle} + _parent::WeakRef end function equilibrium__time_slice___constraints__mse_polarisation_angle{T}() where T @@ -70092,8 +70092,8 @@ mutable struct equilibrium__time_slice___constraints__j_tor___position{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__j_tor___position} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__j_tor___position} + _parent::WeakRef end function equilibrium__time_slice___constraints__j_tor___position{T}() where T @@ -70109,7 +70109,7 @@ mutable struct equilibrium__time_slice___constraints__j_tor{T} <: IDSvectorStati var"exact" :: Int var"measured" :: T var"measured_σ" :: T - var"position" :: equilibrium__time_slice___constraints__j_tor___position{T} + var"position"::equilibrium__time_slice___constraints__j_tor___position{T} var"reconstructed" :: T var"reconstructed_σ" :: T var"source" :: String @@ -70121,8 +70121,8 @@ mutable struct equilibrium__time_slice___constraints__j_tor{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__j_tor} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__j_tor} + _parent::WeakRef end function equilibrium__time_slice___constraints__j_tor{T}() where T @@ -70148,8 +70148,8 @@ mutable struct equilibrium__time_slice___constraints__j_parallel___position{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__j_parallel___position} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__j_parallel___position} + _parent::WeakRef end function equilibrium__time_slice___constraints__j_parallel___position{T}() where T @@ -70165,7 +70165,7 @@ mutable struct equilibrium__time_slice___constraints__j_parallel{T} <: IDSvector var"exact" :: Int var"measured" :: T var"measured_σ" :: T - var"position" :: equilibrium__time_slice___constraints__j_parallel___position{T} + var"position"::equilibrium__time_slice___constraints__j_parallel___position{T} var"reconstructed" :: T var"reconstructed_σ" :: T var"source" :: String @@ -70177,8 +70177,8 @@ mutable struct equilibrium__time_slice___constraints__j_parallel{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__j_parallel} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__j_parallel} + _parent::WeakRef end function equilibrium__time_slice___constraints__j_parallel{T}() where T @@ -70206,8 +70206,8 @@ mutable struct equilibrium__time_slice___constraints__iron_core_segment___magnet _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__iron_core_segment___magnetisation_z} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__iron_core_segment___magnetisation_z} + _parent::WeakRef end function equilibrium__time_slice___constraints__iron_core_segment___magnetisation_z{T}() where T @@ -70234,8 +70234,8 @@ mutable struct equilibrium__time_slice___constraints__iron_core_segment___magnet _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__iron_core_segment___magnetisation_r} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__iron_core_segment___magnetisation_r} + _parent::WeakRef end function equilibrium__time_slice___constraints__iron_core_segment___magnetisation_r{T}() where T @@ -70246,14 +70246,14 @@ end equilibrium__time_slice___constraints__iron_core_segment___magnetisation_r() = equilibrium__time_slice___constraints__iron_core_segment___magnetisation_r{Float64}() mutable struct equilibrium__time_slice___constraints__iron_core_segment{T} <: IDSvectorStaticElement{T} - var"magnetisation_r" :: equilibrium__time_slice___constraints__iron_core_segment___magnetisation_r{T} - var"magnetisation_z" :: equilibrium__time_slice___constraints__iron_core_segment___magnetisation_z{T} + var"magnetisation_r"::equilibrium__time_slice___constraints__iron_core_segment___magnetisation_r{T} + var"magnetisation_z"::equilibrium__time_slice___constraints__iron_core_segment___magnetisation_z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__iron_core_segment} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__iron_core_segment} + _parent::WeakRef end function equilibrium__time_slice___constraints__iron_core_segment{T}() where T @@ -70282,8 +70282,8 @@ mutable struct equilibrium__time_slice___constraints__ip{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__ip} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__ip} + _parent::WeakRef end function equilibrium__time_slice___constraints__ip{T}() where T @@ -70310,8 +70310,8 @@ mutable struct equilibrium__time_slice___constraints__flux_loop{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__flux_loop} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__flux_loop} + _parent::WeakRef end function equilibrium__time_slice___constraints__flux_loop{T}() where T @@ -70338,8 +70338,8 @@ mutable struct equilibrium__time_slice___constraints__faraday_angle{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__faraday_angle} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__faraday_angle} + _parent::WeakRef end function equilibrium__time_slice___constraints__faraday_angle{T}() where T @@ -70366,8 +70366,8 @@ mutable struct equilibrium__time_slice___constraints__diamagnetic_flux{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__diamagnetic_flux} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__diamagnetic_flux} + _parent::WeakRef end function equilibrium__time_slice___constraints__diamagnetic_flux{T}() where T @@ -70394,8 +70394,8 @@ mutable struct equilibrium__time_slice___constraints__bpol_probe{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__bpol_probe} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__bpol_probe} + _parent::WeakRef end function equilibrium__time_slice___constraints__bpol_probe{T}() where T @@ -70422,8 +70422,8 @@ mutable struct equilibrium__time_slice___constraints__b_field_tor_vacuum_r{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints__b_field_tor_vacuum_r} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints__b_field_tor_vacuum_r} + _parent::WeakRef end function equilibrium__time_slice___constraints__b_field_tor_vacuum_r{T}() where T @@ -70434,35 +70434,35 @@ end equilibrium__time_slice___constraints__b_field_tor_vacuum_r() = equilibrium__time_slice___constraints__b_field_tor_vacuum_r{Float64}() mutable struct equilibrium__time_slice___constraints{T} <: IDS{T} - var"b_field_tor_vacuum_r" :: equilibrium__time_slice___constraints__b_field_tor_vacuum_r{T} - var"bpol_probe" :: IDSvector{equilibrium__time_slice___constraints__bpol_probe{T}} + var"b_field_tor_vacuum_r"::equilibrium__time_slice___constraints__b_field_tor_vacuum_r{T} + var"bpol_probe"::IDSvector{equilibrium__time_slice___constraints__bpol_probe{T}} var"chi_squared_reduced" :: T var"chi_squared_reduced_σ" :: T var"constraints_n" :: Int - var"diamagnetic_flux" :: equilibrium__time_slice___constraints__diamagnetic_flux{T} - var"faraday_angle" :: IDSvector{equilibrium__time_slice___constraints__faraday_angle{T}} - var"flux_loop" :: IDSvector{equilibrium__time_slice___constraints__flux_loop{T}} + var"diamagnetic_flux"::equilibrium__time_slice___constraints__diamagnetic_flux{T} + var"faraday_angle"::IDSvector{equilibrium__time_slice___constraints__faraday_angle{T}} + var"flux_loop"::IDSvector{equilibrium__time_slice___constraints__flux_loop{T}} var"freedom_degrees_n" :: Int - var"ip" :: equilibrium__time_slice___constraints__ip{T} - var"iron_core_segment" :: IDSvector{equilibrium__time_slice___constraints__iron_core_segment{T}} - var"j_parallel" :: IDSvector{equilibrium__time_slice___constraints__j_parallel{T}} - var"j_tor" :: IDSvector{equilibrium__time_slice___constraints__j_tor{T}} - var"mse_polarisation_angle" :: IDSvector{equilibrium__time_slice___constraints__mse_polarisation_angle{T}} - var"n_e" :: IDSvector{equilibrium__time_slice___constraints__n_e{T}} - var"n_e_line" :: IDSvector{equilibrium__time_slice___constraints__n_e_line{T}} - var"pf_current" :: IDSvector{equilibrium__time_slice___constraints__pf_current{T}} - var"pf_passive_current" :: IDSvector{equilibrium__time_slice___constraints__pf_passive_current{T}} - var"pressure" :: IDSvector{equilibrium__time_slice___constraints__pressure{T}} - var"pressure_rotational" :: IDSvector{equilibrium__time_slice___constraints__pressure_rotational{T}} - var"q" :: IDSvector{equilibrium__time_slice___constraints__q{T}} - var"strike_point" :: IDSvector{equilibrium__time_slice___constraints__strike_point{T}} - var"x_point" :: IDSvector{equilibrium__time_slice___constraints__x_point{T}} + var"ip"::equilibrium__time_slice___constraints__ip{T} + var"iron_core_segment"::IDSvector{equilibrium__time_slice___constraints__iron_core_segment{T}} + var"j_parallel"::IDSvector{equilibrium__time_slice___constraints__j_parallel{T}} + var"j_tor"::IDSvector{equilibrium__time_slice___constraints__j_tor{T}} + var"mse_polarisation_angle"::IDSvector{equilibrium__time_slice___constraints__mse_polarisation_angle{T}} + var"n_e"::IDSvector{equilibrium__time_slice___constraints__n_e{T}} + var"n_e_line"::IDSvector{equilibrium__time_slice___constraints__n_e_line{T}} + var"pf_current"::IDSvector{equilibrium__time_slice___constraints__pf_current{T}} + var"pf_passive_current"::IDSvector{equilibrium__time_slice___constraints__pf_passive_current{T}} + var"pressure"::IDSvector{equilibrium__time_slice___constraints__pressure{T}} + var"pressure_rotational"::IDSvector{equilibrium__time_slice___constraints__pressure_rotational{T}} + var"q"::IDSvector{equilibrium__time_slice___constraints__q{T}} + var"strike_point"::IDSvector{equilibrium__time_slice___constraints__strike_point{T}} + var"x_point"::IDSvector{equilibrium__time_slice___constraints__x_point{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___constraints} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___constraints} + _parent::WeakRef end function equilibrium__time_slice___constraints{T}() where T @@ -70500,8 +70500,8 @@ mutable struct equilibrium__time_slice___boundary_separatrix__x_point{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix__x_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix__x_point} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix__x_point{T}() where T @@ -70520,8 +70520,8 @@ mutable struct equilibrium__time_slice___boundary_separatrix__strike_point{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix__strike_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix__strike_point} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix__strike_point{T}() where T @@ -70540,8 +70540,8 @@ mutable struct equilibrium__time_slice___boundary_separatrix__outline{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix__outline} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix__outline} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix__outline{T}() where T @@ -70560,8 +70560,8 @@ mutable struct equilibrium__time_slice___boundary_separatrix__geometric_axis{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix__geometric_axis} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix__geometric_axis} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix__geometric_axis{T}() where T @@ -70586,8 +70586,8 @@ mutable struct equilibrium__time_slice___boundary_separatrix__gap{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix__gap} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix__gap} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix__gap{T}() where T @@ -70606,8 +70606,8 @@ mutable struct equilibrium__time_slice___boundary_separatrix__dr_dz_zero_point{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix__dr_dz_zero_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix__dr_dz_zero_point} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix__dr_dz_zero_point{T}() where T @@ -70628,8 +70628,8 @@ mutable struct equilibrium__time_slice___boundary_separatrix__closest_wall_point _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix__closest_wall_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix__closest_wall_point} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix__closest_wall_point{T}() where T @@ -70648,8 +70648,8 @@ mutable struct equilibrium__time_slice___boundary_separatrix__active_limiter_poi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix__active_limiter_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix__active_limiter_point} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix__active_limiter_point{T}() where T @@ -70660,20 +70660,20 @@ end equilibrium__time_slice___boundary_separatrix__active_limiter_point() = equilibrium__time_slice___boundary_separatrix__active_limiter_point{Float64}() mutable struct equilibrium__time_slice___boundary_separatrix{T} <: IDS{T} - var"active_limiter_point" :: equilibrium__time_slice___boundary_separatrix__active_limiter_point{T} - var"closest_wall_point" :: equilibrium__time_slice___boundary_separatrix__closest_wall_point{T} - var"dr_dz_zero_point" :: equilibrium__time_slice___boundary_separatrix__dr_dz_zero_point{T} + var"active_limiter_point"::equilibrium__time_slice___boundary_separatrix__active_limiter_point{T} + var"closest_wall_point"::equilibrium__time_slice___boundary_separatrix__closest_wall_point{T} + var"dr_dz_zero_point"::equilibrium__time_slice___boundary_separatrix__dr_dz_zero_point{T} var"elongation" :: T var"elongation_σ" :: T var"elongation_lower" :: T var"elongation_lower_σ" :: T var"elongation_upper" :: T var"elongation_upper_σ" :: T - var"gap" :: IDSvector{equilibrium__time_slice___boundary_separatrix__gap{T}} - var"geometric_axis" :: equilibrium__time_slice___boundary_separatrix__geometric_axis{T} + var"gap"::IDSvector{equilibrium__time_slice___boundary_separatrix__gap{T}} + var"geometric_axis"::equilibrium__time_slice___boundary_separatrix__geometric_axis{T} var"minor_radius" :: T var"minor_radius_σ" :: T - var"outline" :: equilibrium__time_slice___boundary_separatrix__outline{T} + var"outline"::equilibrium__time_slice___boundary_separatrix__outline{T} var"psi" :: T var"psi_σ" :: T var"squareness_lower_inner" :: T @@ -70684,7 +70684,7 @@ mutable struct equilibrium__time_slice___boundary_separatrix{T} <: IDS{T} var"squareness_upper_inner_σ" :: T var"squareness_upper_outer" :: T var"squareness_upper_outer_σ" :: T - var"strike_point" :: IDSvector{equilibrium__time_slice___boundary_separatrix__strike_point{T}} + var"strike_point"::IDSvector{equilibrium__time_slice___boundary_separatrix__strike_point{T}} var"triangularity" :: T var"triangularity_σ" :: T var"triangularity_inner" :: T @@ -70698,13 +70698,13 @@ mutable struct equilibrium__time_slice___boundary_separatrix{T} <: IDS{T} var"triangularity_upper" :: T var"triangularity_upper_σ" :: T var"type" :: Int - var"x_point" :: IDSvector{equilibrium__time_slice___boundary_separatrix__x_point{T}} + var"x_point"::IDSvector{equilibrium__time_slice___boundary_separatrix__x_point{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_separatrix} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_separatrix} + _parent::WeakRef end function equilibrium__time_slice___boundary_separatrix{T}() where T @@ -70731,8 +70731,8 @@ mutable struct equilibrium__time_slice___boundary_secondary_separatrix__x_point{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_secondary_separatrix__x_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_secondary_separatrix__x_point} + _parent::WeakRef end function equilibrium__time_slice___boundary_secondary_separatrix__x_point{T}() where T @@ -70751,8 +70751,8 @@ mutable struct equilibrium__time_slice___boundary_secondary_separatrix__strike_p _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_secondary_separatrix__strike_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_secondary_separatrix__strike_point} + _parent::WeakRef end function equilibrium__time_slice___boundary_secondary_separatrix__strike_point{T}() where T @@ -70771,8 +70771,8 @@ mutable struct equilibrium__time_slice___boundary_secondary_separatrix__outline{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_secondary_separatrix__outline} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_secondary_separatrix__outline} + _parent::WeakRef end function equilibrium__time_slice___boundary_secondary_separatrix__outline{T}() where T @@ -70785,17 +70785,17 @@ equilibrium__time_slice___boundary_secondary_separatrix__outline() = equilibrium mutable struct equilibrium__time_slice___boundary_secondary_separatrix{T} <: IDS{T} var"distance_inner_outer" :: T var"distance_inner_outer_σ" :: T - var"outline" :: equilibrium__time_slice___boundary_secondary_separatrix__outline{T} + var"outline"::equilibrium__time_slice___boundary_secondary_separatrix__outline{T} var"psi" :: T var"psi_σ" :: T - var"strike_point" :: IDSvector{equilibrium__time_slice___boundary_secondary_separatrix__strike_point{T}} - var"x_point" :: IDSvector{equilibrium__time_slice___boundary_secondary_separatrix__x_point{T}} + var"strike_point"::IDSvector{equilibrium__time_slice___boundary_secondary_separatrix__strike_point{T}} + var"x_point"::IDSvector{equilibrium__time_slice___boundary_secondary_separatrix__x_point{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary_secondary_separatrix} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary_secondary_separatrix} + _parent::WeakRef end function equilibrium__time_slice___boundary_secondary_separatrix{T}() where T @@ -70817,8 +70817,8 @@ mutable struct equilibrium__time_slice___boundary__x_point{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary__x_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary__x_point} + _parent::WeakRef end function equilibrium__time_slice___boundary__x_point{T}() where T @@ -70837,8 +70837,8 @@ mutable struct equilibrium__time_slice___boundary__strike_point{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary__strike_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary__strike_point} + _parent::WeakRef end function equilibrium__time_slice___boundary__strike_point{T}() where T @@ -70857,8 +70857,8 @@ mutable struct equilibrium__time_slice___boundary__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary__outline} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary__outline} + _parent::WeakRef end function equilibrium__time_slice___boundary__outline{T}() where T @@ -70877,8 +70877,8 @@ mutable struct equilibrium__time_slice___boundary__geometric_axis{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary__geometric_axis} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary__geometric_axis} + _parent::WeakRef end function equilibrium__time_slice___boundary__geometric_axis{T}() where T @@ -70897,8 +70897,8 @@ mutable struct equilibrium__time_slice___boundary__active_limiter_point{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary__active_limiter_point} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary__active_limiter_point} + _parent::WeakRef end function equilibrium__time_slice___boundary__active_limiter_point{T}() where T @@ -70909,17 +70909,17 @@ end equilibrium__time_slice___boundary__active_limiter_point() = equilibrium__time_slice___boundary__active_limiter_point{Float64}() mutable struct equilibrium__time_slice___boundary{T} <: IDS{T} - var"active_limiter_point" :: equilibrium__time_slice___boundary__active_limiter_point{T} + var"active_limiter_point"::equilibrium__time_slice___boundary__active_limiter_point{T} var"elongation" :: T var"elongation_σ" :: T var"elongation_lower" :: T var"elongation_lower_σ" :: T var"elongation_upper" :: T var"elongation_upper_σ" :: T - var"geometric_axis" :: equilibrium__time_slice___boundary__geometric_axis{T} + var"geometric_axis"::equilibrium__time_slice___boundary__geometric_axis{T} var"minor_radius" :: T var"minor_radius_σ" :: T - var"outline" :: equilibrium__time_slice___boundary__outline{T} + var"outline"::equilibrium__time_slice___boundary__outline{T} var"ovality" :: T var"ovality_σ" :: T var"psi" :: T @@ -70936,7 +70936,7 @@ mutable struct equilibrium__time_slice___boundary{T} <: IDS{T} var"squareness_upper_inner_σ" :: T var"squareness_upper_outer" :: T var"squareness_upper_outer_σ" :: T - var"strike_point" :: IDSvector{equilibrium__time_slice___boundary__strike_point{T}} + var"strike_point"::IDSvector{equilibrium__time_slice___boundary__strike_point{T}} var"tilt" :: T var"tilt_σ" :: T var"triangularity" :: T @@ -70948,13 +70948,13 @@ mutable struct equilibrium__time_slice___boundary{T} <: IDS{T} var"twist" :: T var"twist_σ" :: T var"type" :: Int - var"x_point" :: IDSvector{equilibrium__time_slice___boundary__x_point{T}} + var"x_point"::IDSvector{equilibrium__time_slice___boundary__x_point{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice___boundary} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice___boundary} + _parent::WeakRef end function equilibrium__time_slice___boundary{T}() where T @@ -70970,23 +70970,23 @@ end equilibrium__time_slice___boundary() = equilibrium__time_slice___boundary{Float64}() mutable struct equilibrium__time_slice{T} <: IDSvectorTimeElement{T} - var"boundary" :: equilibrium__time_slice___boundary{T} - var"boundary_secondary_separatrix" :: equilibrium__time_slice___boundary_secondary_separatrix{T} - var"boundary_separatrix" :: equilibrium__time_slice___boundary_separatrix{T} - var"constraints" :: equilibrium__time_slice___constraints{T} - var"convergence" :: equilibrium__time_slice___convergence{T} - var"coordinate_system" :: equilibrium__time_slice___coordinate_system{T} - var"ggd" :: IDSvector{equilibrium__time_slice___ggd{T}} - var"global_quantities" :: equilibrium__time_slice___global_quantities{T} - var"profiles_1d" :: equilibrium__time_slice___profiles_1d{T} - var"profiles_2d" :: IDSvector{equilibrium__time_slice___profiles_2d{T}} + var"boundary"::equilibrium__time_slice___boundary{T} + var"boundary_secondary_separatrix"::equilibrium__time_slice___boundary_secondary_separatrix{T} + var"boundary_separatrix"::equilibrium__time_slice___boundary_separatrix{T} + var"constraints"::equilibrium__time_slice___constraints{T} + var"convergence"::equilibrium__time_slice___convergence{T} + var"coordinate_system"::equilibrium__time_slice___coordinate_system{T} + var"ggd"::IDSvector{equilibrium__time_slice___ggd{T}} + var"global_quantities"::equilibrium__time_slice___global_quantities{T} + var"profiles_1d"::equilibrium__time_slice___profiles_1d{T} + var"profiles_2d"::IDSvector{equilibrium__time_slice___profiles_2d{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__time_slice} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__time_slice} + _parent::WeakRef end function equilibrium__time_slice{T}() where T @@ -71014,8 +71014,8 @@ mutable struct equilibrium__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__version_put} + _parent::WeakRef end function equilibrium__ids_properties__version_put{T}() where T @@ -71032,8 +71032,8 @@ mutable struct equilibrium__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__provenance__node} + _parent::WeakRef end function equilibrium__ids_properties__provenance__node{T}() where T @@ -71044,13 +71044,13 @@ end equilibrium__ids_properties__provenance__node() = equilibrium__ids_properties__provenance__node{Float64}() mutable struct equilibrium__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{equilibrium__ids_properties__provenance__node{T}} + var"node"::IDSvector{equilibrium__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__provenance} + _parent::WeakRef end function equilibrium__ids_properties__provenance{T}() where T @@ -71072,8 +71072,8 @@ mutable struct equilibrium__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__plugins__node___readback} + _parent::WeakRef end function equilibrium__ids_properties__plugins__node___readback{T}() where T @@ -71094,8 +71094,8 @@ mutable struct equilibrium__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function equilibrium__ids_properties__plugins__node___put_operation{T}() where T @@ -71116,8 +71116,8 @@ mutable struct equilibrium__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function equilibrium__ids_properties__plugins__node___get_operation{T}() where T @@ -71128,16 +71128,16 @@ end equilibrium__ids_properties__plugins__node___get_operation() = equilibrium__ids_properties__plugins__node___get_operation{Float64}() mutable struct equilibrium__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{equilibrium__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{equilibrium__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{equilibrium__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{equilibrium__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{equilibrium__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{equilibrium__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__plugins__node} + _parent::WeakRef end function equilibrium__ids_properties__plugins__node{T}() where T @@ -71160,8 +71160,8 @@ mutable struct equilibrium__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function equilibrium__ids_properties__plugins__infrastructure_put{T}() where T @@ -71181,8 +71181,8 @@ mutable struct equilibrium__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function equilibrium__ids_properties__plugins__infrastructure_get{T}() where T @@ -71193,15 +71193,15 @@ end equilibrium__ids_properties__plugins__infrastructure_get() = equilibrium__ids_properties__plugins__infrastructure_get{Float64}() mutable struct equilibrium__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: equilibrium__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: equilibrium__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{equilibrium__ids_properties__plugins__node{T}} + var"infrastructure_get"::equilibrium__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::equilibrium__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{equilibrium__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__plugins} + _parent::WeakRef end function equilibrium__ids_properties__plugins{T}() where T @@ -71222,8 +71222,8 @@ mutable struct equilibrium__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties__occurrence_type} + _parent::WeakRef end function equilibrium__ids_properties__occurrence_type{T}() where T @@ -71239,17 +71239,17 @@ mutable struct equilibrium__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: equilibrium__ids_properties__occurrence_type{T} - var"plugins" :: equilibrium__ids_properties__plugins{T} - var"provenance" :: equilibrium__ids_properties__provenance{T} + var"occurrence_type"::equilibrium__ids_properties__occurrence_type{T} + var"plugins"::equilibrium__ids_properties__plugins{T} + var"provenance"::equilibrium__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: equilibrium__ids_properties__version_put{T} + var"version_put"::equilibrium__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__ids_properties} + _parent::WeakRef end function equilibrium__ids_properties{T}() where T @@ -71270,8 +71270,8 @@ mutable struct equilibrium__grids_ggd___grid___space___objects_per_dimension___o _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function equilibrium__grids_ggd___grid___space___objects_per_dimension___object___boundary{T}() where T @@ -71282,7 +71282,7 @@ end equilibrium__grids_ggd___grid___space___objects_per_dimension___object___boundary() = equilibrium__grids_ggd___grid___space___objects_per_dimension___object___boundary{Float64}() mutable struct equilibrium__grids_ggd___grid___space___objects_per_dimension___object{T} <: IDSvectorStaticElement{T} - var"boundary" :: IDSvector{equilibrium__grids_ggd___grid___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{equilibrium__grids_ggd___grid___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -71294,8 +71294,8 @@ mutable struct equilibrium__grids_ggd___grid___space___objects_per_dimension___o _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___space___objects_per_dimension___object} + _parent::WeakRef end function equilibrium__grids_ggd___grid___space___objects_per_dimension___object{T}() where T @@ -71314,8 +71314,8 @@ mutable struct equilibrium__grids_ggd___grid___space___objects_per_dimension___g _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function equilibrium__grids_ggd___grid___space___objects_per_dimension___geometry_content{T}() where T @@ -71326,14 +71326,14 @@ end equilibrium__grids_ggd___grid___space___objects_per_dimension___geometry_content() = equilibrium__grids_ggd___grid___space___objects_per_dimension___geometry_content{Float64}() mutable struct equilibrium__grids_ggd___grid___space___objects_per_dimension{T} <: IDSvectorStaticElement{T} - var"geometry_content" :: equilibrium__grids_ggd___grid___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{equilibrium__grids_ggd___grid___space___objects_per_dimension___object{T}} + var"geometry_content"::equilibrium__grids_ggd___grid___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{equilibrium__grids_ggd___grid___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___space___objects_per_dimension} + _parent::WeakRef end function equilibrium__grids_ggd___grid___space___objects_per_dimension{T}() where T @@ -71353,8 +71353,8 @@ mutable struct equilibrium__grids_ggd___grid___space___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___space___identifier} + _parent::WeakRef end function equilibrium__grids_ggd___grid___space___identifier{T}() where T @@ -71372,8 +71372,8 @@ mutable struct equilibrium__grids_ggd___grid___space___geometry_type{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___space___geometry_type} + _parent::WeakRef end function equilibrium__grids_ggd___grid___space___geometry_type{T}() where T @@ -71385,15 +71385,15 @@ equilibrium__grids_ggd___grid___space___geometry_type() = equilibrium__grids_ggd mutable struct equilibrium__grids_ggd___grid___space{T} <: IDSvectorStaticElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: equilibrium__grids_ggd___grid___space___geometry_type{T} - var"identifier" :: equilibrium__grids_ggd___grid___space___identifier{T} - var"objects_per_dimension" :: IDSvector{equilibrium__grids_ggd___grid___space___objects_per_dimension{T}} + var"geometry_type"::equilibrium__grids_ggd___grid___space___geometry_type{T} + var"identifier"::equilibrium__grids_ggd___grid___space___identifier{T} + var"objects_per_dimension"::IDSvector{equilibrium__grids_ggd___grid___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___space} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___space} + _parent::WeakRef end function equilibrium__grids_ggd___grid___space{T}() where T @@ -71414,8 +71414,8 @@ mutable struct equilibrium__grids_ggd___grid___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___identifier} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___identifier} + _parent::WeakRef end function equilibrium__grids_ggd___grid___identifier{T}() where T @@ -71436,8 +71436,8 @@ mutable struct equilibrium__grids_ggd___grid___grid_subset___metric{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___metric} + _parent::WeakRef end function equilibrium__grids_ggd___grid___grid_subset___metric{T}() where T @@ -71455,8 +71455,8 @@ mutable struct equilibrium__grids_ggd___grid___grid_subset___identifier{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___identifier} + _parent::WeakRef end function equilibrium__grids_ggd___grid___grid_subset___identifier{T}() where T @@ -71474,8 +71474,8 @@ mutable struct equilibrium__grids_ggd___grid___grid_subset___element___object{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___element___object} + _parent::WeakRef end function equilibrium__grids_ggd___grid___grid_subset___element___object{T}() where T @@ -71486,13 +71486,13 @@ end equilibrium__grids_ggd___grid___grid_subset___element___object() = equilibrium__grids_ggd___grid___grid_subset___element___object{Float64}() mutable struct equilibrium__grids_ggd___grid___grid_subset___element{T} <: IDSvectorStaticElement{T} - var"object" :: IDSvector{equilibrium__grids_ggd___grid___grid_subset___element___object{T}} + var"object"::IDSvector{equilibrium__grids_ggd___grid___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___element} + _parent::WeakRef end function equilibrium__grids_ggd___grid___grid_subset___element{T}() where T @@ -71514,8 +71514,8 @@ mutable struct equilibrium__grids_ggd___grid___grid_subset___base{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___grid_subset___base} + _parent::WeakRef end function equilibrium__grids_ggd___grid___grid_subset___base{T}() where T @@ -71526,17 +71526,17 @@ end equilibrium__grids_ggd___grid___grid_subset___base() = equilibrium__grids_ggd___grid___grid_subset___base{Float64}() mutable struct equilibrium__grids_ggd___grid___grid_subset{T} <: IDSvectorStaticElement{T} - var"base" :: IDSvector{equilibrium__grids_ggd___grid___grid_subset___base{T}} + var"base"::IDSvector{equilibrium__grids_ggd___grid___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{equilibrium__grids_ggd___grid___grid_subset___element{T}} - var"identifier" :: equilibrium__grids_ggd___grid___grid_subset___identifier{T} - var"metric" :: equilibrium__grids_ggd___grid___grid_subset___metric{T} + var"element"::IDSvector{equilibrium__grids_ggd___grid___grid_subset___element{T}} + var"identifier"::equilibrium__grids_ggd___grid___grid_subset___identifier{T} + var"metric"::equilibrium__grids_ggd___grid___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid___grid_subset} + _parent::WeakRef end function equilibrium__grids_ggd___grid___grid_subset{T}() where T @@ -71551,16 +71551,16 @@ end equilibrium__grids_ggd___grid___grid_subset() = equilibrium__grids_ggd___grid___grid_subset{Float64}() mutable struct equilibrium__grids_ggd___grid{T} <: IDSvectorStaticElement{T} - var"grid_subset" :: IDSvector{equilibrium__grids_ggd___grid___grid_subset{T}} - var"identifier" :: equilibrium__grids_ggd___grid___identifier{T} + var"grid_subset"::IDSvector{equilibrium__grids_ggd___grid___grid_subset{T}} + var"identifier"::equilibrium__grids_ggd___grid___identifier{T} var"path" :: String - var"space" :: IDSvector{equilibrium__grids_ggd___grid___space{T}} + var"space"::IDSvector{equilibrium__grids_ggd___grid___space{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd___grid} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd___grid} + _parent::WeakRef end function equilibrium__grids_ggd___grid{T}() where T @@ -71574,14 +71574,14 @@ end equilibrium__grids_ggd___grid() = equilibrium__grids_ggd___grid{Float64}() mutable struct equilibrium__grids_ggd{T} <: IDSvectorTimeElement{T} - var"grid" :: IDSvector{equilibrium__grids_ggd___grid{T}} + var"grid"::IDSvector{equilibrium__grids_ggd___grid{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__grids_ggd} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__grids_ggd} + _parent::WeakRef end function equilibrium__grids_ggd{T}() where T @@ -71603,8 +71603,8 @@ mutable struct equilibrium__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__code__library} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__code__library} + _parent::WeakRef end function equilibrium__code__library{T}() where T @@ -71617,7 +71617,7 @@ equilibrium__code__library() = equilibrium__code__library{Float64}() mutable struct equilibrium__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{equilibrium__code__library{T}} + var"library"::IDSvector{equilibrium__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -71627,8 +71627,8 @@ mutable struct equilibrium__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium__code} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium__code} + _parent::WeakRef end function equilibrium__code{T}() where T @@ -71640,18 +71640,18 @@ end equilibrium__code() = equilibrium__code{Float64}() mutable struct equilibrium{T} <: IDStop{T} - var"code" :: equilibrium__code{T} - var"grids_ggd" :: IDSvector{equilibrium__grids_ggd{T}} - var"ids_properties" :: equilibrium__ids_properties{T} + var"code"::equilibrium__code{T} + var"grids_ggd"::IDSvector{equilibrium__grids_ggd{T}} + var"ids_properties"::equilibrium__ids_properties{T} var"time" :: Vector{Float64} - var"time_slice" :: IDSvector{equilibrium__time_slice{T}} - var"vacuum_toroidal_field" :: equilibrium__vacuum_toroidal_field{T} + var"time_slice"::IDSvector{equilibrium__time_slice{T}} + var"vacuum_toroidal_field"::equilibrium__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,equilibrium} - _parent :: WeakRef + _ref::Union{Nothing,equilibrium} + _parent::WeakRef end function equilibrium{T}() where T @@ -71674,8 +71674,8 @@ mutable struct em_coupling__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__version_put} + _parent::WeakRef end function em_coupling__ids_properties__version_put{T}() where T @@ -71692,8 +71692,8 @@ mutable struct em_coupling__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__provenance__node} + _parent::WeakRef end function em_coupling__ids_properties__provenance__node{T}() where T @@ -71704,13 +71704,13 @@ end em_coupling__ids_properties__provenance__node() = em_coupling__ids_properties__provenance__node{Float64}() mutable struct em_coupling__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{em_coupling__ids_properties__provenance__node{T}} + var"node"::IDSvector{em_coupling__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__provenance} + _parent::WeakRef end function em_coupling__ids_properties__provenance{T}() where T @@ -71732,8 +71732,8 @@ mutable struct em_coupling__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__plugins__node___readback} + _parent::WeakRef end function em_coupling__ids_properties__plugins__node___readback{T}() where T @@ -71754,8 +71754,8 @@ mutable struct em_coupling__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function em_coupling__ids_properties__plugins__node___put_operation{T}() where T @@ -71776,8 +71776,8 @@ mutable struct em_coupling__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function em_coupling__ids_properties__plugins__node___get_operation{T}() where T @@ -71788,16 +71788,16 @@ end em_coupling__ids_properties__plugins__node___get_operation() = em_coupling__ids_properties__plugins__node___get_operation{Float64}() mutable struct em_coupling__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{em_coupling__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{em_coupling__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{em_coupling__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{em_coupling__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{em_coupling__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{em_coupling__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__plugins__node} + _parent::WeakRef end function em_coupling__ids_properties__plugins__node{T}() where T @@ -71820,8 +71820,8 @@ mutable struct em_coupling__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function em_coupling__ids_properties__plugins__infrastructure_put{T}() where T @@ -71841,8 +71841,8 @@ mutable struct em_coupling__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function em_coupling__ids_properties__plugins__infrastructure_get{T}() where T @@ -71853,15 +71853,15 @@ end em_coupling__ids_properties__plugins__infrastructure_get() = em_coupling__ids_properties__plugins__infrastructure_get{Float64}() mutable struct em_coupling__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: em_coupling__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: em_coupling__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{em_coupling__ids_properties__plugins__node{T}} + var"infrastructure_get"::em_coupling__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::em_coupling__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{em_coupling__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__plugins} + _parent::WeakRef end function em_coupling__ids_properties__plugins{T}() where T @@ -71882,8 +71882,8 @@ mutable struct em_coupling__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties__occurrence_type} + _parent::WeakRef end function em_coupling__ids_properties__occurrence_type{T}() where T @@ -71899,17 +71899,17 @@ mutable struct em_coupling__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: em_coupling__ids_properties__occurrence_type{T} - var"plugins" :: em_coupling__ids_properties__plugins{T} - var"provenance" :: em_coupling__ids_properties__provenance{T} + var"occurrence_type"::em_coupling__ids_properties__occurrence_type{T} + var"plugins"::em_coupling__ids_properties__plugins{T} + var"provenance"::em_coupling__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: em_coupling__ids_properties__version_put{T} + var"version_put"::em_coupling__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__ids_properties} + _parent::WeakRef end function em_coupling__ids_properties{T}() where T @@ -71930,8 +71930,8 @@ mutable struct em_coupling__grid_ggd___space___objects_per_dimension___object___ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function em_coupling__grid_ggd___space___objects_per_dimension___object___boundary{T}() where T @@ -71942,7 +71942,7 @@ end em_coupling__grid_ggd___space___objects_per_dimension___object___boundary() = em_coupling__grid_ggd___space___objects_per_dimension___object___boundary{Float64}() mutable struct em_coupling__grid_ggd___space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{em_coupling__grid_ggd___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{em_coupling__grid_ggd___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -71954,8 +71954,8 @@ mutable struct em_coupling__grid_ggd___space___objects_per_dimension___object{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___space___objects_per_dimension___object} + _parent::WeakRef end function em_coupling__grid_ggd___space___objects_per_dimension___object{T}() where T @@ -71974,8 +71974,8 @@ mutable struct em_coupling__grid_ggd___space___objects_per_dimension___geometry_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function em_coupling__grid_ggd___space___objects_per_dimension___geometry_content{T}() where T @@ -71986,14 +71986,14 @@ end em_coupling__grid_ggd___space___objects_per_dimension___geometry_content() = em_coupling__grid_ggd___space___objects_per_dimension___geometry_content{Float64}() mutable struct em_coupling__grid_ggd___space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: em_coupling__grid_ggd___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{em_coupling__grid_ggd___space___objects_per_dimension___object{T}} + var"geometry_content"::em_coupling__grid_ggd___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{em_coupling__grid_ggd___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___space___objects_per_dimension} + _parent::WeakRef end function em_coupling__grid_ggd___space___objects_per_dimension{T}() where T @@ -72013,8 +72013,8 @@ mutable struct em_coupling__grid_ggd___space___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___space___identifier} + _parent::WeakRef end function em_coupling__grid_ggd___space___identifier{T}() where T @@ -72032,8 +72032,8 @@ mutable struct em_coupling__grid_ggd___space___geometry_type{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___space___geometry_type} + _parent::WeakRef end function em_coupling__grid_ggd___space___geometry_type{T}() where T @@ -72045,15 +72045,15 @@ em_coupling__grid_ggd___space___geometry_type() = em_coupling__grid_ggd___space_ mutable struct em_coupling__grid_ggd___space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: em_coupling__grid_ggd___space___geometry_type{T} - var"identifier" :: em_coupling__grid_ggd___space___identifier{T} - var"objects_per_dimension" :: IDSvector{em_coupling__grid_ggd___space___objects_per_dimension{T}} + var"geometry_type"::em_coupling__grid_ggd___space___geometry_type{T} + var"identifier"::em_coupling__grid_ggd___space___identifier{T} + var"objects_per_dimension"::IDSvector{em_coupling__grid_ggd___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___space} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___space} + _parent::WeakRef end function em_coupling__grid_ggd___space{T}() where T @@ -72074,8 +72074,8 @@ mutable struct em_coupling__grid_ggd___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___identifier} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___identifier} + _parent::WeakRef end function em_coupling__grid_ggd___identifier{T}() where T @@ -72096,8 +72096,8 @@ mutable struct em_coupling__grid_ggd___grid_subset___metric{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___grid_subset___metric} + _parent::WeakRef end function em_coupling__grid_ggd___grid_subset___metric{T}() where T @@ -72115,8 +72115,8 @@ mutable struct em_coupling__grid_ggd___grid_subset___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___grid_subset___identifier} + _parent::WeakRef end function em_coupling__grid_ggd___grid_subset___identifier{T}() where T @@ -72134,8 +72134,8 @@ mutable struct em_coupling__grid_ggd___grid_subset___element___object{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___grid_subset___element___object} + _parent::WeakRef end function em_coupling__grid_ggd___grid_subset___element___object{T}() where T @@ -72146,13 +72146,13 @@ end em_coupling__grid_ggd___grid_subset___element___object() = em_coupling__grid_ggd___grid_subset___element___object{Float64}() mutable struct em_coupling__grid_ggd___grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{em_coupling__grid_ggd___grid_subset___element___object{T}} + var"object"::IDSvector{em_coupling__grid_ggd___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___grid_subset___element} + _parent::WeakRef end function em_coupling__grid_ggd___grid_subset___element{T}() where T @@ -72174,8 +72174,8 @@ mutable struct em_coupling__grid_ggd___grid_subset___base{T} <: IDSvectorRawElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___grid_subset___base} + _parent::WeakRef end function em_coupling__grid_ggd___grid_subset___base{T}() where T @@ -72186,17 +72186,17 @@ end em_coupling__grid_ggd___grid_subset___base() = em_coupling__grid_ggd___grid_subset___base{Float64}() mutable struct em_coupling__grid_ggd___grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{em_coupling__grid_ggd___grid_subset___base{T}} + var"base"::IDSvector{em_coupling__grid_ggd___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{em_coupling__grid_ggd___grid_subset___element{T}} - var"identifier" :: em_coupling__grid_ggd___grid_subset___identifier{T} - var"metric" :: em_coupling__grid_ggd___grid_subset___metric{T} + var"element"::IDSvector{em_coupling__grid_ggd___grid_subset___element{T}} + var"identifier"::em_coupling__grid_ggd___grid_subset___identifier{T} + var"metric"::em_coupling__grid_ggd___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd___grid_subset} + _parent::WeakRef end function em_coupling__grid_ggd___grid_subset{T}() where T @@ -72211,16 +72211,16 @@ end em_coupling__grid_ggd___grid_subset() = em_coupling__grid_ggd___grid_subset{Float64}() mutable struct em_coupling__grid_ggd{T} <: IDSvectorRawElement{T} - var"grid_subset" :: IDSvector{em_coupling__grid_ggd___grid_subset{T}} - var"identifier" :: em_coupling__grid_ggd___identifier{T} + var"grid_subset"::IDSvector{em_coupling__grid_ggd___grid_subset{T}} + var"identifier"::em_coupling__grid_ggd___identifier{T} var"path" :: String - var"space" :: IDSvector{em_coupling__grid_ggd___space{T}} + var"space"::IDSvector{em_coupling__grid_ggd___space{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__grid_ggd} + _parent::WeakRef end function em_coupling__grid_ggd{T}() where T @@ -72241,8 +72241,8 @@ mutable struct em_coupling__coupling_matrix___quantity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__coupling_matrix___quantity} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__coupling_matrix___quantity} + _parent::WeakRef end function em_coupling__coupling_matrix___quantity{T}() where T @@ -72257,14 +72257,14 @@ mutable struct em_coupling__coupling_matrix{T} <: IDSvectorStaticElement{T} var"data" :: Matrix{<:T} var"data_σ" :: Matrix{<:T} var"name" :: String - var"quantity" :: em_coupling__coupling_matrix___quantity{T} + var"quantity"::em_coupling__coupling_matrix___quantity{T} var"rows_uri" :: Vector{String} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__coupling_matrix} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__coupling_matrix} + _parent::WeakRef end function em_coupling__coupling_matrix{T}() where T @@ -72286,8 +72286,8 @@ mutable struct em_coupling__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__code__library} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__code__library} + _parent::WeakRef end function em_coupling__code__library{T}() where T @@ -72300,7 +72300,7 @@ em_coupling__code__library() = em_coupling__code__library{Float64}() mutable struct em_coupling__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{em_coupling__code__library{T}} + var"library"::IDSvector{em_coupling__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -72310,8 +72310,8 @@ mutable struct em_coupling__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling__code} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling__code} + _parent::WeakRef end function em_coupling__code{T}() where T @@ -72331,11 +72331,11 @@ mutable struct em_coupling{T} <: IDStop{T} var"b_field_pol_probes_passive_σ" :: Matrix{<:T} var"b_field_pol_probes_plasma" :: Matrix{<:T} var"b_field_pol_probes_plasma_σ" :: Matrix{<:T} - var"code" :: em_coupling__code{T} - var"coupling_matrix" :: IDSvector{em_coupling__coupling_matrix{T}} + var"code"::em_coupling__code{T} + var"coupling_matrix"::IDSvector{em_coupling__coupling_matrix{T}} var"flux_loops" :: Vector{String} - var"grid_ggd" :: IDSvector{em_coupling__grid_ggd{T}} - var"ids_properties" :: em_coupling__ids_properties{T} + var"grid_ggd"::IDSvector{em_coupling__grid_ggd{T}} + var"ids_properties"::em_coupling__ids_properties{T} var"mutual_active_active" :: Matrix{<:T} var"mutual_active_active_σ" :: Matrix{<:T} var"mutual_loops_active" :: Matrix{<:T} @@ -72361,8 +72361,8 @@ mutable struct em_coupling{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,em_coupling} - _parent :: WeakRef + _ref::Union{Nothing,em_coupling} + _parent::WeakRef end function em_coupling{T}() where T @@ -72384,8 +72384,8 @@ mutable struct edge_transport__model___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___identifier} + _parent::WeakRef end function edge_transport__model___identifier{T}() where T @@ -72404,8 +72404,8 @@ mutable struct edge_transport__model___ggd_fast___power_ion_total{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___power_ion_total} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___power_ion_total} + _parent::WeakRef end function edge_transport__model___ggd_fast___power_ion_total{T}() where T @@ -72424,8 +72424,8 @@ mutable struct edge_transport__model___ggd_fast___power{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___power} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___power} + _parent::WeakRef end function edge_transport__model___ggd_fast___power{T}() where T @@ -72444,8 +72444,8 @@ mutable struct edge_transport__model___ggd_fast___neutral___particle_flux_integr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___neutral___particle_flux_integrated} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___neutral___particle_flux_integrated} + _parent::WeakRef end function edge_transport__model___ggd_fast___neutral___particle_flux_integrated{T}() where T @@ -72465,8 +72465,8 @@ mutable struct edge_transport__model___ggd_fast___neutral___element{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___neutral___element} + _parent::WeakRef end function edge_transport__model___ggd_fast___neutral___element{T}() where T @@ -72477,16 +72477,16 @@ end edge_transport__model___ggd_fast___neutral___element() = edge_transport__model___ggd_fast___neutral___element{Float64}() mutable struct edge_transport__model___ggd_fast___neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{edge_transport__model___ggd_fast___neutral___element{T}} + var"element"::IDSvector{edge_transport__model___ggd_fast___neutral___element{T}} var"ion_index" :: Int var"label" :: String - var"particle_flux_integrated" :: IDSvector{edge_transport__model___ggd_fast___neutral___particle_flux_integrated{T}} + var"particle_flux_integrated"::IDSvector{edge_transport__model___ggd_fast___neutral___particle_flux_integrated{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___neutral} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___neutral} + _parent::WeakRef end function edge_transport__model___ggd_fast___neutral{T}() where T @@ -72507,8 +72507,8 @@ mutable struct edge_transport__model___ggd_fast___ion___particle_flux_integrated _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___ion___particle_flux_integrated} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___ion___particle_flux_integrated} + _parent::WeakRef end function edge_transport__model___ggd_fast___ion___particle_flux_integrated{T}() where T @@ -72528,8 +72528,8 @@ mutable struct edge_transport__model___ggd_fast___ion___element{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___ion___element} + _parent::WeakRef end function edge_transport__model___ggd_fast___ion___element{T}() where T @@ -72540,18 +72540,18 @@ end edge_transport__model___ggd_fast___ion___element() = edge_transport__model___ggd_fast___ion___element{Float64}() mutable struct edge_transport__model___ggd_fast___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{edge_transport__model___ggd_fast___ion___element{T}} + var"element"::IDSvector{edge_transport__model___ggd_fast___ion___element{T}} var"label" :: String var"neutral_index" :: Int - var"particle_flux_integrated" :: IDSvector{edge_transport__model___ggd_fast___ion___particle_flux_integrated{T}} + var"particle_flux_integrated"::IDSvector{edge_transport__model___ggd_fast___ion___particle_flux_integrated{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___ion} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___ion} + _parent::WeakRef end function edge_transport__model___ggd_fast___ion{T}() where T @@ -72572,8 +72572,8 @@ mutable struct edge_transport__model___ggd_fast___energy_flux_max{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___energy_flux_max} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___energy_flux_max} + _parent::WeakRef end function edge_transport__model___ggd_fast___energy_flux_max{T}() where T @@ -72592,8 +72592,8 @@ mutable struct edge_transport__model___ggd_fast___electrons__power{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___electrons__power} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___electrons__power} + _parent::WeakRef end function edge_transport__model___ggd_fast___electrons__power{T}() where T @@ -72612,8 +72612,8 @@ mutable struct edge_transport__model___ggd_fast___electrons__particle_flux_integ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___electrons__particle_flux_integrated} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___electrons__particle_flux_integrated} + _parent::WeakRef end function edge_transport__model___ggd_fast___electrons__particle_flux_integrated{T}() where T @@ -72624,14 +72624,14 @@ end edge_transport__model___ggd_fast___electrons__particle_flux_integrated() = edge_transport__model___ggd_fast___electrons__particle_flux_integrated{Float64}() mutable struct edge_transport__model___ggd_fast___electrons{T} <: IDS{T} - var"particle_flux_integrated" :: IDSvector{edge_transport__model___ggd_fast___electrons__particle_flux_integrated{T}} - var"power" :: IDSvector{edge_transport__model___ggd_fast___electrons__power{T}} + var"particle_flux_integrated"::IDSvector{edge_transport__model___ggd_fast___electrons__particle_flux_integrated{T}} + var"power"::IDSvector{edge_transport__model___ggd_fast___electrons__power{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast___electrons} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast___electrons} + _parent::WeakRef end function edge_transport__model___ggd_fast___electrons{T}() where T @@ -72644,19 +72644,19 @@ end edge_transport__model___ggd_fast___electrons() = edge_transport__model___ggd_fast___electrons{Float64}() mutable struct edge_transport__model___ggd_fast{T} <: IDSvectorTimeElement{T} - var"electrons" :: edge_transport__model___ggd_fast___electrons{T} - var"energy_flux_max" :: IDSvector{edge_transport__model___ggd_fast___energy_flux_max{T}} - var"ion" :: IDSvector{edge_transport__model___ggd_fast___ion{T}} - var"neutral" :: IDSvector{edge_transport__model___ggd_fast___neutral{T}} - var"power" :: IDSvector{edge_transport__model___ggd_fast___power{T}} - var"power_ion_total" :: IDSvector{edge_transport__model___ggd_fast___power_ion_total{T}} + var"electrons"::edge_transport__model___ggd_fast___electrons{T} + var"energy_flux_max"::IDSvector{edge_transport__model___ggd_fast___energy_flux_max{T}} + var"ion"::IDSvector{edge_transport__model___ggd_fast___ion{T}} + var"neutral"::IDSvector{edge_transport__model___ggd_fast___neutral{T}} + var"power"::IDSvector{edge_transport__model___ggd_fast___power{T}} + var"power_ion_total"::IDSvector{edge_transport__model___ggd_fast___power_ion_total{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd_fast} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd_fast} + _parent::WeakRef end function edge_transport__model___ggd_fast{T}() where T @@ -72683,8 +72683,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__v_radial{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__v_radial{T}() where T @@ -72705,8 +72705,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__v_pol{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__v_pol{T}() where T @@ -72727,8 +72727,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__v{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__v} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__v{T}() where T @@ -72749,8 +72749,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__flux_radial{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__flux_radial{T}() where T @@ -72771,8 +72771,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__flux_pol{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__flux_pol{T}() where T @@ -72793,8 +72793,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__flux_limiter{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__flux_limiter{T}() where T @@ -72815,8 +72815,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__flux{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__flux} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__flux{T}() where T @@ -72837,8 +72837,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__d_radial{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__d_radial{T}() where T @@ -72859,8 +72859,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__d_pol{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__d_pol{T}() where T @@ -72881,8 +72881,8 @@ mutable struct edge_transport__model___ggd___total_ion_energy__d{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy__d} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy__d{T}() where T @@ -72893,22 +72893,22 @@ end edge_transport__model___ggd___total_ion_energy__d() = edge_transport__model___ggd___total_ion_energy__d{Float64}() mutable struct edge_transport__model___ggd___total_ion_energy{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___total_ion_energy__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___total_ion_energy__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___total_ion_energy__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___total_ion_energy__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___total_ion_energy__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___total_ion_energy__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___total_ion_energy__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___total_ion_energy__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___total_ion_energy__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___total_ion_energy__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___total_ion_energy__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___total_ion_energy__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___total_ion_energy__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___total_ion_energy__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___total_ion_energy__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___total_ion_energy__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___total_ion_energy__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___total_ion_energy__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___total_ion_energy__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___total_ion_energy__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___total_ion_energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___total_ion_energy} + _parent::WeakRef end function edge_transport__model___ggd___total_ion_energy{T}() where T @@ -72939,8 +72939,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__v_radi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__v_radial{T}() where T @@ -72961,8 +72961,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__v_pol{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__v_pol{T}() where T @@ -72983,8 +72983,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__v{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__v} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__v{T}() where T @@ -73005,8 +73005,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__flux_r _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__flux_radial{T}() where T @@ -73027,8 +73027,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__flux_p _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__flux_pol{T}() where T @@ -73049,8 +73049,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__flux_l _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__flux_limiter{T}() where T @@ -73071,8 +73071,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__flux{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__flux} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__flux{T}() where T @@ -73093,8 +73093,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__d_radi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__d_radial{T}() where T @@ -73115,8 +73115,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__d_pol{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__d_pol{T}() where T @@ -73137,8 +73137,8 @@ mutable struct edge_transport__model___ggd___neutral___state___particles__d{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles__d} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles__d{T}() where T @@ -73149,22 +73149,22 @@ end edge_transport__model___ggd___neutral___state___particles__d() = edge_transport__model___ggd___neutral___state___particles__d{Float64}() mutable struct edge_transport__model___ggd___neutral___state___particles{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___particles__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___neutral___state___particles__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___neutral___state___particles__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___neutral___state___particles__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___neutral___state___particles__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___neutral___state___particles__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___neutral___state___particles__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___neutral___state___particles__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___neutral___state___particles__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___neutral___state___particles__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___neutral___state___particles__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___particles} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___particles{T}() where T @@ -73192,8 +73192,8 @@ mutable struct edge_transport__model___ggd___neutral___state___neutral_type{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___neutral_type} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___neutral_type{T}() where T @@ -73214,8 +73214,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__v_radia _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__v_radial{T}() where T @@ -73236,8 +73236,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__v_pol{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__v_pol{T}() where T @@ -73282,8 +73282,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__v{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__v} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__v{T}() where T @@ -73304,8 +73304,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__flux_ra _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__flux_radial{T}() where T @@ -73326,8 +73326,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__flux_po _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__flux_pol{T}() where T @@ -73372,8 +73372,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__flux_li _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__flux_limiter{T}() where T @@ -73418,8 +73418,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__flux{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__flux} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__flux{T}() where T @@ -73440,8 +73440,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__d_radia _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__d_radial{T}() where T @@ -73462,8 +73462,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__d_pol{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__d_pol{T}() where T @@ -73508,8 +73508,8 @@ mutable struct edge_transport__model___ggd___neutral___state___momentum__d{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum__d} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum__d{T}() where T @@ -73520,22 +73520,22 @@ end edge_transport__model___ggd___neutral___state___momentum__d() = edge_transport__model___ggd___neutral___state___momentum__d{Float64}() mutable struct edge_transport__model___ggd___neutral___state___momentum{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___momentum__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___neutral___state___momentum__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___momentum} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___momentum{T}() where T @@ -73566,8 +73566,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__v_radial{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__v_radial{T}() where T @@ -73588,8 +73588,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__v_pol{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__v_pol{T}() where T @@ -73610,8 +73610,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__v{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__v} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__v{T}() where T @@ -73632,8 +73632,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__flux_radi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__flux_radial{T}() where T @@ -73654,8 +73654,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__flux_pol{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__flux_pol{T}() where T @@ -73676,8 +73676,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__flux_limi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__flux_limiter{T}() where T @@ -73698,8 +73698,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__flux{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__flux} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__flux{T}() where T @@ -73720,8 +73720,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__d_radial{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__d_radial{T}() where T @@ -73742,8 +73742,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__d_pol{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__d_pol{T}() where T @@ -73764,8 +73764,8 @@ mutable struct edge_transport__model___ggd___neutral___state___energy__d{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy__d} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy__d{T}() where T @@ -73776,22 +73776,22 @@ end edge_transport__model___ggd___neutral___state___energy__d() = edge_transport__model___ggd___neutral___state___energy__d{Float64}() mutable struct edge_transport__model___ggd___neutral___state___energy{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___neutral___state___energy__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___neutral___state___energy__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___neutral___state___energy__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___neutral___state___energy__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___neutral___state___energy__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___neutral___state___energy__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___neutral___state___energy__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___neutral___state___energy__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___neutral___state___energy__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___neutral___state___energy__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___neutral___state___energy__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state___energy} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state___energy{T}() where T @@ -73813,11 +73813,11 @@ edge_transport__model___ggd___neutral___state___energy() = edge_transport__model mutable struct edge_transport__model___ggd___neutral___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: edge_transport__model___ggd___neutral___state___energy{T} + var"energy"::edge_transport__model___ggd___neutral___state___energy{T} var"label" :: String - var"momentum" :: edge_transport__model___ggd___neutral___state___momentum{T} - var"neutral_type" :: edge_transport__model___ggd___neutral___state___neutral_type{T} - var"particles" :: edge_transport__model___ggd___neutral___state___particles{T} + var"momentum"::edge_transport__model___ggd___neutral___state___momentum{T} + var"neutral_type"::edge_transport__model___ggd___neutral___state___neutral_type{T} + var"particles"::edge_transport__model___ggd___neutral___state___particles{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -73825,8 +73825,8 @@ mutable struct edge_transport__model___ggd___neutral___state{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___state} + _parent::WeakRef end function edge_transport__model___ggd___neutral___state{T}() where T @@ -73851,8 +73851,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__v_radial{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__v_radial{T}() where T @@ -73873,8 +73873,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__v_pol{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__v_pol{T}() where T @@ -73895,8 +73895,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__v{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__v} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__v{T}() where T @@ -73917,8 +73917,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__flux_radial{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__flux_radial{T}() where T @@ -73939,8 +73939,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__flux_pol{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__flux_pol{T}() where T @@ -73961,8 +73961,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__flux_limiter{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__flux_limiter{T}() where T @@ -73983,8 +73983,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__flux{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__flux} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__flux{T}() where T @@ -74005,8 +74005,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__d_radial{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__d_radial{T}() where T @@ -74027,8 +74027,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__d_pol{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__d_pol{T}() where T @@ -74049,8 +74049,8 @@ mutable struct edge_transport__model___ggd___neutral___particles__d{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles__d} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles__d{T}() where T @@ -74061,22 +74061,22 @@ end edge_transport__model___ggd___neutral___particles__d() = edge_transport__model___ggd___neutral___particles__d{Float64}() mutable struct edge_transport__model___ggd___neutral___particles{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___neutral___particles__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___neutral___particles__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___neutral___particles__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___neutral___particles__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___neutral___particles__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___neutral___particles__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___neutral___particles__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___neutral___particles__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___neutral___particles__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___neutral___particles__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___neutral___particles__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___neutral___particles__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___neutral___particles__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___neutral___particles__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___neutral___particles__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___neutral___particles__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___neutral___particles__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___neutral___particles__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___neutral___particles__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___neutral___particles__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___particles} + _parent::WeakRef end function edge_transport__model___ggd___neutral___particles{T}() where T @@ -74107,8 +74107,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__v_radial{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__v_radial{T}() where T @@ -74129,8 +74129,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__v_pol{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__v_pol{T}() where T @@ -74175,8 +74175,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__v{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__v} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__v{T}() where T @@ -74197,8 +74197,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__flux_radial{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__flux_radial{T}() where T @@ -74219,8 +74219,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__flux_pol{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__flux_pol{T}() where T @@ -74265,8 +74265,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__flux_limiter{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__flux_limiter{T}() where T @@ -74311,8 +74311,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__flux{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__flux} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__flux{T}() where T @@ -74333,8 +74333,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__d_radial{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__d_radial{T}() where T @@ -74355,8 +74355,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__d_pol{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__d_pol{T}() where T @@ -74401,8 +74401,8 @@ mutable struct edge_transport__model___ggd___neutral___momentum__d{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum__d} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum__d{T}() where T @@ -74413,22 +74413,22 @@ end edge_transport__model___ggd___neutral___momentum__d() = edge_transport__model___ggd___neutral___momentum__d{Float64}() mutable struct edge_transport__model___ggd___neutral___momentum{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___neutral___momentum__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___neutral___momentum__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___neutral___momentum__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___neutral___momentum__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___neutral___momentum__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___neutral___momentum__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___neutral___momentum__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___neutral___momentum__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___neutral___momentum__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___neutral___momentum__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___neutral___momentum__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___neutral___momentum__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___neutral___momentum__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___neutral___momentum__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___neutral___momentum__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___neutral___momentum__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___neutral___momentum__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___neutral___momentum__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___neutral___momentum__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___neutral___momentum__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___momentum} + _parent::WeakRef end function edge_transport__model___ggd___neutral___momentum{T}() where T @@ -74459,8 +74459,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__v_radial{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__v_radial{T}() where T @@ -74481,8 +74481,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__v_pol{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__v_pol{T}() where T @@ -74503,8 +74503,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__v{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__v} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__v{T}() where T @@ -74525,8 +74525,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__flux_radial{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__flux_radial{T}() where T @@ -74547,8 +74547,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__flux_pol{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__flux_pol{T}() where T @@ -74569,8 +74569,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__flux_limiter{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__flux_limiter{T}() where T @@ -74591,8 +74591,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__flux{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__flux} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__flux{T}() where T @@ -74613,8 +74613,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__d_radial{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__d_radial{T}() where T @@ -74635,8 +74635,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__d_pol{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__d_pol{T}() where T @@ -74657,8 +74657,8 @@ mutable struct edge_transport__model___ggd___neutral___energy__d{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy__d} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy__d{T}() where T @@ -74669,22 +74669,22 @@ end edge_transport__model___ggd___neutral___energy__d() = edge_transport__model___ggd___neutral___energy__d{Float64}() mutable struct edge_transport__model___ggd___neutral___energy{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___neutral___energy__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___neutral___energy__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___neutral___energy__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___neutral___energy__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___neutral___energy__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___neutral___energy__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___neutral___energy__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___neutral___energy__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___neutral___energy__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___neutral___energy__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___neutral___energy__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___neutral___energy__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___neutral___energy__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___neutral___energy__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___neutral___energy__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___neutral___energy__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___neutral___energy__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___neutral___energy__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___neutral___energy__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___neutral___energy__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___energy} + _parent::WeakRef end function edge_transport__model___ggd___neutral___energy{T}() where T @@ -74714,8 +74714,8 @@ mutable struct edge_transport__model___ggd___neutral___element{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral___element} + _parent::WeakRef end function edge_transport__model___ggd___neutral___element{T}() where T @@ -74726,20 +74726,20 @@ end edge_transport__model___ggd___neutral___element() = edge_transport__model___ggd___neutral___element{Float64}() mutable struct edge_transport__model___ggd___neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{edge_transport__model___ggd___neutral___element{T}} - var"energy" :: edge_transport__model___ggd___neutral___energy{T} + var"element"::IDSvector{edge_transport__model___ggd___neutral___element{T}} + var"energy"::edge_transport__model___ggd___neutral___energy{T} var"ion_index" :: Int var"label" :: String - var"momentum" :: edge_transport__model___ggd___neutral___momentum{T} + var"momentum"::edge_transport__model___ggd___neutral___momentum{T} var"multiple_states_flag" :: Int - var"particles" :: edge_transport__model___ggd___neutral___particles{T} - var"state" :: IDSvector{edge_transport__model___ggd___neutral___state{T}} + var"particles"::edge_transport__model___ggd___neutral___particles{T} + var"state"::IDSvector{edge_transport__model___ggd___neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___neutral} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___neutral} + _parent::WeakRef end function edge_transport__model___ggd___neutral{T}() where T @@ -74765,8 +74765,8 @@ mutable struct edge_transport__model___ggd___momentum__v_radial{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___momentum__v_radial{T}() where T @@ -74787,8 +74787,8 @@ mutable struct edge_transport__model___ggd___momentum__v_pol{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___momentum__v_pol{T}() where T @@ -74833,8 +74833,8 @@ mutable struct edge_transport__model___ggd___momentum__v{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__v} + _parent::WeakRef end function edge_transport__model___ggd___momentum__v{T}() where T @@ -74855,8 +74855,8 @@ mutable struct edge_transport__model___ggd___momentum__flux_radial{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___momentum__flux_radial{T}() where T @@ -74877,8 +74877,8 @@ mutable struct edge_transport__model___ggd___momentum__flux_pol{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___momentum__flux_pol{T}() where T @@ -74923,8 +74923,8 @@ mutable struct edge_transport__model___ggd___momentum__flux_limiter{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___momentum__flux_limiter{T}() where T @@ -74969,8 +74969,8 @@ mutable struct edge_transport__model___ggd___momentum__flux{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__flux} + _parent::WeakRef end function edge_transport__model___ggd___momentum__flux{T}() where T @@ -74991,8 +74991,8 @@ mutable struct edge_transport__model___ggd___momentum__d_radial{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___momentum__d_radial{T}() where T @@ -75013,8 +75013,8 @@ mutable struct edge_transport__model___ggd___momentum__d_pol{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___momentum__d_pol{T}() where T @@ -75059,8 +75059,8 @@ mutable struct edge_transport__model___ggd___momentum__d{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum__d} + _parent::WeakRef end function edge_transport__model___ggd___momentum__d{T}() where T @@ -75071,22 +75071,22 @@ end edge_transport__model___ggd___momentum__d() = edge_transport__model___ggd___momentum__d{Float64}() mutable struct edge_transport__model___ggd___momentum{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___momentum__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___momentum__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___momentum__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___momentum__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___momentum__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___momentum__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___momentum__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___momentum__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___momentum__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___momentum__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___momentum__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___momentum__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___momentum__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___momentum__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___momentum__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___momentum__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___momentum__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___momentum__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___momentum__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___momentum__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___momentum} + _parent::WeakRef end function edge_transport__model___ggd___momentum{T}() where T @@ -75117,8 +75117,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__v_radial{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__v_radial{T}() where T @@ -75139,8 +75139,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__v_pol{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__v_pol{T}() where T @@ -75161,8 +75161,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__v{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__v} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__v{T}() where T @@ -75183,8 +75183,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__flux_radia _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__flux_radial{T}() where T @@ -75205,8 +75205,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__flux_pol{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__flux_pol{T}() where T @@ -75227,8 +75227,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__flux_limit _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__flux_limiter{T}() where T @@ -75249,8 +75249,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__flux{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__flux} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__flux{T}() where T @@ -75271,8 +75271,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__d_radial{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__d_radial{T}() where T @@ -75293,8 +75293,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__d_pol{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__d_pol{T}() where T @@ -75315,8 +75315,8 @@ mutable struct edge_transport__model___ggd___ion___state___particles__d{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles__d} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles__d{T}() where T @@ -75327,22 +75327,22 @@ end edge_transport__model___ggd___ion___state___particles__d() = edge_transport__model___ggd___ion___state___particles__d{Float64}() mutable struct edge_transport__model___ggd___ion___state___particles{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___ion___state___particles__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___ion___state___particles__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___ion___state___particles__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___ion___state___particles__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___ion___state___particles__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___ion___state___particles__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___ion___state___particles__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___ion___state___particles__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___ion___state___particles__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___ion___state___particles__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___ion___state___particles__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___ion___state___particles__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___ion___state___particles__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___ion___state___particles__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___ion___state___particles__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___ion___state___particles__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___ion___state___particles__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___ion___state___particles__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___ion___state___particles__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___ion___state___particles__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___particles} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___particles{T}() where T @@ -75373,8 +75373,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__v_radial{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__v_radial{T}() where T @@ -75395,8 +75395,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__v_pol{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__v_pol{T}() where T @@ -75441,8 +75441,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__v{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__v} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__v{T}() where T @@ -75463,8 +75463,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__flux_radial _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__flux_radial{T}() where T @@ -75485,8 +75485,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__flux_pol{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__flux_pol{T}() where T @@ -75531,8 +75531,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__flux_limite _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__flux_limiter{T}() where T @@ -75577,8 +75577,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__flux{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__flux} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__flux{T}() where T @@ -75599,8 +75599,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__d_radial{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__d_radial{T}() where T @@ -75621,8 +75621,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__d_pol{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__d_pol{T}() where T @@ -75667,8 +75667,8 @@ mutable struct edge_transport__model___ggd___ion___state___momentum__d{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum__d} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum__d{T}() where T @@ -75679,22 +75679,22 @@ end edge_transport__model___ggd___ion___state___momentum__d() = edge_transport__model___ggd___ion___state___momentum__d{Float64}() mutable struct edge_transport__model___ggd___ion___state___momentum{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___ion___state___momentum__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___ion___state___momentum__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___ion___state___momentum__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___ion___state___momentum__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___ion___state___momentum__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___ion___state___momentum__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___ion___state___momentum__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___ion___state___momentum__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___ion___state___momentum__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___ion___state___momentum__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___ion___state___momentum__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___momentum} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___momentum{T}() where T @@ -75725,8 +75725,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__v_radial{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__v_radial{T}() where T @@ -75747,8 +75747,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__v_pol{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__v_pol{T}() where T @@ -75769,8 +75769,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__v{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__v} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__v{T}() where T @@ -75791,8 +75791,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__flux_radial{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__flux_radial{T}() where T @@ -75813,8 +75813,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__flux_pol{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__flux_pol{T}() where T @@ -75835,8 +75835,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__flux_limiter{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__flux_limiter{T}() where T @@ -75857,8 +75857,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__flux{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__flux} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__flux{T}() where T @@ -75879,8 +75879,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__d_radial{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__d_radial{T}() where T @@ -75901,8 +75901,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__d_pol{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__d_pol{T}() where T @@ -75923,8 +75923,8 @@ mutable struct edge_transport__model___ggd___ion___state___energy__d{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy__d} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy__d{T}() where T @@ -75935,22 +75935,22 @@ end edge_transport__model___ggd___ion___state___energy__d() = edge_transport__model___ggd___ion___state___energy__d{Float64}() mutable struct edge_transport__model___ggd___ion___state___energy{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___ion___state___energy__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___ion___state___energy__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___ion___state___energy__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___ion___state___energy__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___ion___state___energy__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___ion___state___energy__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___ion___state___energy__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___ion___state___energy__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___ion___state___energy__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___ion___state___energy__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___ion___state___energy__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___ion___state___energy__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___ion___state___energy__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___ion___state___energy__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___ion___state___energy__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___ion___state___energy__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___ion___state___energy__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___ion___state___energy__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___ion___state___energy__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___ion___state___energy__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state___energy} + _parent::WeakRef end function edge_transport__model___ggd___ion___state___energy{T}() where T @@ -75972,10 +75972,10 @@ edge_transport__model___ggd___ion___state___energy() = edge_transport__model___g mutable struct edge_transport__model___ggd___ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: edge_transport__model___ggd___ion___state___energy{T} + var"energy"::edge_transport__model___ggd___ion___state___energy{T} var"label" :: String - var"momentum" :: edge_transport__model___ggd___ion___state___momentum{T} - var"particles" :: edge_transport__model___ggd___ion___state___particles{T} + var"momentum"::edge_transport__model___ggd___ion___state___momentum{T} + var"particles"::edge_transport__model___ggd___ion___state___particles{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -75987,8 +75987,8 @@ mutable struct edge_transport__model___ggd___ion___state{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___state} + _parent::WeakRef end function edge_transport__model___ggd___ion___state{T}() where T @@ -76012,8 +76012,8 @@ mutable struct edge_transport__model___ggd___ion___particles__v_radial{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__v_radial{T}() where T @@ -76034,8 +76034,8 @@ mutable struct edge_transport__model___ggd___ion___particles__v_pol{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__v_pol{T}() where T @@ -76056,8 +76056,8 @@ mutable struct edge_transport__model___ggd___ion___particles__v{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__v} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__v{T}() where T @@ -76078,8 +76078,8 @@ mutable struct edge_transport__model___ggd___ion___particles__flux_radial{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__flux_radial{T}() where T @@ -76100,8 +76100,8 @@ mutable struct edge_transport__model___ggd___ion___particles__flux_pol{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__flux_pol{T}() where T @@ -76122,8 +76122,8 @@ mutable struct edge_transport__model___ggd___ion___particles__flux_limiter{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__flux_limiter{T}() where T @@ -76144,8 +76144,8 @@ mutable struct edge_transport__model___ggd___ion___particles__flux{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__flux} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__flux{T}() where T @@ -76166,8 +76166,8 @@ mutable struct edge_transport__model___ggd___ion___particles__d_radial{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__d_radial{T}() where T @@ -76188,8 +76188,8 @@ mutable struct edge_transport__model___ggd___ion___particles__d_pol{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__d_pol{T}() where T @@ -76210,8 +76210,8 @@ mutable struct edge_transport__model___ggd___ion___particles__d{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles__d} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles__d{T}() where T @@ -76222,22 +76222,22 @@ end edge_transport__model___ggd___ion___particles__d() = edge_transport__model___ggd___ion___particles__d{Float64}() mutable struct edge_transport__model___ggd___ion___particles{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___ion___particles__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___ion___particles__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___ion___particles__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___ion___particles__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___ion___particles__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___ion___particles__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___ion___particles__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___ion___particles__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___ion___particles__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___ion___particles__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___ion___particles__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___ion___particles__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___ion___particles__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___ion___particles__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___ion___particles__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___ion___particles__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___ion___particles__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___ion___particles__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___ion___particles__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___ion___particles__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___particles} + _parent::WeakRef end function edge_transport__model___ggd___ion___particles{T}() where T @@ -76268,8 +76268,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__v_radial{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__v_radial{T}() where T @@ -76290,8 +76290,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__v_pol{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__v_pol{T}() where T @@ -76336,8 +76336,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__v{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__v} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__v{T}() where T @@ -76358,8 +76358,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__flux_radial{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__flux_radial{T}() where T @@ -76380,8 +76380,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__flux_pol{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__flux_pol{T}() where T @@ -76426,8 +76426,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__flux_limiter{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__flux_limiter{T}() where T @@ -76472,8 +76472,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__flux{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__flux} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__flux{T}() where T @@ -76494,8 +76494,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__d_radial{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__d_radial{T}() where T @@ -76516,8 +76516,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__d_pol{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__d_pol{T}() where T @@ -76562,8 +76562,8 @@ mutable struct edge_transport__model___ggd___ion___momentum__d{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum__d} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum__d{T}() where T @@ -76574,22 +76574,22 @@ end edge_transport__model___ggd___ion___momentum__d() = edge_transport__model___ggd___ion___momentum__d{Float64}() mutable struct edge_transport__model___ggd___ion___momentum{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___ion___momentum__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___ion___momentum__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___ion___momentum__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___ion___momentum__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___ion___momentum__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___ion___momentum__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___ion___momentum__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___ion___momentum__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___ion___momentum__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___ion___momentum__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___ion___momentum__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___ion___momentum__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___ion___momentum__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___ion___momentum__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___ion___momentum__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___ion___momentum__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___ion___momentum__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___ion___momentum__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___ion___momentum__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___ion___momentum__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___momentum} + _parent::WeakRef end function edge_transport__model___ggd___ion___momentum{T}() where T @@ -76620,8 +76620,8 @@ mutable struct edge_transport__model___ggd___ion___energy__v_radial{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__v_radial{T}() where T @@ -76642,8 +76642,8 @@ mutable struct edge_transport__model___ggd___ion___energy__v_pol{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__v_pol{T}() where T @@ -76664,8 +76664,8 @@ mutable struct edge_transport__model___ggd___ion___energy__v{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__v} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__v{T}() where T @@ -76686,8 +76686,8 @@ mutable struct edge_transport__model___ggd___ion___energy__flux_radial{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__flux_radial{T}() where T @@ -76708,8 +76708,8 @@ mutable struct edge_transport__model___ggd___ion___energy__flux_pol{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__flux_pol{T}() where T @@ -76730,8 +76730,8 @@ mutable struct edge_transport__model___ggd___ion___energy__flux_limiter{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__flux_limiter{T}() where T @@ -76752,8 +76752,8 @@ mutable struct edge_transport__model___ggd___ion___energy__flux{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__flux} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__flux{T}() where T @@ -76774,8 +76774,8 @@ mutable struct edge_transport__model___ggd___ion___energy__d_radial{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__d_radial{T}() where T @@ -76796,8 +76796,8 @@ mutable struct edge_transport__model___ggd___ion___energy__d_pol{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__d_pol{T}() where T @@ -76818,8 +76818,8 @@ mutable struct edge_transport__model___ggd___ion___energy__d{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy__d} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy__d{T}() where T @@ -76830,22 +76830,22 @@ end edge_transport__model___ggd___ion___energy__d() = edge_transport__model___ggd___ion___energy__d{Float64}() mutable struct edge_transport__model___ggd___ion___energy{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___ion___energy__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___ion___energy__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___ion___energy__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___ion___energy__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___ion___energy__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___ion___energy__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___ion___energy__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___ion___energy__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___ion___energy__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___ion___energy__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___ion___energy__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___ion___energy__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___ion___energy__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___ion___energy__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___ion___energy__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___ion___energy__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___ion___energy__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___ion___energy__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___ion___energy__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___ion___energy__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___energy} + _parent::WeakRef end function edge_transport__model___ggd___ion___energy{T}() where T @@ -76875,8 +76875,8 @@ mutable struct edge_transport__model___ggd___ion___element{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion___element} + _parent::WeakRef end function edge_transport__model___ggd___ion___element{T}() where T @@ -76887,22 +76887,22 @@ end edge_transport__model___ggd___ion___element() = edge_transport__model___ggd___ion___element{Float64}() mutable struct edge_transport__model___ggd___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{edge_transport__model___ggd___ion___element{T}} - var"energy" :: edge_transport__model___ggd___ion___energy{T} + var"element"::IDSvector{edge_transport__model___ggd___ion___element{T}} + var"energy"::edge_transport__model___ggd___ion___energy{T} var"label" :: String - var"momentum" :: edge_transport__model___ggd___ion___momentum{T} + var"momentum"::edge_transport__model___ggd___ion___momentum{T} var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"particles" :: edge_transport__model___ggd___ion___particles{T} - var"state" :: IDSvector{edge_transport__model___ggd___ion___state{T}} + var"particles"::edge_transport__model___ggd___ion___particles{T} + var"state"::IDSvector{edge_transport__model___ggd___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___ion} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___ion} + _parent::WeakRef end function edge_transport__model___ggd___ion{T}() where T @@ -76928,8 +76928,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__v_radial{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__v_radial{T}() where T @@ -76950,8 +76950,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__v_pol{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__v_pol{T}() where T @@ -76972,8 +76972,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__v{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__v} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__v{T}() where T @@ -76994,8 +76994,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__flux_radial{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__flux_radial{T}() where T @@ -77016,8 +77016,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__flux_pol{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__flux_pol{T}() where T @@ -77038,8 +77038,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__flux_limiter{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__flux_limiter{T}() where T @@ -77060,8 +77060,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__flux{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__flux} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__flux{T}() where T @@ -77082,8 +77082,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__d_radial{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__d_radial{T}() where T @@ -77104,8 +77104,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__d_pol{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__d_pol{T}() where T @@ -77126,8 +77126,8 @@ mutable struct edge_transport__model___ggd___electrons__particles__d{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles__d} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles__d{T}() where T @@ -77138,22 +77138,22 @@ end edge_transport__model___ggd___electrons__particles__d() = edge_transport__model___ggd___electrons__particles__d{Float64}() mutable struct edge_transport__model___ggd___electrons__particles{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___electrons__particles__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___electrons__particles__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___electrons__particles__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___electrons__particles__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___electrons__particles__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___electrons__particles__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___electrons__particles__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___electrons__particles__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___electrons__particles__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___electrons__particles__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___electrons__particles__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___electrons__particles__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___electrons__particles__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___electrons__particles__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___electrons__particles__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___electrons__particles__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___electrons__particles__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___electrons__particles__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___electrons__particles__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___electrons__particles__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__particles} + _parent::WeakRef end function edge_transport__model___ggd___electrons__particles{T}() where T @@ -77184,8 +77184,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__v_radial{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__v_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__v_radial} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__v_radial{T}() where T @@ -77206,8 +77206,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__v_pol{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__v_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__v_pol} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__v_pol{T}() where T @@ -77228,8 +77228,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__v{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__v} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__v} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__v{T}() where T @@ -77250,8 +77250,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__flux_radial{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__flux_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__flux_radial} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__flux_radial{T}() where T @@ -77272,8 +77272,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__flux_pol{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__flux_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__flux_pol} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__flux_pol{T}() where T @@ -77294,8 +77294,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__flux_limiter{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__flux_limiter} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__flux_limiter} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__flux_limiter{T}() where T @@ -77316,8 +77316,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__flux{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__flux} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__flux} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__flux{T}() where T @@ -77338,8 +77338,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__d_radial{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__d_radial} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__d_radial} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__d_radial{T}() where T @@ -77360,8 +77360,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__d_pol{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__d_pol} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__d_pol} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__d_pol{T}() where T @@ -77382,8 +77382,8 @@ mutable struct edge_transport__model___ggd___electrons__energy__d{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy__d} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy__d} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy__d{T}() where T @@ -77394,22 +77394,22 @@ end edge_transport__model___ggd___electrons__energy__d() = edge_transport__model___ggd___electrons__energy__d{Float64}() mutable struct edge_transport__model___ggd___electrons__energy{T} <: IDS{T} - var"d" :: IDSvector{edge_transport__model___ggd___electrons__energy__d{T}} - var"d_pol" :: IDSvector{edge_transport__model___ggd___electrons__energy__d_pol{T}} - var"d_radial" :: IDSvector{edge_transport__model___ggd___electrons__energy__d_radial{T}} - var"flux" :: IDSvector{edge_transport__model___ggd___electrons__energy__flux{T}} - var"flux_limiter" :: IDSvector{edge_transport__model___ggd___electrons__energy__flux_limiter{T}} - var"flux_pol" :: IDSvector{edge_transport__model___ggd___electrons__energy__flux_pol{T}} - var"flux_radial" :: IDSvector{edge_transport__model___ggd___electrons__energy__flux_radial{T}} - var"v" :: IDSvector{edge_transport__model___ggd___electrons__energy__v{T}} - var"v_pol" :: IDSvector{edge_transport__model___ggd___electrons__energy__v_pol{T}} - var"v_radial" :: IDSvector{edge_transport__model___ggd___electrons__energy__v_radial{T}} + var"d"::IDSvector{edge_transport__model___ggd___electrons__energy__d{T}} + var"d_pol"::IDSvector{edge_transport__model___ggd___electrons__energy__d_pol{T}} + var"d_radial"::IDSvector{edge_transport__model___ggd___electrons__energy__d_radial{T}} + var"flux"::IDSvector{edge_transport__model___ggd___electrons__energy__flux{T}} + var"flux_limiter"::IDSvector{edge_transport__model___ggd___electrons__energy__flux_limiter{T}} + var"flux_pol"::IDSvector{edge_transport__model___ggd___electrons__energy__flux_pol{T}} + var"flux_radial"::IDSvector{edge_transport__model___ggd___electrons__energy__flux_radial{T}} + var"v"::IDSvector{edge_transport__model___ggd___electrons__energy__v{T}} + var"v_pol"::IDSvector{edge_transport__model___ggd___electrons__energy__v_pol{T}} + var"v_radial"::IDSvector{edge_transport__model___ggd___electrons__energy__v_radial{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons__energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons__energy} + _parent::WeakRef end function edge_transport__model___ggd___electrons__energy{T}() where T @@ -77430,14 +77430,14 @@ end edge_transport__model___ggd___electrons__energy() = edge_transport__model___ggd___electrons__energy{Float64}() mutable struct edge_transport__model___ggd___electrons{T} <: IDS{T} - var"energy" :: edge_transport__model___ggd___electrons__energy{T} - var"particles" :: edge_transport__model___ggd___electrons__particles{T} + var"energy"::edge_transport__model___ggd___electrons__energy{T} + var"particles"::edge_transport__model___ggd___electrons__particles{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___electrons} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___electrons} + _parent::WeakRef end function edge_transport__model___ggd___electrons{T}() where T @@ -77484,8 +77484,8 @@ mutable struct edge_transport__model___ggd___conductivity{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd___conductivity} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd___conductivity} + _parent::WeakRef end function edge_transport__model___ggd___conductivity{T}() where T @@ -77496,19 +77496,19 @@ end edge_transport__model___ggd___conductivity() = edge_transport__model___ggd___conductivity{Float64}() mutable struct edge_transport__model___ggd{T} <: IDSvectorTimeElement{T} - var"conductivity" :: IDSvector{edge_transport__model___ggd___conductivity{T}} - var"electrons" :: edge_transport__model___ggd___electrons{T} - var"ion" :: IDSvector{edge_transport__model___ggd___ion{T}} - var"momentum" :: edge_transport__model___ggd___momentum{T} - var"neutral" :: IDSvector{edge_transport__model___ggd___neutral{T}} + var"conductivity"::IDSvector{edge_transport__model___ggd___conductivity{T}} + var"electrons"::edge_transport__model___ggd___electrons{T} + var"ion"::IDSvector{edge_transport__model___ggd___ion{T}} + var"momentum"::edge_transport__model___ggd___momentum{T} + var"neutral"::IDSvector{edge_transport__model___ggd___neutral{T}} var"time" :: Float64 - var"total_ion_energy" :: edge_transport__model___ggd___total_ion_energy{T} + var"total_ion_energy"::edge_transport__model___ggd___total_ion_energy{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___ggd} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___ggd} + _parent::WeakRef end function edge_transport__model___ggd{T}() where T @@ -77531,8 +77531,8 @@ mutable struct edge_transport__model___code__output_flag{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___code__output_flag} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___code__output_flag} + _parent::WeakRef end function edge_transport__model___code__output_flag{T}() where T @@ -77546,7 +77546,7 @@ mutable struct edge_transport__model___code{T} <: IDS{T} var"commit" :: String var"description" :: String var"name" :: String - var"output_flag" :: edge_transport__model___code__output_flag{T} + var"output_flag"::edge_transport__model___code__output_flag{T} var"parameters" :: String var"repository" :: String var"version" :: String @@ -77554,8 +77554,8 @@ mutable struct edge_transport__model___code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model___code} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model___code} + _parent::WeakRef end function edge_transport__model___code{T}() where T @@ -77567,18 +77567,18 @@ end edge_transport__model___code() = edge_transport__model___code{Float64}() mutable struct edge_transport__model{T} <: IDSvectorStaticElement{T} - var"code" :: edge_transport__model___code{T} + var"code"::edge_transport__model___code{T} var"flux_multiplier" :: T var"flux_multiplier_σ" :: T - var"ggd" :: IDSvector{edge_transport__model___ggd{T}} - var"ggd_fast" :: IDSvector{edge_transport__model___ggd_fast{T}} - var"identifier" :: edge_transport__model___identifier{T} + var"ggd"::IDSvector{edge_transport__model___ggd{T}} + var"ggd_fast"::IDSvector{edge_transport__model___ggd_fast{T}} + var"identifier"::edge_transport__model___identifier{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__model} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__model} + _parent::WeakRef end function edge_transport__model{T}() where T @@ -77600,8 +77600,8 @@ mutable struct edge_transport__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__midplane} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__midplane} + _parent::WeakRef end function edge_transport__midplane{T}() where T @@ -77619,8 +77619,8 @@ mutable struct edge_transport__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__version_put} + _parent::WeakRef end function edge_transport__ids_properties__version_put{T}() where T @@ -77637,8 +77637,8 @@ mutable struct edge_transport__ids_properties__provenance__node{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__provenance__node} + _parent::WeakRef end function edge_transport__ids_properties__provenance__node{T}() where T @@ -77649,13 +77649,13 @@ end edge_transport__ids_properties__provenance__node() = edge_transport__ids_properties__provenance__node{Float64}() mutable struct edge_transport__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{edge_transport__ids_properties__provenance__node{T}} + var"node"::IDSvector{edge_transport__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__provenance} + _parent::WeakRef end function edge_transport__ids_properties__provenance{T}() where T @@ -77677,8 +77677,8 @@ mutable struct edge_transport__ids_properties__plugins__node___readback{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__plugins__node___readback} + _parent::WeakRef end function edge_transport__ids_properties__plugins__node___readback{T}() where T @@ -77699,8 +77699,8 @@ mutable struct edge_transport__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function edge_transport__ids_properties__plugins__node___put_operation{T}() where T @@ -77721,8 +77721,8 @@ mutable struct edge_transport__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function edge_transport__ids_properties__plugins__node___get_operation{T}() where T @@ -77733,16 +77733,16 @@ end edge_transport__ids_properties__plugins__node___get_operation() = edge_transport__ids_properties__plugins__node___get_operation{Float64}() mutable struct edge_transport__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{edge_transport__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{edge_transport__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{edge_transport__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{edge_transport__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{edge_transport__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{edge_transport__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__plugins__node} + _parent::WeakRef end function edge_transport__ids_properties__plugins__node{T}() where T @@ -77765,8 +77765,8 @@ mutable struct edge_transport__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function edge_transport__ids_properties__plugins__infrastructure_put{T}() where T @@ -77786,8 +77786,8 @@ mutable struct edge_transport__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function edge_transport__ids_properties__plugins__infrastructure_get{T}() where T @@ -77798,15 +77798,15 @@ end edge_transport__ids_properties__plugins__infrastructure_get() = edge_transport__ids_properties__plugins__infrastructure_get{Float64}() mutable struct edge_transport__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: edge_transport__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: edge_transport__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{edge_transport__ids_properties__plugins__node{T}} + var"infrastructure_get"::edge_transport__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::edge_transport__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{edge_transport__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__plugins} + _parent::WeakRef end function edge_transport__ids_properties__plugins{T}() where T @@ -77827,8 +77827,8 @@ mutable struct edge_transport__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties__occurrence_type} + _parent::WeakRef end function edge_transport__ids_properties__occurrence_type{T}() where T @@ -77844,17 +77844,17 @@ mutable struct edge_transport__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: edge_transport__ids_properties__occurrence_type{T} - var"plugins" :: edge_transport__ids_properties__plugins{T} - var"provenance" :: edge_transport__ids_properties__provenance{T} + var"occurrence_type"::edge_transport__ids_properties__occurrence_type{T} + var"plugins"::edge_transport__ids_properties__plugins{T} + var"provenance"::edge_transport__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: edge_transport__ids_properties__version_put{T} + var"version_put"::edge_transport__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__ids_properties} + _parent::WeakRef end function edge_transport__ids_properties{T}() where T @@ -77875,8 +77875,8 @@ mutable struct edge_transport__grid_ggd___space___objects_per_dimension___object _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function edge_transport__grid_ggd___space___objects_per_dimension___object___boundary{T}() where T @@ -77887,7 +77887,7 @@ end edge_transport__grid_ggd___space___objects_per_dimension___object___boundary() = edge_transport__grid_ggd___space___objects_per_dimension___object___boundary{Float64}() mutable struct edge_transport__grid_ggd___space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{edge_transport__grid_ggd___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{edge_transport__grid_ggd___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -77899,8 +77899,8 @@ mutable struct edge_transport__grid_ggd___space___objects_per_dimension___object _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___space___objects_per_dimension___object} + _parent::WeakRef end function edge_transport__grid_ggd___space___objects_per_dimension___object{T}() where T @@ -77919,8 +77919,8 @@ mutable struct edge_transport__grid_ggd___space___objects_per_dimension___geomet _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function edge_transport__grid_ggd___space___objects_per_dimension___geometry_content{T}() where T @@ -77931,14 +77931,14 @@ end edge_transport__grid_ggd___space___objects_per_dimension___geometry_content() = edge_transport__grid_ggd___space___objects_per_dimension___geometry_content{Float64}() mutable struct edge_transport__grid_ggd___space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: edge_transport__grid_ggd___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{edge_transport__grid_ggd___space___objects_per_dimension___object{T}} + var"geometry_content"::edge_transport__grid_ggd___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{edge_transport__grid_ggd___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___space___objects_per_dimension} + _parent::WeakRef end function edge_transport__grid_ggd___space___objects_per_dimension{T}() where T @@ -77958,8 +77958,8 @@ mutable struct edge_transport__grid_ggd___space___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___space___identifier} + _parent::WeakRef end function edge_transport__grid_ggd___space___identifier{T}() where T @@ -77977,8 +77977,8 @@ mutable struct edge_transport__grid_ggd___space___geometry_type{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___space___geometry_type} + _parent::WeakRef end function edge_transport__grid_ggd___space___geometry_type{T}() where T @@ -77990,15 +77990,15 @@ edge_transport__grid_ggd___space___geometry_type() = edge_transport__grid_ggd___ mutable struct edge_transport__grid_ggd___space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: edge_transport__grid_ggd___space___geometry_type{T} - var"identifier" :: edge_transport__grid_ggd___space___identifier{T} - var"objects_per_dimension" :: IDSvector{edge_transport__grid_ggd___space___objects_per_dimension{T}} + var"geometry_type"::edge_transport__grid_ggd___space___geometry_type{T} + var"identifier"::edge_transport__grid_ggd___space___identifier{T} + var"objects_per_dimension"::IDSvector{edge_transport__grid_ggd___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___space} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___space} + _parent::WeakRef end function edge_transport__grid_ggd___space{T}() where T @@ -78019,8 +78019,8 @@ mutable struct edge_transport__grid_ggd___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___identifier} + _parent::WeakRef end function edge_transport__grid_ggd___identifier{T}() where T @@ -78041,8 +78041,8 @@ mutable struct edge_transport__grid_ggd___grid_subset___metric{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___grid_subset___metric} + _parent::WeakRef end function edge_transport__grid_ggd___grid_subset___metric{T}() where T @@ -78060,8 +78060,8 @@ mutable struct edge_transport__grid_ggd___grid_subset___identifier{T} <: IDSraw{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___grid_subset___identifier} + _parent::WeakRef end function edge_transport__grid_ggd___grid_subset___identifier{T}() where T @@ -78079,8 +78079,8 @@ mutable struct edge_transport__grid_ggd___grid_subset___element___object{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___grid_subset___element___object} + _parent::WeakRef end function edge_transport__grid_ggd___grid_subset___element___object{T}() where T @@ -78091,13 +78091,13 @@ end edge_transport__grid_ggd___grid_subset___element___object() = edge_transport__grid_ggd___grid_subset___element___object{Float64}() mutable struct edge_transport__grid_ggd___grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{edge_transport__grid_ggd___grid_subset___element___object{T}} + var"object"::IDSvector{edge_transport__grid_ggd___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___grid_subset___element} + _parent::WeakRef end function edge_transport__grid_ggd___grid_subset___element{T}() where T @@ -78119,8 +78119,8 @@ mutable struct edge_transport__grid_ggd___grid_subset___base{T} <: IDSvectorRawE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___grid_subset___base} + _parent::WeakRef end function edge_transport__grid_ggd___grid_subset___base{T}() where T @@ -78131,17 +78131,17 @@ end edge_transport__grid_ggd___grid_subset___base() = edge_transport__grid_ggd___grid_subset___base{Float64}() mutable struct edge_transport__grid_ggd___grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{edge_transport__grid_ggd___grid_subset___base{T}} + var"base"::IDSvector{edge_transport__grid_ggd___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{edge_transport__grid_ggd___grid_subset___element{T}} - var"identifier" :: edge_transport__grid_ggd___grid_subset___identifier{T} - var"metric" :: edge_transport__grid_ggd___grid_subset___metric{T} + var"element"::IDSvector{edge_transport__grid_ggd___grid_subset___element{T}} + var"identifier"::edge_transport__grid_ggd___grid_subset___identifier{T} + var"metric"::edge_transport__grid_ggd___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd___grid_subset} + _parent::WeakRef end function edge_transport__grid_ggd___grid_subset{T}() where T @@ -78156,17 +78156,17 @@ end edge_transport__grid_ggd___grid_subset() = edge_transport__grid_ggd___grid_subset{Float64}() mutable struct edge_transport__grid_ggd{T} <: IDSvectorRawElement{T} - var"grid_subset" :: IDSvector{edge_transport__grid_ggd___grid_subset{T}} - var"identifier" :: edge_transport__grid_ggd___identifier{T} + var"grid_subset"::IDSvector{edge_transport__grid_ggd___grid_subset{T}} + var"identifier"::edge_transport__grid_ggd___identifier{T} var"path" :: String - var"space" :: IDSvector{edge_transport__grid_ggd___space{T}} + var"space"::IDSvector{edge_transport__grid_ggd___space{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__grid_ggd} + _parent::WeakRef end function edge_transport__grid_ggd{T}() where T @@ -78190,8 +78190,8 @@ mutable struct edge_transport__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__code__library} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__code__library} + _parent::WeakRef end function edge_transport__code__library{T}() where T @@ -78204,7 +78204,7 @@ edge_transport__code__library() = edge_transport__code__library{Float64}() mutable struct edge_transport__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{edge_transport__code__library{T}} + var"library"::IDSvector{edge_transport__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -78214,8 +78214,8 @@ mutable struct edge_transport__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport__code} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport__code} + _parent::WeakRef end function edge_transport__code{T}() where T @@ -78227,18 +78227,18 @@ end edge_transport__code() = edge_transport__code{Float64}() mutable struct edge_transport{T} <: IDStop{T} - var"code" :: edge_transport__code{T} - var"grid_ggd" :: IDSvector{edge_transport__grid_ggd{T}} - var"ids_properties" :: edge_transport__ids_properties{T} - var"midplane" :: edge_transport__midplane{T} - var"model" :: IDSvector{edge_transport__model{T}} + var"code"::edge_transport__code{T} + var"grid_ggd"::IDSvector{edge_transport__grid_ggd{T}} + var"ids_properties"::edge_transport__ids_properties{T} + var"midplane"::edge_transport__midplane{T} + var"model"::IDSvector{edge_transport__model{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_transport} - _parent :: WeakRef + _ref::Union{Nothing,edge_transport} + _parent::WeakRef end function edge_transport{T}() where T @@ -78261,8 +78261,8 @@ mutable struct edge_sources__source___species__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species__type} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species__type} + _parent::WeakRef end function edge_sources__source___species__type{T}() where T @@ -78280,8 +78280,8 @@ mutable struct edge_sources__source___species__neutral__state__neutral_type{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species__neutral__state__neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species__neutral__state__neutral_type} + _parent::WeakRef end function edge_sources__source___species__neutral__state__neutral_type{T}() where T @@ -78294,7 +78294,7 @@ edge_sources__source___species__neutral__state__neutral_type() = edge_sources__s mutable struct edge_sources__source___species__neutral__state{T} <: IDS{T} var"electron_configuration" :: String var"label" :: String - var"neutral_type" :: edge_sources__source___species__neutral__state__neutral_type{T} + var"neutral_type"::edge_sources__source___species__neutral__state__neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -78302,8 +78302,8 @@ mutable struct edge_sources__source___species__neutral__state{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species__neutral__state} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species__neutral__state} + _parent::WeakRef end function edge_sources__source___species__neutral__state{T}() where T @@ -78324,8 +78324,8 @@ mutable struct edge_sources__source___species__neutral__element{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species__neutral__element} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species__neutral__element} + _parent::WeakRef end function edge_sources__source___species__neutral__element{T}() where T @@ -78336,15 +78336,15 @@ end edge_sources__source___species__neutral__element() = edge_sources__source___species__neutral__element{Float64}() mutable struct edge_sources__source___species__neutral{T} <: IDS{T} - var"element" :: IDSvector{edge_sources__source___species__neutral__element{T}} + var"element"::IDSvector{edge_sources__source___species__neutral__element{T}} var"label" :: String - var"state" :: edge_sources__source___species__neutral__state{T} + var"state"::edge_sources__source___species__neutral__state{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species__neutral} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species__neutral} + _parent::WeakRef end function edge_sources__source___species__neutral{T}() where T @@ -78370,8 +78370,8 @@ mutable struct edge_sources__source___species__ion__state{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species__ion__state} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species__ion__state} + _parent::WeakRef end function edge_sources__source___species__ion__state{T}() where T @@ -78391,8 +78391,8 @@ mutable struct edge_sources__source___species__ion__element{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species__ion__element} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species__ion__element} + _parent::WeakRef end function edge_sources__source___species__ion__element{T}() where T @@ -78403,17 +78403,17 @@ end edge_sources__source___species__ion__element() = edge_sources__source___species__ion__element{Float64}() mutable struct edge_sources__source___species__ion{T} <: IDS{T} - var"element" :: IDSvector{edge_sources__source___species__ion__element{T}} + var"element"::IDSvector{edge_sources__source___species__ion__element{T}} var"label" :: String - var"state" :: edge_sources__source___species__ion__state{T} + var"state"::edge_sources__source___species__ion__state{T} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species__ion} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species__ion} + _parent::WeakRef end function edge_sources__source___species__ion{T}() where T @@ -78426,15 +78426,15 @@ end edge_sources__source___species__ion() = edge_sources__source___species__ion{Float64}() mutable struct edge_sources__source___species{T} <: IDS{T} - var"ion" :: edge_sources__source___species__ion{T} - var"neutral" :: edge_sources__source___species__neutral{T} - var"type" :: edge_sources__source___species__type{T} + var"ion"::edge_sources__source___species__ion{T} + var"neutral"::edge_sources__source___species__neutral{T} + var"type"::edge_sources__source___species__type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___species} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___species} + _parent::WeakRef end function edge_sources__source___species{T}() where T @@ -78455,8 +78455,8 @@ mutable struct edge_sources__source___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___identifier} + _parent::WeakRef end function edge_sources__source___identifier{T}() where T @@ -78475,8 +78475,8 @@ mutable struct edge_sources__source___ggd_fast___ion___power{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd_fast___ion___power} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd_fast___ion___power} + _parent::WeakRef end function edge_sources__source___ggd_fast___ion___power{T}() where T @@ -78496,8 +78496,8 @@ mutable struct edge_sources__source___ggd_fast___ion___element{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd_fast___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd_fast___ion___element} + _parent::WeakRef end function edge_sources__source___ggd_fast___ion___element{T}() where T @@ -78508,18 +78508,18 @@ end edge_sources__source___ggd_fast___ion___element() = edge_sources__source___ggd_fast___ion___element{Float64}() mutable struct edge_sources__source___ggd_fast___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{edge_sources__source___ggd_fast___ion___element{T}} + var"element"::IDSvector{edge_sources__source___ggd_fast___ion___element{T}} var"label" :: String var"neutral_index" :: Int - var"power" :: IDSvector{edge_sources__source___ggd_fast___ion___power{T}} + var"power"::IDSvector{edge_sources__source___ggd_fast___ion___power{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd_fast___ion} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd_fast___ion} + _parent::WeakRef end function edge_sources__source___ggd_fast___ion{T}() where T @@ -78532,14 +78532,14 @@ end edge_sources__source___ggd_fast___ion() = edge_sources__source___ggd_fast___ion{Float64}() mutable struct edge_sources__source___ggd_fast{T} <: IDSvectorTimeElement{T} - var"ion" :: IDSvector{edge_sources__source___ggd_fast___ion{T}} + var"ion"::IDSvector{edge_sources__source___ggd_fast___ion{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd_fast} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd_fast} + _parent::WeakRef end function edge_sources__source___ggd_fast{T}() where T @@ -78561,8 +78561,8 @@ mutable struct edge_sources__source___ggd___total_ion_energy{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___total_ion_energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___total_ion_energy} + _parent::WeakRef end function edge_sources__source___ggd___total_ion_energy{T}() where T @@ -78583,8 +78583,8 @@ mutable struct edge_sources__source___ggd___neutral___state___particles{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___state___particles} + _parent::WeakRef end function edge_sources__source___ggd___neutral___state___particles{T}() where T @@ -78602,8 +78602,8 @@ mutable struct edge_sources__source___ggd___neutral___state___neutral_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___state___neutral_type} + _parent::WeakRef end function edge_sources__source___ggd___neutral___state___neutral_type{T}() where T @@ -78648,8 +78648,8 @@ mutable struct edge_sources__source___ggd___neutral___state___momentum{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___state___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___state___momentum} + _parent::WeakRef end function edge_sources__source___ggd___neutral___state___momentum{T}() where T @@ -78670,8 +78670,8 @@ mutable struct edge_sources__source___ggd___neutral___state___energy{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___state___energy} + _parent::WeakRef end function edge_sources__source___ggd___neutral___state___energy{T}() where T @@ -78683,11 +78683,11 @@ edge_sources__source___ggd___neutral___state___energy() = edge_sources__source__ mutable struct edge_sources__source___ggd___neutral___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: IDSvector{edge_sources__source___ggd___neutral___state___energy{T}} + var"energy"::IDSvector{edge_sources__source___ggd___neutral___state___energy{T}} var"label" :: String - var"momentum" :: IDSvector{edge_sources__source___ggd___neutral___state___momentum{T}} - var"neutral_type" :: edge_sources__source___ggd___neutral___state___neutral_type{T} - var"particles" :: IDSvector{edge_sources__source___ggd___neutral___state___particles{T}} + var"momentum"::IDSvector{edge_sources__source___ggd___neutral___state___momentum{T}} + var"neutral_type"::edge_sources__source___ggd___neutral___state___neutral_type{T} + var"particles"::IDSvector{edge_sources__source___ggd___neutral___state___particles{T}} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -78695,8 +78695,8 @@ mutable struct edge_sources__source___ggd___neutral___state{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___state} + _parent::WeakRef end function edge_sources__source___ggd___neutral___state{T}() where T @@ -78721,8 +78721,8 @@ mutable struct edge_sources__source___ggd___neutral___particles{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___particles} + _parent::WeakRef end function edge_sources__source___ggd___neutral___particles{T}() where T @@ -78767,8 +78767,8 @@ mutable struct edge_sources__source___ggd___neutral___momentum{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___momentum} + _parent::WeakRef end function edge_sources__source___ggd___neutral___momentum{T}() where T @@ -78789,8 +78789,8 @@ mutable struct edge_sources__source___ggd___neutral___energy{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___energy} + _parent::WeakRef end function edge_sources__source___ggd___neutral___energy{T}() where T @@ -78810,8 +78810,8 @@ mutable struct edge_sources__source___ggd___neutral___element{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral___element} + _parent::WeakRef end function edge_sources__source___ggd___neutral___element{T}() where T @@ -78822,20 +78822,20 @@ end edge_sources__source___ggd___neutral___element() = edge_sources__source___ggd___neutral___element{Float64}() mutable struct edge_sources__source___ggd___neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{edge_sources__source___ggd___neutral___element{T}} - var"energy" :: IDSvector{edge_sources__source___ggd___neutral___energy{T}} + var"element"::IDSvector{edge_sources__source___ggd___neutral___element{T}} + var"energy"::IDSvector{edge_sources__source___ggd___neutral___energy{T}} var"ion_index" :: Int var"label" :: String - var"momentum" :: IDSvector{edge_sources__source___ggd___neutral___momentum{T}} + var"momentum"::IDSvector{edge_sources__source___ggd___neutral___momentum{T}} var"multiple_states_flag" :: Int - var"particles" :: IDSvector{edge_sources__source___ggd___neutral___particles{T}} - var"state" :: IDSvector{edge_sources__source___ggd___neutral___state{T}} + var"particles"::IDSvector{edge_sources__source___ggd___neutral___particles{T}} + var"state"::IDSvector{edge_sources__source___ggd___neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___neutral} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___neutral} + _parent::WeakRef end function edge_sources__source___ggd___neutral{T}() where T @@ -78885,8 +78885,8 @@ mutable struct edge_sources__source___ggd___momentum{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___momentum} + _parent::WeakRef end function edge_sources__source___ggd___momentum{T}() where T @@ -78907,8 +78907,8 @@ mutable struct edge_sources__source___ggd___ion___state___particles{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion___state___particles} + _parent::WeakRef end function edge_sources__source___ggd___ion___state___particles{T}() where T @@ -78953,8 +78953,8 @@ mutable struct edge_sources__source___ggd___ion___state___momentum{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion___state___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion___state___momentum} + _parent::WeakRef end function edge_sources__source___ggd___ion___state___momentum{T}() where T @@ -78975,8 +78975,8 @@ mutable struct edge_sources__source___ggd___ion___state___energy{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion___state___energy} + _parent::WeakRef end function edge_sources__source___ggd___ion___state___energy{T}() where T @@ -78988,10 +78988,10 @@ edge_sources__source___ggd___ion___state___energy() = edge_sources__source___ggd mutable struct edge_sources__source___ggd___ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: IDSvector{edge_sources__source___ggd___ion___state___energy{T}} + var"energy"::IDSvector{edge_sources__source___ggd___ion___state___energy{T}} var"label" :: String - var"momentum" :: IDSvector{edge_sources__source___ggd___ion___state___momentum{T}} - var"particles" :: IDSvector{edge_sources__source___ggd___ion___state___particles{T}} + var"momentum"::IDSvector{edge_sources__source___ggd___ion___state___momentum{T}} + var"particles"::IDSvector{edge_sources__source___ggd___ion___state___particles{T}} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -79003,8 +79003,8 @@ mutable struct edge_sources__source___ggd___ion___state{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion___state} + _parent::WeakRef end function edge_sources__source___ggd___ion___state{T}() where T @@ -79028,8 +79028,8 @@ mutable struct edge_sources__source___ggd___ion___particles{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion___particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion___particles} + _parent::WeakRef end function edge_sources__source___ggd___ion___particles{T}() where T @@ -79074,8 +79074,8 @@ mutable struct edge_sources__source___ggd___ion___momentum{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion___momentum} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion___momentum} + _parent::WeakRef end function edge_sources__source___ggd___ion___momentum{T}() where T @@ -79096,8 +79096,8 @@ mutable struct edge_sources__source___ggd___ion___energy{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion___energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion___energy} + _parent::WeakRef end function edge_sources__source___ggd___ion___energy{T}() where T @@ -79117,8 +79117,8 @@ mutable struct edge_sources__source___ggd___ion___element{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion___element} + _parent::WeakRef end function edge_sources__source___ggd___ion___element{T}() where T @@ -79129,22 +79129,22 @@ end edge_sources__source___ggd___ion___element() = edge_sources__source___ggd___ion___element{Float64}() mutable struct edge_sources__source___ggd___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{edge_sources__source___ggd___ion___element{T}} - var"energy" :: IDSvector{edge_sources__source___ggd___ion___energy{T}} + var"element"::IDSvector{edge_sources__source___ggd___ion___element{T}} + var"energy"::IDSvector{edge_sources__source___ggd___ion___energy{T}} var"label" :: String - var"momentum" :: IDSvector{edge_sources__source___ggd___ion___momentum{T}} + var"momentum"::IDSvector{edge_sources__source___ggd___ion___momentum{T}} var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"particles" :: IDSvector{edge_sources__source___ggd___ion___particles{T}} - var"state" :: IDSvector{edge_sources__source___ggd___ion___state{T}} + var"particles"::IDSvector{edge_sources__source___ggd___ion___particles{T}} + var"state"::IDSvector{edge_sources__source___ggd___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___ion} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___ion} + _parent::WeakRef end function edge_sources__source___ggd___ion{T}() where T @@ -79170,8 +79170,8 @@ mutable struct edge_sources__source___ggd___electrons__particles{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___electrons__particles} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___electrons__particles} + _parent::WeakRef end function edge_sources__source___ggd___electrons__particles{T}() where T @@ -79192,8 +79192,8 @@ mutable struct edge_sources__source___ggd___electrons__energy{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___electrons__energy} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___electrons__energy} + _parent::WeakRef end function edge_sources__source___ggd___electrons__energy{T}() where T @@ -79204,14 +79204,14 @@ end edge_sources__source___ggd___electrons__energy() = edge_sources__source___ggd___electrons__energy{Float64}() mutable struct edge_sources__source___ggd___electrons{T} <: IDS{T} - var"energy" :: IDSvector{edge_sources__source___ggd___electrons__energy{T}} - var"particles" :: IDSvector{edge_sources__source___ggd___electrons__particles{T}} + var"energy"::IDSvector{edge_sources__source___ggd___electrons__energy{T}} + var"particles"::IDSvector{edge_sources__source___ggd___electrons__particles{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___electrons} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___electrons} + _parent::WeakRef end function edge_sources__source___ggd___electrons{T}() where T @@ -79234,8 +79234,8 @@ mutable struct edge_sources__source___ggd___current{T} <: IDSvectorStaticElement _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd___current} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd___current} + _parent::WeakRef end function edge_sources__source___ggd___current{T}() where T @@ -79246,19 +79246,19 @@ end edge_sources__source___ggd___current() = edge_sources__source___ggd___current{Float64}() mutable struct edge_sources__source___ggd{T} <: IDSvectorTimeElement{T} - var"current" :: IDSvector{edge_sources__source___ggd___current{T}} - var"electrons" :: edge_sources__source___ggd___electrons{T} - var"ion" :: IDSvector{edge_sources__source___ggd___ion{T}} - var"momentum" :: IDSvector{edge_sources__source___ggd___momentum{T}} - var"neutral" :: IDSvector{edge_sources__source___ggd___neutral{T}} + var"current"::IDSvector{edge_sources__source___ggd___current{T}} + var"electrons"::edge_sources__source___ggd___electrons{T} + var"ion"::IDSvector{edge_sources__source___ggd___ion{T}} + var"momentum"::IDSvector{edge_sources__source___ggd___momentum{T}} + var"neutral"::IDSvector{edge_sources__source___ggd___neutral{T}} var"time" :: Float64 - var"total_ion_energy" :: IDSvector{edge_sources__source___ggd___total_ion_energy{T}} + var"total_ion_energy"::IDSvector{edge_sources__source___ggd___total_ion_energy{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source___ggd} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source___ggd} + _parent::WeakRef end function edge_sources__source___ggd{T}() where T @@ -79275,16 +79275,16 @@ end edge_sources__source___ggd() = edge_sources__source___ggd{Float64}() mutable struct edge_sources__source{T} <: IDSvectorStaticElement{T} - var"ggd" :: IDSvector{edge_sources__source___ggd{T}} - var"ggd_fast" :: IDSvector{edge_sources__source___ggd_fast{T}} - var"identifier" :: edge_sources__source___identifier{T} - var"species" :: edge_sources__source___species{T} + var"ggd"::IDSvector{edge_sources__source___ggd{T}} + var"ggd_fast"::IDSvector{edge_sources__source___ggd_fast{T}} + var"identifier"::edge_sources__source___identifier{T} + var"species"::edge_sources__source___species{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__source} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__source} + _parent::WeakRef end function edge_sources__source{T}() where T @@ -79306,8 +79306,8 @@ mutable struct edge_sources__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__midplane} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__midplane} + _parent::WeakRef end function edge_sources__midplane{T}() where T @@ -79325,8 +79325,8 @@ mutable struct edge_sources__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__version_put} + _parent::WeakRef end function edge_sources__ids_properties__version_put{T}() where T @@ -79343,8 +79343,8 @@ mutable struct edge_sources__ids_properties__provenance__node{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__provenance__node} + _parent::WeakRef end function edge_sources__ids_properties__provenance__node{T}() where T @@ -79355,13 +79355,13 @@ end edge_sources__ids_properties__provenance__node() = edge_sources__ids_properties__provenance__node{Float64}() mutable struct edge_sources__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{edge_sources__ids_properties__provenance__node{T}} + var"node"::IDSvector{edge_sources__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__provenance} + _parent::WeakRef end function edge_sources__ids_properties__provenance{T}() where T @@ -79383,8 +79383,8 @@ mutable struct edge_sources__ids_properties__plugins__node___readback{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__plugins__node___readback} + _parent::WeakRef end function edge_sources__ids_properties__plugins__node___readback{T}() where T @@ -79405,8 +79405,8 @@ mutable struct edge_sources__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function edge_sources__ids_properties__plugins__node___put_operation{T}() where T @@ -79427,8 +79427,8 @@ mutable struct edge_sources__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function edge_sources__ids_properties__plugins__node___get_operation{T}() where T @@ -79439,16 +79439,16 @@ end edge_sources__ids_properties__plugins__node___get_operation() = edge_sources__ids_properties__plugins__node___get_operation{Float64}() mutable struct edge_sources__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{edge_sources__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{edge_sources__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{edge_sources__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{edge_sources__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{edge_sources__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{edge_sources__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__plugins__node} + _parent::WeakRef end function edge_sources__ids_properties__plugins__node{T}() where T @@ -79471,8 +79471,8 @@ mutable struct edge_sources__ids_properties__plugins__infrastructure_put{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function edge_sources__ids_properties__plugins__infrastructure_put{T}() where T @@ -79492,8 +79492,8 @@ mutable struct edge_sources__ids_properties__plugins__infrastructure_get{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function edge_sources__ids_properties__plugins__infrastructure_get{T}() where T @@ -79504,15 +79504,15 @@ end edge_sources__ids_properties__plugins__infrastructure_get() = edge_sources__ids_properties__plugins__infrastructure_get{Float64}() mutable struct edge_sources__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: edge_sources__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: edge_sources__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{edge_sources__ids_properties__plugins__node{T}} + var"infrastructure_get"::edge_sources__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::edge_sources__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{edge_sources__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__plugins} + _parent::WeakRef end function edge_sources__ids_properties__plugins{T}() where T @@ -79533,8 +79533,8 @@ mutable struct edge_sources__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties__occurrence_type} + _parent::WeakRef end function edge_sources__ids_properties__occurrence_type{T}() where T @@ -79550,17 +79550,17 @@ mutable struct edge_sources__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: edge_sources__ids_properties__occurrence_type{T} - var"plugins" :: edge_sources__ids_properties__plugins{T} - var"provenance" :: edge_sources__ids_properties__provenance{T} + var"occurrence_type"::edge_sources__ids_properties__occurrence_type{T} + var"plugins"::edge_sources__ids_properties__plugins{T} + var"provenance"::edge_sources__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: edge_sources__ids_properties__version_put{T} + var"version_put"::edge_sources__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__ids_properties} + _parent::WeakRef end function edge_sources__ids_properties{T}() where T @@ -79581,8 +79581,8 @@ mutable struct edge_sources__grid_ggd___space___objects_per_dimension___object__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function edge_sources__grid_ggd___space___objects_per_dimension___object___boundary{T}() where T @@ -79593,7 +79593,7 @@ end edge_sources__grid_ggd___space___objects_per_dimension___object___boundary() = edge_sources__grid_ggd___space___objects_per_dimension___object___boundary{Float64}() mutable struct edge_sources__grid_ggd___space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{edge_sources__grid_ggd___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{edge_sources__grid_ggd___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -79605,8 +79605,8 @@ mutable struct edge_sources__grid_ggd___space___objects_per_dimension___object{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___space___objects_per_dimension___object} + _parent::WeakRef end function edge_sources__grid_ggd___space___objects_per_dimension___object{T}() where T @@ -79625,8 +79625,8 @@ mutable struct edge_sources__grid_ggd___space___objects_per_dimension___geometry _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function edge_sources__grid_ggd___space___objects_per_dimension___geometry_content{T}() where T @@ -79637,14 +79637,14 @@ end edge_sources__grid_ggd___space___objects_per_dimension___geometry_content() = edge_sources__grid_ggd___space___objects_per_dimension___geometry_content{Float64}() mutable struct edge_sources__grid_ggd___space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: edge_sources__grid_ggd___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{edge_sources__grid_ggd___space___objects_per_dimension___object{T}} + var"geometry_content"::edge_sources__grid_ggd___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{edge_sources__grid_ggd___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___space___objects_per_dimension} + _parent::WeakRef end function edge_sources__grid_ggd___space___objects_per_dimension{T}() where T @@ -79664,8 +79664,8 @@ mutable struct edge_sources__grid_ggd___space___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___space___identifier} + _parent::WeakRef end function edge_sources__grid_ggd___space___identifier{T}() where T @@ -79683,8 +79683,8 @@ mutable struct edge_sources__grid_ggd___space___geometry_type{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___space___geometry_type} + _parent::WeakRef end function edge_sources__grid_ggd___space___geometry_type{T}() where T @@ -79696,15 +79696,15 @@ edge_sources__grid_ggd___space___geometry_type() = edge_sources__grid_ggd___spac mutable struct edge_sources__grid_ggd___space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: edge_sources__grid_ggd___space___geometry_type{T} - var"identifier" :: edge_sources__grid_ggd___space___identifier{T} - var"objects_per_dimension" :: IDSvector{edge_sources__grid_ggd___space___objects_per_dimension{T}} + var"geometry_type"::edge_sources__grid_ggd___space___geometry_type{T} + var"identifier"::edge_sources__grid_ggd___space___identifier{T} + var"objects_per_dimension"::IDSvector{edge_sources__grid_ggd___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___space} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___space} + _parent::WeakRef end function edge_sources__grid_ggd___space{T}() where T @@ -79725,8 +79725,8 @@ mutable struct edge_sources__grid_ggd___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___identifier} + _parent::WeakRef end function edge_sources__grid_ggd___identifier{T}() where T @@ -79747,8 +79747,8 @@ mutable struct edge_sources__grid_ggd___grid_subset___metric{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___grid_subset___metric} + _parent::WeakRef end function edge_sources__grid_ggd___grid_subset___metric{T}() where T @@ -79766,8 +79766,8 @@ mutable struct edge_sources__grid_ggd___grid_subset___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___grid_subset___identifier} + _parent::WeakRef end function edge_sources__grid_ggd___grid_subset___identifier{T}() where T @@ -79785,8 +79785,8 @@ mutable struct edge_sources__grid_ggd___grid_subset___element___object{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___grid_subset___element___object} + _parent::WeakRef end function edge_sources__grid_ggd___grid_subset___element___object{T}() where T @@ -79797,13 +79797,13 @@ end edge_sources__grid_ggd___grid_subset___element___object() = edge_sources__grid_ggd___grid_subset___element___object{Float64}() mutable struct edge_sources__grid_ggd___grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{edge_sources__grid_ggd___grid_subset___element___object{T}} + var"object"::IDSvector{edge_sources__grid_ggd___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___grid_subset___element} + _parent::WeakRef end function edge_sources__grid_ggd___grid_subset___element{T}() where T @@ -79825,8 +79825,8 @@ mutable struct edge_sources__grid_ggd___grid_subset___base{T} <: IDSvectorRawEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___grid_subset___base} + _parent::WeakRef end function edge_sources__grid_ggd___grid_subset___base{T}() where T @@ -79837,17 +79837,17 @@ end edge_sources__grid_ggd___grid_subset___base() = edge_sources__grid_ggd___grid_subset___base{Float64}() mutable struct edge_sources__grid_ggd___grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{edge_sources__grid_ggd___grid_subset___base{T}} + var"base"::IDSvector{edge_sources__grid_ggd___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{edge_sources__grid_ggd___grid_subset___element{T}} - var"identifier" :: edge_sources__grid_ggd___grid_subset___identifier{T} - var"metric" :: edge_sources__grid_ggd___grid_subset___metric{T} + var"element"::IDSvector{edge_sources__grid_ggd___grid_subset___element{T}} + var"identifier"::edge_sources__grid_ggd___grid_subset___identifier{T} + var"metric"::edge_sources__grid_ggd___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd___grid_subset} + _parent::WeakRef end function edge_sources__grid_ggd___grid_subset{T}() where T @@ -79862,17 +79862,17 @@ end edge_sources__grid_ggd___grid_subset() = edge_sources__grid_ggd___grid_subset{Float64}() mutable struct edge_sources__grid_ggd{T} <: IDSvectorRawElement{T} - var"grid_subset" :: IDSvector{edge_sources__grid_ggd___grid_subset{T}} - var"identifier" :: edge_sources__grid_ggd___identifier{T} + var"grid_subset"::IDSvector{edge_sources__grid_ggd___grid_subset{T}} + var"identifier"::edge_sources__grid_ggd___identifier{T} var"path" :: String - var"space" :: IDSvector{edge_sources__grid_ggd___space{T}} + var"space"::IDSvector{edge_sources__grid_ggd___space{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__grid_ggd} + _parent::WeakRef end function edge_sources__grid_ggd{T}() where T @@ -79896,8 +79896,8 @@ mutable struct edge_sources__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__code__library} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__code__library} + _parent::WeakRef end function edge_sources__code__library{T}() where T @@ -79910,7 +79910,7 @@ edge_sources__code__library() = edge_sources__code__library{Float64}() mutable struct edge_sources__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{edge_sources__code__library{T}} + var"library"::IDSvector{edge_sources__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -79920,8 +79920,8 @@ mutable struct edge_sources__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources__code} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources__code} + _parent::WeakRef end function edge_sources__code{T}() where T @@ -79933,18 +79933,18 @@ end edge_sources__code() = edge_sources__code{Float64}() mutable struct edge_sources{T} <: IDStop{T} - var"code" :: edge_sources__code{T} - var"grid_ggd" :: IDSvector{edge_sources__grid_ggd{T}} - var"ids_properties" :: edge_sources__ids_properties{T} - var"midplane" :: edge_sources__midplane{T} - var"source" :: IDSvector{edge_sources__source{T}} + var"code"::edge_sources__code{T} + var"grid_ggd"::IDSvector{edge_sources__grid_ggd{T}} + var"ids_properties"::edge_sources__ids_properties{T} + var"midplane"::edge_sources__midplane{T} + var"source"::IDSvector{edge_sources__source{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_sources} - _parent :: WeakRef + _ref::Union{Nothing,edge_sources} + _parent::WeakRef end function edge_sources{T}() where T @@ -79968,8 +79968,8 @@ mutable struct edge_profiles__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__vacuum_toroidal_field} + _parent::WeakRef end function edge_profiles__vacuum_toroidal_field{T}() where T @@ -79988,8 +79988,8 @@ mutable struct edge_profiles__statistics___uq_input_2d___distribution{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__statistics___uq_input_2d___distribution} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__statistics___uq_input_2d___distribution} + _parent::WeakRef end function edge_profiles__statistics___uq_input_2d___distribution{T}() where T @@ -80000,14 +80000,14 @@ end edge_profiles__statistics___uq_input_2d___distribution() = edge_profiles__statistics___uq_input_2d___distribution{Float64}() mutable struct edge_profiles__statistics___uq_input_2d{T} <: IDSvectorStaticElement{T} - var"distribution" :: edge_profiles__statistics___uq_input_2d___distribution{T} + var"distribution"::edge_profiles__statistics___uq_input_2d___distribution{T} var"path" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__statistics___uq_input_2d} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__statistics___uq_input_2d} + _parent::WeakRef end function edge_profiles__statistics___uq_input_2d{T}() where T @@ -80026,8 +80026,8 @@ mutable struct edge_profiles__statistics___quantity_2d___statistics_type___ident _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__statistics___quantity_2d___statistics_type___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__statistics___quantity_2d___statistics_type___identifier} + _parent::WeakRef end function edge_profiles__statistics___quantity_2d___statistics_type___identifier{T}() where T @@ -80040,7 +80040,7 @@ edge_profiles__statistics___quantity_2d___statistics_type___identifier() = edge_ mutable struct edge_profiles__statistics___quantity_2d___statistics_type{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: edge_profiles__statistics___quantity_2d___statistics_type___identifier{T} + var"identifier"::edge_profiles__statistics___quantity_2d___statistics_type___identifier{T} var"uq_input_path" :: Int var"value" :: Vector{<:T} var"value_σ" :: Vector{<:T} @@ -80048,8 +80048,8 @@ mutable struct edge_profiles__statistics___quantity_2d___statistics_type{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__statistics___quantity_2d___statistics_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__statistics___quantity_2d___statistics_type} + _parent::WeakRef end function edge_profiles__statistics___quantity_2d___statistics_type{T}() where T @@ -80069,8 +80069,8 @@ mutable struct edge_profiles__statistics___quantity_2d___distribution{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__statistics___quantity_2d___distribution} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__statistics___quantity_2d___distribution} + _parent::WeakRef end function edge_profiles__statistics___quantity_2d___distribution{T}() where T @@ -80081,15 +80081,15 @@ end edge_profiles__statistics___quantity_2d___distribution() = edge_profiles__statistics___quantity_2d___distribution{Float64}() mutable struct edge_profiles__statistics___quantity_2d{T} <: IDSvectorStaticElement{T} - var"distribution" :: edge_profiles__statistics___quantity_2d___distribution{T} + var"distribution"::edge_profiles__statistics___quantity_2d___distribution{T} var"path" :: String - var"statistics_type" :: IDSvector{edge_profiles__statistics___quantity_2d___statistics_type{T}} + var"statistics_type"::IDSvector{edge_profiles__statistics___quantity_2d___statistics_type{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__statistics___quantity_2d} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__statistics___quantity_2d} + _parent::WeakRef end function edge_profiles__statistics___quantity_2d{T}() where T @@ -80102,17 +80102,17 @@ end edge_profiles__statistics___quantity_2d() = edge_profiles__statistics___quantity_2d{Float64}() mutable struct edge_profiles__statistics{T} <: IDSvectorTimeElement{T} - var"quantity_2d" :: IDSvector{edge_profiles__statistics___quantity_2d{T}} + var"quantity_2d"::IDSvector{edge_profiles__statistics___quantity_2d{T}} var"time" :: Float64 var"time_width" :: T var"time_width_σ" :: T - var"uq_input_2d" :: IDSvector{edge_profiles__statistics___uq_input_2d{T}} + var"uq_input_2d"::IDSvector{edge_profiles__statistics___uq_input_2d{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__statistics} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__statistics} + _parent::WeakRef end function edge_profiles__statistics{T}() where T @@ -80132,8 +80132,8 @@ mutable struct edge_profiles__profiles_1d___zeff_fit__time_measurement_slice_met _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___zeff_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___zeff_fit__time_measurement_slice_method} + _parent::WeakRef end function edge_profiles__profiles_1d___zeff_fit__time_measurement_slice_method{T}() where T @@ -80159,7 +80159,7 @@ mutable struct edge_profiles__profiles_1d___zeff_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: edge_profiles__profiles_1d___zeff_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::edge_profiles__profiles_1d___zeff_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -80168,8 +80168,8 @@ mutable struct edge_profiles__profiles_1d___zeff_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___zeff_fit} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___zeff_fit} + _parent::WeakRef end function edge_profiles__profiles_1d___zeff_fit{T}() where T @@ -80188,8 +80188,8 @@ mutable struct edge_profiles__profiles_1d___t_i_average_fit__time_measurement_sl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method} + _parent::WeakRef end function edge_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method{T}() where T @@ -80215,7 +80215,7 @@ mutable struct edge_profiles__profiles_1d___t_i_average_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: edge_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::edge_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -80224,8 +80224,8 @@ mutable struct edge_profiles__profiles_1d___t_i_average_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___t_i_average_fit} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___t_i_average_fit} + _parent::WeakRef end function edge_profiles__profiles_1d___t_i_average_fit{T}() where T @@ -80244,8 +80244,8 @@ mutable struct edge_profiles__profiles_1d___neutral___state___neutral_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___neutral___state___neutral_type} + _parent::WeakRef end function edge_profiles__profiles_1d___neutral___state___neutral_type{T}() where T @@ -80264,7 +80264,7 @@ mutable struct edge_profiles__profiles_1d___neutral___state{T} <: IDSvectorStati var"density_thermal_σ" :: Vector{<:T} var"electron_configuration" :: String var"label" :: String - var"neutral_type" :: edge_profiles__profiles_1d___neutral___state___neutral_type{T} + var"neutral_type"::edge_profiles__profiles_1d___neutral___state___neutral_type{T} var"pressure" :: Vector{<:T} var"pressure_σ" :: Vector{<:T} var"pressure_fast_parallel" :: Vector{<:T} @@ -80282,8 +80282,8 @@ mutable struct edge_profiles__profiles_1d___neutral___state{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___neutral___state} + _parent::WeakRef end function edge_profiles__profiles_1d___neutral___state{T}() where T @@ -80304,8 +80304,8 @@ mutable struct edge_profiles__profiles_1d___neutral___element{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___neutral___element} + _parent::WeakRef end function edge_profiles__profiles_1d___neutral___element{T}() where T @@ -80322,7 +80322,7 @@ mutable struct edge_profiles__profiles_1d___neutral{T} <: IDSvectorStaticElement var"density_fast_σ" :: Vector{<:T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} - var"element" :: IDSvector{edge_profiles__profiles_1d___neutral___element{T}} + var"element"::IDSvector{edge_profiles__profiles_1d___neutral___element{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int @@ -80334,15 +80334,15 @@ mutable struct edge_profiles__profiles_1d___neutral{T} <: IDSvectorStaticElement var"pressure_fast_perpendicular_σ" :: Vector{<:T} var"pressure_thermal" :: Vector{<:T} var"pressure_thermal_σ" :: Vector{<:T} - var"state" :: IDSvector{edge_profiles__profiles_1d___neutral___state{T}} + var"state"::IDSvector{edge_profiles__profiles_1d___neutral___state{T}} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___neutral} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___neutral} + _parent::WeakRef end function edge_profiles__profiles_1d___neutral{T}() where T @@ -80369,8 +80369,8 @@ mutable struct edge_profiles__profiles_1d___ion___velocity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___velocity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___velocity} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___velocity{T}() where T @@ -80388,8 +80388,8 @@ mutable struct edge_profiles__profiles_1d___ion___temperature_fit__time_measurem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method{T}() where T @@ -80415,7 +80415,7 @@ mutable struct edge_profiles__profiles_1d___ion___temperature_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: edge_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::edge_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -80424,8 +80424,8 @@ mutable struct edge_profiles__profiles_1d___ion___temperature_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___temperature_fit} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___temperature_fit} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___temperature_fit{T}() where T @@ -80444,8 +80444,8 @@ mutable struct edge_profiles__profiles_1d___ion___state___density_fit__time_meas _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method{T}() where T @@ -80471,7 +80471,7 @@ mutable struct edge_profiles__profiles_1d___ion___state___density_fit{T} <: IDS{ var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: edge_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::edge_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -80480,8 +80480,8 @@ mutable struct edge_profiles__profiles_1d___ion___state___density_fit{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___state___density_fit} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___state___density_fit} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___state___density_fit{T}() where T @@ -80497,7 +80497,7 @@ mutable struct edge_profiles__profiles_1d___ion___state{T} <: IDSvectorStaticEle var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: edge_profiles__profiles_1d___ion___state___density_fit{T} + var"density_fit"::edge_profiles__profiles_1d___ion___state___density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"electron_configuration" :: String @@ -80535,8 +80535,8 @@ mutable struct edge_profiles__profiles_1d___ion___state{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___state} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___state{T}() where T @@ -80557,8 +80557,8 @@ mutable struct edge_profiles__profiles_1d___ion___element{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___element} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___element{T}() where T @@ -80576,8 +80576,8 @@ mutable struct edge_profiles__profiles_1d___ion___density_fit__time_measurement_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method{T}() where T @@ -80603,7 +80603,7 @@ mutable struct edge_profiles__profiles_1d___ion___density_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: edge_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::edge_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -80612,8 +80612,8 @@ mutable struct edge_profiles__profiles_1d___ion___density_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion___density_fit} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion___density_fit} + _parent::WeakRef end function edge_profiles__profiles_1d___ion___density_fit{T}() where T @@ -80629,11 +80629,11 @@ mutable struct edge_profiles__profiles_1d___ion{T} <: IDSvectorIonElement{T} var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: edge_profiles__profiles_1d___ion___density_fit{T} + var"density_fit"::edge_profiles__profiles_1d___ion___density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"density_validity" :: Int - var"element" :: IDSvector{edge_profiles__profiles_1d___ion___element{T}} + var"element"::IDSvector{edge_profiles__profiles_1d___ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -80647,12 +80647,12 @@ mutable struct edge_profiles__profiles_1d___ion{T} <: IDSvectorIonElement{T} var"pressure_thermal_σ" :: Vector{<:T} var"rotation_frequency_tor" :: Vector{<:T} var"rotation_frequency_tor_σ" :: Vector{<:T} - var"state" :: IDSvector{edge_profiles__profiles_1d___ion___state{T}} + var"state"::IDSvector{edge_profiles__profiles_1d___ion___state{T}} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} - var"temperature_fit" :: edge_profiles__profiles_1d___ion___temperature_fit{T} + var"temperature_fit"::edge_profiles__profiles_1d___ion___temperature_fit{T} var"temperature_validity" :: Int - var"velocity" :: edge_profiles__profiles_1d___ion___velocity{T} + var"velocity"::edge_profiles__profiles_1d___ion___velocity{T} var"z_ion" :: T var"z_ion_σ" :: T var"z_ion_1d" :: Vector{<:T} @@ -80663,8 +80663,8 @@ mutable struct edge_profiles__profiles_1d___ion{T} <: IDSvectorIonElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___ion} + _parent::WeakRef end function edge_profiles__profiles_1d___ion{T}() where T @@ -80700,8 +80700,8 @@ mutable struct edge_profiles__profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___grid} + _parent::WeakRef end function edge_profiles__profiles_1d___grid{T}() where T @@ -80719,8 +80719,8 @@ mutable struct edge_profiles__profiles_1d___electrons__temperature_fit__time_mea _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method} + _parent::WeakRef end function edge_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T}() where T @@ -80746,7 +80746,7 @@ mutable struct edge_profiles__profiles_1d___electrons__temperature_fit{T} <: IDS var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: edge_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::edge_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -80755,8 +80755,8 @@ mutable struct edge_profiles__profiles_1d___electrons__temperature_fit{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___electrons__temperature_fit} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___electrons__temperature_fit} + _parent::WeakRef end function edge_profiles__profiles_1d___electrons__temperature_fit{T}() where T @@ -80775,8 +80775,8 @@ mutable struct edge_profiles__profiles_1d___electrons__density_fit__time_measure _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method} + _parent::WeakRef end function edge_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method{T}() where T @@ -80802,7 +80802,7 @@ mutable struct edge_profiles__profiles_1d___electrons__density_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: edge_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::edge_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -80811,8 +80811,8 @@ mutable struct edge_profiles__profiles_1d___electrons__density_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___electrons__density_fit} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___electrons__density_fit} + _parent::WeakRef end function edge_profiles__profiles_1d___electrons__density_fit{T}() where T @@ -80830,7 +80830,7 @@ mutable struct edge_profiles__profiles_1d___electrons{T} <: IDS{T} var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: edge_profiles__profiles_1d___electrons__density_fit{T} + var"density_fit"::edge_profiles__profiles_1d___electrons__density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"density_validity" :: Int @@ -80844,14 +80844,14 @@ mutable struct edge_profiles__profiles_1d___electrons{T} <: IDS{T} var"pressure_thermal_σ" :: Vector{<:T} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} - var"temperature_fit" :: edge_profiles__profiles_1d___electrons__temperature_fit{T} + var"temperature_fit"::edge_profiles__profiles_1d___electrons__temperature_fit{T} var"temperature_validity" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___electrons} + _parent::WeakRef end function edge_profiles__profiles_1d___electrons{T}() where T @@ -80878,8 +80878,8 @@ mutable struct edge_profiles__profiles_1d___e_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d___e_field} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d___e_field} + _parent::WeakRef end function edge_profiles__profiles_1d___e_field{T}() where T @@ -80894,10 +80894,10 @@ mutable struct edge_profiles__profiles_1d{T} <: IDSvectorTimeElement{T} var"conductivity_parallel_σ" :: Vector{<:T} var"current_parallel_inside" :: Vector{<:T} var"current_parallel_inside_σ" :: Vector{<:T} - var"e_field" :: edge_profiles__profiles_1d___e_field{T} - var"electrons" :: edge_profiles__profiles_1d___electrons{T} - var"grid" :: edge_profiles__profiles_1d___grid{T} - var"ion" :: IDSvector{edge_profiles__profiles_1d___ion{T}} + var"e_field"::edge_profiles__profiles_1d___e_field{T} + var"electrons"::edge_profiles__profiles_1d___electrons{T} + var"grid"::edge_profiles__profiles_1d___grid{T} + var"ion"::IDSvector{edge_profiles__profiles_1d___ion{T}} var"j_bootstrap" :: Vector{<:T} var"j_bootstrap_σ" :: Vector{<:T} var"j_non_inductive" :: Vector{<:T} @@ -80916,7 +80916,7 @@ mutable struct edge_profiles__profiles_1d{T} <: IDSvectorTimeElement{T} var"n_i_thermal_total_σ" :: Vector{<:T} var"n_i_total_over_n_e" :: Vector{<:T} var"n_i_total_over_n_e_σ" :: Vector{<:T} - var"neutral" :: IDSvector{edge_profiles__profiles_1d___neutral{T}} + var"neutral"::IDSvector{edge_profiles__profiles_1d___neutral{T}} var"phi_potential" :: Vector{<:T} var"phi_potential_σ" :: Vector{<:T} var"pressure_ion_total" :: Vector{<:T} @@ -80933,17 +80933,17 @@ mutable struct edge_profiles__profiles_1d{T} <: IDSvectorTimeElement{T} var"rotation_frequency_tor_sonic_σ" :: Vector{<:T} var"t_i_average" :: Vector{<:T} var"t_i_average_σ" :: Vector{<:T} - var"t_i_average_fit" :: edge_profiles__profiles_1d___t_i_average_fit{T} + var"t_i_average_fit"::edge_profiles__profiles_1d___t_i_average_fit{T} var"time" :: Float64 var"zeff" :: Vector{<:T} var"zeff_σ" :: Vector{<:T} - var"zeff_fit" :: edge_profiles__profiles_1d___zeff_fit{T} + var"zeff_fit"::edge_profiles__profiles_1d___zeff_fit{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__profiles_1d} + _parent::WeakRef end function edge_profiles__profiles_1d{T}() where T @@ -80968,8 +80968,8 @@ mutable struct edge_profiles__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__midplane} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__midplane} + _parent::WeakRef end function edge_profiles__midplane{T}() where T @@ -80987,8 +80987,8 @@ mutable struct edge_profiles__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__version_put} + _parent::WeakRef end function edge_profiles__ids_properties__version_put{T}() where T @@ -81005,8 +81005,8 @@ mutable struct edge_profiles__ids_properties__provenance__node{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__provenance__node} + _parent::WeakRef end function edge_profiles__ids_properties__provenance__node{T}() where T @@ -81017,13 +81017,13 @@ end edge_profiles__ids_properties__provenance__node() = edge_profiles__ids_properties__provenance__node{Float64}() mutable struct edge_profiles__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{edge_profiles__ids_properties__provenance__node{T}} + var"node"::IDSvector{edge_profiles__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__provenance} + _parent::WeakRef end function edge_profiles__ids_properties__provenance{T}() where T @@ -81045,8 +81045,8 @@ mutable struct edge_profiles__ids_properties__plugins__node___readback{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__plugins__node___readback} + _parent::WeakRef end function edge_profiles__ids_properties__plugins__node___readback{T}() where T @@ -81067,8 +81067,8 @@ mutable struct edge_profiles__ids_properties__plugins__node___put_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function edge_profiles__ids_properties__plugins__node___put_operation{T}() where T @@ -81089,8 +81089,8 @@ mutable struct edge_profiles__ids_properties__plugins__node___get_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function edge_profiles__ids_properties__plugins__node___get_operation{T}() where T @@ -81101,16 +81101,16 @@ end edge_profiles__ids_properties__plugins__node___get_operation() = edge_profiles__ids_properties__plugins__node___get_operation{Float64}() mutable struct edge_profiles__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{edge_profiles__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{edge_profiles__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{edge_profiles__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{edge_profiles__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{edge_profiles__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{edge_profiles__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__plugins__node} + _parent::WeakRef end function edge_profiles__ids_properties__plugins__node{T}() where T @@ -81133,8 +81133,8 @@ mutable struct edge_profiles__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function edge_profiles__ids_properties__plugins__infrastructure_put{T}() where T @@ -81154,8 +81154,8 @@ mutable struct edge_profiles__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function edge_profiles__ids_properties__plugins__infrastructure_get{T}() where T @@ -81166,15 +81166,15 @@ end edge_profiles__ids_properties__plugins__infrastructure_get() = edge_profiles__ids_properties__plugins__infrastructure_get{Float64}() mutable struct edge_profiles__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: edge_profiles__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: edge_profiles__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{edge_profiles__ids_properties__plugins__node{T}} + var"infrastructure_get"::edge_profiles__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::edge_profiles__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{edge_profiles__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__plugins} + _parent::WeakRef end function edge_profiles__ids_properties__plugins{T}() where T @@ -81195,8 +81195,8 @@ mutable struct edge_profiles__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties__occurrence_type} + _parent::WeakRef end function edge_profiles__ids_properties__occurrence_type{T}() where T @@ -81212,17 +81212,17 @@ mutable struct edge_profiles__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: edge_profiles__ids_properties__occurrence_type{T} - var"plugins" :: edge_profiles__ids_properties__plugins{T} - var"provenance" :: edge_profiles__ids_properties__provenance{T} + var"occurrence_type"::edge_profiles__ids_properties__occurrence_type{T} + var"plugins"::edge_profiles__ids_properties__plugins{T} + var"provenance"::edge_profiles__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: edge_profiles__ids_properties__version_put{T} + var"version_put"::edge_profiles__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ids_properties} + _parent::WeakRef end function edge_profiles__ids_properties{T}() where T @@ -81243,8 +81243,8 @@ mutable struct edge_profiles__grid_ggd___space___objects_per_dimension___object_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___space___objects_per_dimension___object___boundary} + _parent::WeakRef end function edge_profiles__grid_ggd___space___objects_per_dimension___object___boundary{T}() where T @@ -81255,7 +81255,7 @@ end edge_profiles__grid_ggd___space___objects_per_dimension___object___boundary() = edge_profiles__grid_ggd___space___objects_per_dimension___object___boundary{Float64}() mutable struct edge_profiles__grid_ggd___space___objects_per_dimension___object{T} <: IDSvectorRawElement{T} - var"boundary" :: IDSvector{edge_profiles__grid_ggd___space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{edge_profiles__grid_ggd___space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -81267,8 +81267,8 @@ mutable struct edge_profiles__grid_ggd___space___objects_per_dimension___object{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___space___objects_per_dimension___object} + _parent::WeakRef end function edge_profiles__grid_ggd___space___objects_per_dimension___object{T}() where T @@ -81287,8 +81287,8 @@ mutable struct edge_profiles__grid_ggd___space___objects_per_dimension___geometr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___space___objects_per_dimension___geometry_content} + _parent::WeakRef end function edge_profiles__grid_ggd___space___objects_per_dimension___geometry_content{T}() where T @@ -81299,14 +81299,14 @@ end edge_profiles__grid_ggd___space___objects_per_dimension___geometry_content() = edge_profiles__grid_ggd___space___objects_per_dimension___geometry_content{Float64}() mutable struct edge_profiles__grid_ggd___space___objects_per_dimension{T} <: IDSvectorRawElement{T} - var"geometry_content" :: edge_profiles__grid_ggd___space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{edge_profiles__grid_ggd___space___objects_per_dimension___object{T}} + var"geometry_content"::edge_profiles__grid_ggd___space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{edge_profiles__grid_ggd___space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___space___objects_per_dimension} + _parent::WeakRef end function edge_profiles__grid_ggd___space___objects_per_dimension{T}() where T @@ -81326,8 +81326,8 @@ mutable struct edge_profiles__grid_ggd___space___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___space___identifier} + _parent::WeakRef end function edge_profiles__grid_ggd___space___identifier{T}() where T @@ -81345,8 +81345,8 @@ mutable struct edge_profiles__grid_ggd___space___geometry_type{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___space___geometry_type} + _parent::WeakRef end function edge_profiles__grid_ggd___space___geometry_type{T}() where T @@ -81358,15 +81358,15 @@ edge_profiles__grid_ggd___space___geometry_type() = edge_profiles__grid_ggd___sp mutable struct edge_profiles__grid_ggd___space{T} <: IDSvectorRawElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: edge_profiles__grid_ggd___space___geometry_type{T} - var"identifier" :: edge_profiles__grid_ggd___space___identifier{T} - var"objects_per_dimension" :: IDSvector{edge_profiles__grid_ggd___space___objects_per_dimension{T}} + var"geometry_type"::edge_profiles__grid_ggd___space___geometry_type{T} + var"identifier"::edge_profiles__grid_ggd___space___identifier{T} + var"objects_per_dimension"::IDSvector{edge_profiles__grid_ggd___space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___space} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___space} + _parent::WeakRef end function edge_profiles__grid_ggd___space{T}() where T @@ -81387,8 +81387,8 @@ mutable struct edge_profiles__grid_ggd___identifier{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___identifier} + _parent::WeakRef end function edge_profiles__grid_ggd___identifier{T}() where T @@ -81409,8 +81409,8 @@ mutable struct edge_profiles__grid_ggd___grid_subset___metric{T} <: IDSraw{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___grid_subset___metric} + _parent::WeakRef end function edge_profiles__grid_ggd___grid_subset___metric{T}() where T @@ -81428,8 +81428,8 @@ mutable struct edge_profiles__grid_ggd___grid_subset___identifier{T} <: IDSraw{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___grid_subset___identifier} + _parent::WeakRef end function edge_profiles__grid_ggd___grid_subset___identifier{T}() where T @@ -81447,8 +81447,8 @@ mutable struct edge_profiles__grid_ggd___grid_subset___element___object{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___grid_subset___element___object} + _parent::WeakRef end function edge_profiles__grid_ggd___grid_subset___element___object{T}() where T @@ -81459,13 +81459,13 @@ end edge_profiles__grid_ggd___grid_subset___element___object() = edge_profiles__grid_ggd___grid_subset___element___object{Float64}() mutable struct edge_profiles__grid_ggd___grid_subset___element{T} <: IDSvectorRawElement{T} - var"object" :: IDSvector{edge_profiles__grid_ggd___grid_subset___element___object{T}} + var"object"::IDSvector{edge_profiles__grid_ggd___grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___grid_subset___element} + _parent::WeakRef end function edge_profiles__grid_ggd___grid_subset___element{T}() where T @@ -81487,8 +81487,8 @@ mutable struct edge_profiles__grid_ggd___grid_subset___base{T} <: IDSvectorRawEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___grid_subset___base} + _parent::WeakRef end function edge_profiles__grid_ggd___grid_subset___base{T}() where T @@ -81499,17 +81499,17 @@ end edge_profiles__grid_ggd___grid_subset___base() = edge_profiles__grid_ggd___grid_subset___base{Float64}() mutable struct edge_profiles__grid_ggd___grid_subset{T} <: IDSvectorRawElement{T} - var"base" :: IDSvector{edge_profiles__grid_ggd___grid_subset___base{T}} + var"base"::IDSvector{edge_profiles__grid_ggd___grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{edge_profiles__grid_ggd___grid_subset___element{T}} - var"identifier" :: edge_profiles__grid_ggd___grid_subset___identifier{T} - var"metric" :: edge_profiles__grid_ggd___grid_subset___metric{T} + var"element"::IDSvector{edge_profiles__grid_ggd___grid_subset___element{T}} + var"identifier"::edge_profiles__grid_ggd___grid_subset___identifier{T} + var"metric"::edge_profiles__grid_ggd___grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd___grid_subset} + _parent::WeakRef end function edge_profiles__grid_ggd___grid_subset{T}() where T @@ -81524,17 +81524,17 @@ end edge_profiles__grid_ggd___grid_subset() = edge_profiles__grid_ggd___grid_subset{Float64}() mutable struct edge_profiles__grid_ggd{T} <: IDSvectorRawElement{T} - var"grid_subset" :: IDSvector{edge_profiles__grid_ggd___grid_subset{T}} - var"identifier" :: edge_profiles__grid_ggd___identifier{T} + var"grid_subset"::IDSvector{edge_profiles__grid_ggd___grid_subset{T}} + var"identifier"::edge_profiles__grid_ggd___identifier{T} var"path" :: String - var"space" :: IDSvector{edge_profiles__grid_ggd___space{T}} + var"space"::IDSvector{edge_profiles__grid_ggd___space{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__grid_ggd} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__grid_ggd} + _parent::WeakRef end function edge_profiles__grid_ggd{T}() where T @@ -81556,8 +81556,8 @@ mutable struct edge_profiles__ggd_fast___ion___temperature{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___ion___temperature} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___ion___temperature} + _parent::WeakRef end function edge_profiles__ggd_fast___ion___temperature{T}() where T @@ -81577,8 +81577,8 @@ mutable struct edge_profiles__ggd_fast___ion___element{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___ion___element} + _parent::WeakRef end function edge_profiles__ggd_fast___ion___element{T}() where T @@ -81597,8 +81597,8 @@ mutable struct edge_profiles__ggd_fast___ion___density{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___ion___density} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___ion___density} + _parent::WeakRef end function edge_profiles__ggd_fast___ion___density{T}() where T @@ -81617,8 +81617,8 @@ mutable struct edge_profiles__ggd_fast___ion___content{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___ion___content} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___ion___content} + _parent::WeakRef end function edge_profiles__ggd_fast___ion___content{T}() where T @@ -81629,20 +81629,20 @@ end edge_profiles__ggd_fast___ion___content() = edge_profiles__ggd_fast___ion___content{Float64}() mutable struct edge_profiles__ggd_fast___ion{T} <: IDSvectorIonElement{T} - var"content" :: IDSvector{edge_profiles__ggd_fast___ion___content{T}} - var"density" :: IDSvector{edge_profiles__ggd_fast___ion___density{T}} - var"element" :: IDSvector{edge_profiles__ggd_fast___ion___element{T}} + var"content"::IDSvector{edge_profiles__ggd_fast___ion___content{T}} + var"density"::IDSvector{edge_profiles__ggd_fast___ion___density{T}} + var"element"::IDSvector{edge_profiles__ggd_fast___ion___element{T}} var"label" :: String var"neutral_index" :: Int - var"temperature" :: IDSvector{edge_profiles__ggd_fast___ion___temperature{T}} + var"temperature"::IDSvector{edge_profiles__ggd_fast___ion___temperature{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___ion} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___ion} + _parent::WeakRef end function edge_profiles__ggd_fast___ion{T}() where T @@ -81665,8 +81665,8 @@ mutable struct edge_profiles__ggd_fast___energy_thermal{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___energy_thermal} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___energy_thermal} + _parent::WeakRef end function edge_profiles__ggd_fast___energy_thermal{T}() where T @@ -81685,8 +81685,8 @@ mutable struct edge_profiles__ggd_fast___electrons__temperature{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___electrons__temperature} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___electrons__temperature} + _parent::WeakRef end function edge_profiles__ggd_fast___electrons__temperature{T}() where T @@ -81705,8 +81705,8 @@ mutable struct edge_profiles__ggd_fast___electrons__density{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___electrons__density} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___electrons__density} + _parent::WeakRef end function edge_profiles__ggd_fast___electrons__density{T}() where T @@ -81717,14 +81717,14 @@ end edge_profiles__ggd_fast___electrons__density() = edge_profiles__ggd_fast___electrons__density{Float64}() mutable struct edge_profiles__ggd_fast___electrons{T} <: IDS{T} - var"density" :: IDSvector{edge_profiles__ggd_fast___electrons__density{T}} - var"temperature" :: IDSvector{edge_profiles__ggd_fast___electrons__temperature{T}} + var"density"::IDSvector{edge_profiles__ggd_fast___electrons__density{T}} + var"temperature"::IDSvector{edge_profiles__ggd_fast___electrons__temperature{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast___electrons} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast___electrons} + _parent::WeakRef end function edge_profiles__ggd_fast___electrons{T}() where T @@ -81737,16 +81737,16 @@ end edge_profiles__ggd_fast___electrons() = edge_profiles__ggd_fast___electrons{Float64}() mutable struct edge_profiles__ggd_fast{T} <: IDSvectorTimeElement{T} - var"electrons" :: edge_profiles__ggd_fast___electrons{T} - var"energy_thermal" :: IDSvector{edge_profiles__ggd_fast___energy_thermal{T}} - var"ion" :: IDSvector{edge_profiles__ggd_fast___ion{T}} + var"electrons"::edge_profiles__ggd_fast___electrons{T} + var"energy_thermal"::IDSvector{edge_profiles__ggd_fast___energy_thermal{T}} + var"ion"::IDSvector{edge_profiles__ggd_fast___ion{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd_fast} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd_fast} + _parent::WeakRef end function edge_profiles__ggd_fast{T}() where T @@ -81770,8 +81770,8 @@ mutable struct edge_profiles__ggd___zeff{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___zeff} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___zeff} + _parent::WeakRef end function edge_profiles__ggd___zeff{T}() where T @@ -81792,8 +81792,8 @@ mutable struct edge_profiles__ggd___t_i_average{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___t_i_average} + _parent::WeakRef end function edge_profiles__ggd___t_i_average{T}() where T @@ -81814,8 +81814,8 @@ mutable struct edge_profiles__ggd___pressure_thermal{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___pressure_thermal} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___pressure_thermal} + _parent::WeakRef end function edge_profiles__ggd___pressure_thermal{T}() where T @@ -81836,8 +81836,8 @@ mutable struct edge_profiles__ggd___pressure_perpendicular{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___pressure_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___pressure_perpendicular} + _parent::WeakRef end function edge_profiles__ggd___pressure_perpendicular{T}() where T @@ -81858,8 +81858,8 @@ mutable struct edge_profiles__ggd___pressure_parallel{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___pressure_parallel} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___pressure_parallel} + _parent::WeakRef end function edge_profiles__ggd___pressure_parallel{T}() where T @@ -81880,8 +81880,8 @@ mutable struct edge_profiles__ggd___phi_potential{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___phi_potential} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___phi_potential} + _parent::WeakRef end function edge_profiles__ggd___phi_potential{T}() where T @@ -81926,8 +81926,8 @@ mutable struct edge_profiles__ggd___neutral___velocity{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___velocity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___velocity} + _parent::WeakRef end function edge_profiles__ggd___neutral___velocity{T}() where T @@ -81948,8 +81948,8 @@ mutable struct edge_profiles__ggd___neutral___temperature{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___temperature} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___temperature} + _parent::WeakRef end function edge_profiles__ggd___neutral___temperature{T}() where T @@ -81994,8 +81994,8 @@ mutable struct edge_profiles__ggd___neutral___state___velocity_exb{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___velocity_exb} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___velocity_exb} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___velocity_exb{T}() where T @@ -82040,8 +82040,8 @@ mutable struct edge_profiles__ggd___neutral___state___velocity_diamagnetic{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___velocity_diamagnetic} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___velocity_diamagnetic} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___velocity_diamagnetic{T}() where T @@ -82086,8 +82086,8 @@ mutable struct edge_profiles__ggd___neutral___state___velocity{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___velocity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___velocity} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___velocity{T}() where T @@ -82108,8 +82108,8 @@ mutable struct edge_profiles__ggd___neutral___state___temperature{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___temperature} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___temperature} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___temperature{T}() where T @@ -82130,8 +82130,8 @@ mutable struct edge_profiles__ggd___neutral___state___pressure_fast_perpendicula _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___pressure_fast_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___pressure_fast_perpendicular} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___pressure_fast_perpendicular{T}() where T @@ -82152,8 +82152,8 @@ mutable struct edge_profiles__ggd___neutral___state___pressure_fast_parallel{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___pressure_fast_parallel} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___pressure_fast_parallel} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___pressure_fast_parallel{T}() where T @@ -82174,8 +82174,8 @@ mutable struct edge_profiles__ggd___neutral___state___pressure{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___pressure} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___pressure} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___pressure{T}() where T @@ -82193,8 +82193,8 @@ mutable struct edge_profiles__ggd___neutral___state___neutral_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___neutral_type} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___neutral_type{T}() where T @@ -82215,8 +82215,8 @@ mutable struct edge_profiles__ggd___neutral___state___energy_density_kinetic{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___energy_density_kinetic} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___energy_density_kinetic} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___energy_density_kinetic{T}() where T @@ -82237,8 +82237,8 @@ mutable struct edge_profiles__ggd___neutral___state___distribution_function{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___distribution_function} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___distribution_function} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___distribution_function{T}() where T @@ -82259,8 +82259,8 @@ mutable struct edge_profiles__ggd___neutral___state___density_fast{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___density_fast} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___density_fast} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___density_fast{T}() where T @@ -82281,8 +82281,8 @@ mutable struct edge_profiles__ggd___neutral___state___density{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state___density} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state___density} + _parent::WeakRef end function edge_profiles__ggd___neutral___state___density{T}() where T @@ -82293,20 +82293,20 @@ end edge_profiles__ggd___neutral___state___density() = edge_profiles__ggd___neutral___state___density{Float64}() mutable struct edge_profiles__ggd___neutral___state{T} <: IDSvectorStaticElement{T} - var"density" :: IDSvector{edge_profiles__ggd___neutral___state___density{T}} - var"density_fast" :: IDSvector{edge_profiles__ggd___neutral___state___density_fast{T}} - var"distribution_function" :: IDSvector{edge_profiles__ggd___neutral___state___distribution_function{T}} + var"density"::IDSvector{edge_profiles__ggd___neutral___state___density{T}} + var"density_fast"::IDSvector{edge_profiles__ggd___neutral___state___density_fast{T}} + var"distribution_function"::IDSvector{edge_profiles__ggd___neutral___state___distribution_function{T}} var"electron_configuration" :: String - var"energy_density_kinetic" :: IDSvector{edge_profiles__ggd___neutral___state___energy_density_kinetic{T}} + var"energy_density_kinetic"::IDSvector{edge_profiles__ggd___neutral___state___energy_density_kinetic{T}} var"label" :: String - var"neutral_type" :: edge_profiles__ggd___neutral___state___neutral_type{T} - var"pressure" :: IDSvector{edge_profiles__ggd___neutral___state___pressure{T}} - var"pressure_fast_parallel" :: IDSvector{edge_profiles__ggd___neutral___state___pressure_fast_parallel{T}} - var"pressure_fast_perpendicular" :: IDSvector{edge_profiles__ggd___neutral___state___pressure_fast_perpendicular{T}} - var"temperature" :: IDSvector{edge_profiles__ggd___neutral___state___temperature{T}} - var"velocity" :: IDSvector{edge_profiles__ggd___neutral___state___velocity{T}} - var"velocity_diamagnetic" :: IDSvector{edge_profiles__ggd___neutral___state___velocity_diamagnetic{T}} - var"velocity_exb" :: IDSvector{edge_profiles__ggd___neutral___state___velocity_exb{T}} + var"neutral_type"::edge_profiles__ggd___neutral___state___neutral_type{T} + var"pressure"::IDSvector{edge_profiles__ggd___neutral___state___pressure{T}} + var"pressure_fast_parallel"::IDSvector{edge_profiles__ggd___neutral___state___pressure_fast_parallel{T}} + var"pressure_fast_perpendicular"::IDSvector{edge_profiles__ggd___neutral___state___pressure_fast_perpendicular{T}} + var"temperature"::IDSvector{edge_profiles__ggd___neutral___state___temperature{T}} + var"velocity"::IDSvector{edge_profiles__ggd___neutral___state___velocity{T}} + var"velocity_diamagnetic"::IDSvector{edge_profiles__ggd___neutral___state___velocity_diamagnetic{T}} + var"velocity_exb"::IDSvector{edge_profiles__ggd___neutral___state___velocity_exb{T}} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -82314,8 +82314,8 @@ mutable struct edge_profiles__ggd___neutral___state{T} <: IDSvectorStaticElement _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___state} + _parent::WeakRef end function edge_profiles__ggd___neutral___state{T}() where T @@ -82348,8 +82348,8 @@ mutable struct edge_profiles__ggd___neutral___pressure_fast_perpendicular{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___pressure_fast_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___pressure_fast_perpendicular} + _parent::WeakRef end function edge_profiles__ggd___neutral___pressure_fast_perpendicular{T}() where T @@ -82370,8 +82370,8 @@ mutable struct edge_profiles__ggd___neutral___pressure_fast_parallel{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___pressure_fast_parallel} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___pressure_fast_parallel} + _parent::WeakRef end function edge_profiles__ggd___neutral___pressure_fast_parallel{T}() where T @@ -82392,8 +82392,8 @@ mutable struct edge_profiles__ggd___neutral___pressure{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___pressure} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___pressure} + _parent::WeakRef end function edge_profiles__ggd___neutral___pressure{T}() where T @@ -82414,8 +82414,8 @@ mutable struct edge_profiles__ggd___neutral___energy_density_kinetic{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___energy_density_kinetic} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___energy_density_kinetic} + _parent::WeakRef end function edge_profiles__ggd___neutral___energy_density_kinetic{T}() where T @@ -82435,8 +82435,8 @@ mutable struct edge_profiles__ggd___neutral___element{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___element} + _parent::WeakRef end function edge_profiles__ggd___neutral___element{T}() where T @@ -82457,8 +82457,8 @@ mutable struct edge_profiles__ggd___neutral___density_fast{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___density_fast} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___density_fast} + _parent::WeakRef end function edge_profiles__ggd___neutral___density_fast{T}() where T @@ -82479,8 +82479,8 @@ mutable struct edge_profiles__ggd___neutral___density{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral___density} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral___density} + _parent::WeakRef end function edge_profiles__ggd___neutral___density{T}() where T @@ -82491,25 +82491,25 @@ end edge_profiles__ggd___neutral___density() = edge_profiles__ggd___neutral___density{Float64}() mutable struct edge_profiles__ggd___neutral{T} <: IDSvectorStaticElement{T} - var"density" :: IDSvector{edge_profiles__ggd___neutral___density{T}} - var"density_fast" :: IDSvector{edge_profiles__ggd___neutral___density_fast{T}} - var"element" :: IDSvector{edge_profiles__ggd___neutral___element{T}} - var"energy_density_kinetic" :: IDSvector{edge_profiles__ggd___neutral___energy_density_kinetic{T}} + var"density"::IDSvector{edge_profiles__ggd___neutral___density{T}} + var"density_fast"::IDSvector{edge_profiles__ggd___neutral___density_fast{T}} + var"element"::IDSvector{edge_profiles__ggd___neutral___element{T}} + var"energy_density_kinetic"::IDSvector{edge_profiles__ggd___neutral___energy_density_kinetic{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int - var"pressure" :: IDSvector{edge_profiles__ggd___neutral___pressure{T}} - var"pressure_fast_parallel" :: IDSvector{edge_profiles__ggd___neutral___pressure_fast_parallel{T}} - var"pressure_fast_perpendicular" :: IDSvector{edge_profiles__ggd___neutral___pressure_fast_perpendicular{T}} - var"state" :: IDSvector{edge_profiles__ggd___neutral___state{T}} - var"temperature" :: IDSvector{edge_profiles__ggd___neutral___temperature{T}} - var"velocity" :: IDSvector{edge_profiles__ggd___neutral___velocity{T}} + var"pressure"::IDSvector{edge_profiles__ggd___neutral___pressure{T}} + var"pressure_fast_parallel"::IDSvector{edge_profiles__ggd___neutral___pressure_fast_parallel{T}} + var"pressure_fast_perpendicular"::IDSvector{edge_profiles__ggd___neutral___pressure_fast_perpendicular{T}} + var"state"::IDSvector{edge_profiles__ggd___neutral___state{T}} + var"temperature"::IDSvector{edge_profiles__ggd___neutral___temperature{T}} + var"velocity"::IDSvector{edge_profiles__ggd___neutral___velocity{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___neutral} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___neutral} + _parent::WeakRef end function edge_profiles__ggd___neutral{T}() where T @@ -82540,8 +82540,8 @@ mutable struct edge_profiles__ggd___n_i_total_over_n_e{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___n_i_total_over_n_e} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___n_i_total_over_n_e} + _parent::WeakRef end function edge_profiles__ggd___n_i_total_over_n_e{T}() where T @@ -82586,8 +82586,8 @@ mutable struct edge_profiles__ggd___j_total{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_total} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_total} + _parent::WeakRef end function edge_profiles__ggd___j_total{T}() where T @@ -82632,8 +82632,8 @@ mutable struct edge_profiles__ggd___j_pfirsch_schlueter{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_pfirsch_schlueter} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_pfirsch_schlueter} + _parent::WeakRef end function edge_profiles__ggd___j_pfirsch_schlueter{T}() where T @@ -82678,8 +82678,8 @@ mutable struct edge_profiles__ggd___j_perpendicular_viscosity{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_perpendicular_viscosity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_perpendicular_viscosity} + _parent::WeakRef end function edge_profiles__ggd___j_perpendicular_viscosity{T}() where T @@ -82724,8 +82724,8 @@ mutable struct edge_profiles__ggd___j_parallel_viscosity{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_parallel_viscosity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_parallel_viscosity} + _parent::WeakRef end function edge_profiles__ggd___j_parallel_viscosity{T}() where T @@ -82746,8 +82746,8 @@ mutable struct edge_profiles__ggd___j_parallel{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_parallel} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_parallel} + _parent::WeakRef end function edge_profiles__ggd___j_parallel{T}() where T @@ -82792,8 +82792,8 @@ mutable struct edge_profiles__ggd___j_ion_neutral_friction{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_ion_neutral_friction} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_ion_neutral_friction} + _parent::WeakRef end function edge_profiles__ggd___j_ion_neutral_friction{T}() where T @@ -82838,8 +82838,8 @@ mutable struct edge_profiles__ggd___j_inertial{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_inertial} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_inertial} + _parent::WeakRef end function edge_profiles__ggd___j_inertial{T}() where T @@ -82884,8 +82884,8 @@ mutable struct edge_profiles__ggd___j_heat_viscosity{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_heat_viscosity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_heat_viscosity} + _parent::WeakRef end function edge_profiles__ggd___j_heat_viscosity{T}() where T @@ -82930,8 +82930,8 @@ mutable struct edge_profiles__ggd___j_diamagnetic{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_diamagnetic} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_diamagnetic} + _parent::WeakRef end function edge_profiles__ggd___j_diamagnetic{T}() where T @@ -82976,8 +82976,8 @@ mutable struct edge_profiles__ggd___j_anomalous{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___j_anomalous} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___j_anomalous} + _parent::WeakRef end function edge_profiles__ggd___j_anomalous{T}() where T @@ -83022,8 +83022,8 @@ mutable struct edge_profiles__ggd___ion___velocity{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___velocity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___velocity} + _parent::WeakRef end function edge_profiles__ggd___ion___velocity{T}() where T @@ -83044,8 +83044,8 @@ mutable struct edge_profiles__ggd___ion___temperature{T} <: IDSvectorStaticEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___temperature} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___temperature} + _parent::WeakRef end function edge_profiles__ggd___ion___temperature{T}() where T @@ -83066,8 +83066,8 @@ mutable struct edge_profiles__ggd___ion___state___z_square_average{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___z_square_average} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___z_square_average} + _parent::WeakRef end function edge_profiles__ggd___ion___state___z_square_average{T}() where T @@ -83088,8 +83088,8 @@ mutable struct edge_profiles__ggd___ion___state___z_average{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___z_average} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___z_average} + _parent::WeakRef end function edge_profiles__ggd___ion___state___z_average{T}() where T @@ -83134,8 +83134,8 @@ mutable struct edge_profiles__ggd___ion___state___velocity_exb{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___velocity_exb} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___velocity_exb} + _parent::WeakRef end function edge_profiles__ggd___ion___state___velocity_exb{T}() where T @@ -83180,8 +83180,8 @@ mutable struct edge_profiles__ggd___ion___state___velocity_diamagnetic{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___velocity_diamagnetic} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___velocity_diamagnetic} + _parent::WeakRef end function edge_profiles__ggd___ion___state___velocity_diamagnetic{T}() where T @@ -83226,8 +83226,8 @@ mutable struct edge_profiles__ggd___ion___state___velocity{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___velocity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___velocity} + _parent::WeakRef end function edge_profiles__ggd___ion___state___velocity{T}() where T @@ -83248,8 +83248,8 @@ mutable struct edge_profiles__ggd___ion___state___temperature{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___temperature} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___temperature} + _parent::WeakRef end function edge_profiles__ggd___ion___state___temperature{T}() where T @@ -83270,8 +83270,8 @@ mutable struct edge_profiles__ggd___ion___state___pressure_fast_perpendicular{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___pressure_fast_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___pressure_fast_perpendicular} + _parent::WeakRef end function edge_profiles__ggd___ion___state___pressure_fast_perpendicular{T}() where T @@ -83292,8 +83292,8 @@ mutable struct edge_profiles__ggd___ion___state___pressure_fast_parallel{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___pressure_fast_parallel} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___pressure_fast_parallel} + _parent::WeakRef end function edge_profiles__ggd___ion___state___pressure_fast_parallel{T}() where T @@ -83314,8 +83314,8 @@ mutable struct edge_profiles__ggd___ion___state___pressure{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___pressure} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___pressure} + _parent::WeakRef end function edge_profiles__ggd___ion___state___pressure{T}() where T @@ -83336,8 +83336,8 @@ mutable struct edge_profiles__ggd___ion___state___ionisation_potential{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___ionisation_potential} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___ionisation_potential} + _parent::WeakRef end function edge_profiles__ggd___ion___state___ionisation_potential{T}() where T @@ -83358,8 +83358,8 @@ mutable struct edge_profiles__ggd___ion___state___energy_density_kinetic{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___energy_density_kinetic} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___energy_density_kinetic} + _parent::WeakRef end function edge_profiles__ggd___ion___state___energy_density_kinetic{T}() where T @@ -83380,8 +83380,8 @@ mutable struct edge_profiles__ggd___ion___state___distribution_function{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___distribution_function} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___distribution_function} + _parent::WeakRef end function edge_profiles__ggd___ion___state___distribution_function{T}() where T @@ -83402,8 +83402,8 @@ mutable struct edge_profiles__ggd___ion___state___density_fast{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___density_fast} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___density_fast} + _parent::WeakRef end function edge_profiles__ggd___ion___state___density_fast{T}() where T @@ -83424,8 +83424,8 @@ mutable struct edge_profiles__ggd___ion___state___density{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state___density} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state___density} + _parent::WeakRef end function edge_profiles__ggd___ion___state___density{T}() where T @@ -83436,35 +83436,35 @@ end edge_profiles__ggd___ion___state___density() = edge_profiles__ggd___ion___state___density{Float64}() mutable struct edge_profiles__ggd___ion___state{T} <: IDSvectorStaticElement{T} - var"density" :: IDSvector{edge_profiles__ggd___ion___state___density{T}} - var"density_fast" :: IDSvector{edge_profiles__ggd___ion___state___density_fast{T}} - var"distribution_function" :: IDSvector{edge_profiles__ggd___ion___state___distribution_function{T}} + var"density"::IDSvector{edge_profiles__ggd___ion___state___density{T}} + var"density_fast"::IDSvector{edge_profiles__ggd___ion___state___density_fast{T}} + var"distribution_function"::IDSvector{edge_profiles__ggd___ion___state___distribution_function{T}} var"electron_configuration" :: String - var"energy_density_kinetic" :: IDSvector{edge_profiles__ggd___ion___state___energy_density_kinetic{T}} - var"ionisation_potential" :: IDSvector{edge_profiles__ggd___ion___state___ionisation_potential{T}} + var"energy_density_kinetic"::IDSvector{edge_profiles__ggd___ion___state___energy_density_kinetic{T}} + var"ionisation_potential"::IDSvector{edge_profiles__ggd___ion___state___ionisation_potential{T}} var"label" :: String - var"pressure" :: IDSvector{edge_profiles__ggd___ion___state___pressure{T}} - var"pressure_fast_parallel" :: IDSvector{edge_profiles__ggd___ion___state___pressure_fast_parallel{T}} - var"pressure_fast_perpendicular" :: IDSvector{edge_profiles__ggd___ion___state___pressure_fast_perpendicular{T}} - var"temperature" :: IDSvector{edge_profiles__ggd___ion___state___temperature{T}} - var"velocity" :: IDSvector{edge_profiles__ggd___ion___state___velocity{T}} - var"velocity_diamagnetic" :: IDSvector{edge_profiles__ggd___ion___state___velocity_diamagnetic{T}} - var"velocity_exb" :: IDSvector{edge_profiles__ggd___ion___state___velocity_exb{T}} + var"pressure"::IDSvector{edge_profiles__ggd___ion___state___pressure{T}} + var"pressure_fast_parallel"::IDSvector{edge_profiles__ggd___ion___state___pressure_fast_parallel{T}} + var"pressure_fast_perpendicular"::IDSvector{edge_profiles__ggd___ion___state___pressure_fast_perpendicular{T}} + var"temperature"::IDSvector{edge_profiles__ggd___ion___state___temperature{T}} + var"velocity"::IDSvector{edge_profiles__ggd___ion___state___velocity{T}} + var"velocity_diamagnetic"::IDSvector{edge_profiles__ggd___ion___state___velocity_diamagnetic{T}} + var"velocity_exb"::IDSvector{edge_profiles__ggd___ion___state___velocity_exb{T}} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String - var"z_average" :: IDSvector{edge_profiles__ggd___ion___state___z_average{T}} + var"z_average"::IDSvector{edge_profiles__ggd___ion___state___z_average{T}} var"z_max" :: T var"z_max_σ" :: T var"z_min" :: T var"z_min_σ" :: T - var"z_square_average" :: IDSvector{edge_profiles__ggd___ion___state___z_square_average{T}} + var"z_square_average"::IDSvector{edge_profiles__ggd___ion___state___z_square_average{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___state} + _parent::WeakRef end function edge_profiles__ggd___ion___state{T}() where T @@ -83499,8 +83499,8 @@ mutable struct edge_profiles__ggd___ion___pressure_fast_perpendicular{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___pressure_fast_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___pressure_fast_perpendicular} + _parent::WeakRef end function edge_profiles__ggd___ion___pressure_fast_perpendicular{T}() where T @@ -83521,8 +83521,8 @@ mutable struct edge_profiles__ggd___ion___pressure_fast_parallel{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___pressure_fast_parallel} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___pressure_fast_parallel} + _parent::WeakRef end function edge_profiles__ggd___ion___pressure_fast_parallel{T}() where T @@ -83543,8 +83543,8 @@ mutable struct edge_profiles__ggd___ion___pressure{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___pressure} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___pressure} + _parent::WeakRef end function edge_profiles__ggd___ion___pressure{T}() where T @@ -83565,8 +83565,8 @@ mutable struct edge_profiles__ggd___ion___energy_density_kinetic{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___energy_density_kinetic} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___energy_density_kinetic} + _parent::WeakRef end function edge_profiles__ggd___ion___energy_density_kinetic{T}() where T @@ -83586,8 +83586,8 @@ mutable struct edge_profiles__ggd___ion___element{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___element} + _parent::WeakRef end function edge_profiles__ggd___ion___element{T}() where T @@ -83608,8 +83608,8 @@ mutable struct edge_profiles__ggd___ion___density_fast{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___density_fast} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___density_fast} + _parent::WeakRef end function edge_profiles__ggd___ion___density_fast{T}() where T @@ -83630,8 +83630,8 @@ mutable struct edge_profiles__ggd___ion___density{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion___density} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion___density} + _parent::WeakRef end function edge_profiles__ggd___ion___density{T}() where T @@ -83642,27 +83642,27 @@ end edge_profiles__ggd___ion___density() = edge_profiles__ggd___ion___density{Float64}() mutable struct edge_profiles__ggd___ion{T} <: IDSvectorIonElement{T} - var"density" :: IDSvector{edge_profiles__ggd___ion___density{T}} - var"density_fast" :: IDSvector{edge_profiles__ggd___ion___density_fast{T}} - var"element" :: IDSvector{edge_profiles__ggd___ion___element{T}} - var"energy_density_kinetic" :: IDSvector{edge_profiles__ggd___ion___energy_density_kinetic{T}} + var"density"::IDSvector{edge_profiles__ggd___ion___density{T}} + var"density_fast"::IDSvector{edge_profiles__ggd___ion___density_fast{T}} + var"element"::IDSvector{edge_profiles__ggd___ion___element{T}} + var"energy_density_kinetic"::IDSvector{edge_profiles__ggd___ion___energy_density_kinetic{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"pressure" :: IDSvector{edge_profiles__ggd___ion___pressure{T}} - var"pressure_fast_parallel" :: IDSvector{edge_profiles__ggd___ion___pressure_fast_parallel{T}} - var"pressure_fast_perpendicular" :: IDSvector{edge_profiles__ggd___ion___pressure_fast_perpendicular{T}} - var"state" :: IDSvector{edge_profiles__ggd___ion___state{T}} - var"temperature" :: IDSvector{edge_profiles__ggd___ion___temperature{T}} - var"velocity" :: IDSvector{edge_profiles__ggd___ion___velocity{T}} + var"pressure"::IDSvector{edge_profiles__ggd___ion___pressure{T}} + var"pressure_fast_parallel"::IDSvector{edge_profiles__ggd___ion___pressure_fast_parallel{T}} + var"pressure_fast_perpendicular"::IDSvector{edge_profiles__ggd___ion___pressure_fast_perpendicular{T}} + var"state"::IDSvector{edge_profiles__ggd___ion___state{T}} + var"temperature"::IDSvector{edge_profiles__ggd___ion___temperature{T}} + var"velocity"::IDSvector{edge_profiles__ggd___ion___velocity{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___ion} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___ion} + _parent::WeakRef end function edge_profiles__ggd___ion{T}() where T @@ -83717,8 +83717,8 @@ mutable struct edge_profiles__ggd___electrons__velocity{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons__velocity} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons__velocity} + _parent::WeakRef end function edge_profiles__ggd___electrons__velocity{T}() where T @@ -83739,8 +83739,8 @@ mutable struct edge_profiles__ggd___electrons__temperature{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons__temperature} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons__temperature} + _parent::WeakRef end function edge_profiles__ggd___electrons__temperature{T}() where T @@ -83761,8 +83761,8 @@ mutable struct edge_profiles__ggd___electrons__pressure_fast_perpendicular{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons__pressure_fast_perpendicular} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons__pressure_fast_perpendicular} + _parent::WeakRef end function edge_profiles__ggd___electrons__pressure_fast_perpendicular{T}() where T @@ -83783,8 +83783,8 @@ mutable struct edge_profiles__ggd___electrons__pressure_fast_parallel{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons__pressure_fast_parallel} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons__pressure_fast_parallel} + _parent::WeakRef end function edge_profiles__ggd___electrons__pressure_fast_parallel{T}() where T @@ -83805,8 +83805,8 @@ mutable struct edge_profiles__ggd___electrons__pressure{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons__pressure} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons__pressure} + _parent::WeakRef end function edge_profiles__ggd___electrons__pressure{T}() where T @@ -83827,8 +83827,8 @@ mutable struct edge_profiles__ggd___electrons__distribution_function{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons__distribution_function} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons__distribution_function} + _parent::WeakRef end function edge_profiles__ggd___electrons__distribution_function{T}() where T @@ -83849,8 +83849,8 @@ mutable struct edge_profiles__ggd___electrons__density_fast{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons__density_fast} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons__density_fast} + _parent::WeakRef end function edge_profiles__ggd___electrons__density_fast{T}() where T @@ -83871,8 +83871,8 @@ mutable struct edge_profiles__ggd___electrons__density{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons__density} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons__density} + _parent::WeakRef end function edge_profiles__ggd___electrons__density{T}() where T @@ -83883,20 +83883,20 @@ end edge_profiles__ggd___electrons__density() = edge_profiles__ggd___electrons__density{Float64}() mutable struct edge_profiles__ggd___electrons{T} <: IDS{T} - var"density" :: IDSvector{edge_profiles__ggd___electrons__density{T}} - var"density_fast" :: IDSvector{edge_profiles__ggd___electrons__density_fast{T}} - var"distribution_function" :: IDSvector{edge_profiles__ggd___electrons__distribution_function{T}} - var"pressure" :: IDSvector{edge_profiles__ggd___electrons__pressure{T}} - var"pressure_fast_parallel" :: IDSvector{edge_profiles__ggd___electrons__pressure_fast_parallel{T}} - var"pressure_fast_perpendicular" :: IDSvector{edge_profiles__ggd___electrons__pressure_fast_perpendicular{T}} - var"temperature" :: IDSvector{edge_profiles__ggd___electrons__temperature{T}} - var"velocity" :: IDSvector{edge_profiles__ggd___electrons__velocity{T}} + var"density"::IDSvector{edge_profiles__ggd___electrons__density{T}} + var"density_fast"::IDSvector{edge_profiles__ggd___electrons__density_fast{T}} + var"distribution_function"::IDSvector{edge_profiles__ggd___electrons__distribution_function{T}} + var"pressure"::IDSvector{edge_profiles__ggd___electrons__pressure{T}} + var"pressure_fast_parallel"::IDSvector{edge_profiles__ggd___electrons__pressure_fast_parallel{T}} + var"pressure_fast_perpendicular"::IDSvector{edge_profiles__ggd___electrons__pressure_fast_perpendicular{T}} + var"temperature"::IDSvector{edge_profiles__ggd___electrons__temperature{T}} + var"velocity"::IDSvector{edge_profiles__ggd___electrons__velocity{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___electrons} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___electrons} + _parent::WeakRef end function edge_profiles__ggd___electrons{T}() where T @@ -83949,8 +83949,8 @@ mutable struct edge_profiles__ggd___e_field{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___e_field} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___e_field} + _parent::WeakRef end function edge_profiles__ggd___e_field{T}() where T @@ -83971,8 +83971,8 @@ mutable struct edge_profiles__ggd___a_field_parallel{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd___a_field_parallel} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd___a_field_parallel} + _parent::WeakRef end function edge_profiles__ggd___a_field_parallel{T}() where T @@ -83983,35 +83983,35 @@ end edge_profiles__ggd___a_field_parallel() = edge_profiles__ggd___a_field_parallel{Float64}() mutable struct edge_profiles__ggd{T} <: IDSvectorTimeElement{T} - var"a_field_parallel" :: IDSvector{edge_profiles__ggd___a_field_parallel{T}} - var"e_field" :: IDSvector{edge_profiles__ggd___e_field{T}} - var"electrons" :: edge_profiles__ggd___electrons{T} - var"ion" :: IDSvector{edge_profiles__ggd___ion{T}} - var"j_anomalous" :: IDSvector{edge_profiles__ggd___j_anomalous{T}} - var"j_diamagnetic" :: IDSvector{edge_profiles__ggd___j_diamagnetic{T}} - var"j_heat_viscosity" :: IDSvector{edge_profiles__ggd___j_heat_viscosity{T}} - var"j_inertial" :: IDSvector{edge_profiles__ggd___j_inertial{T}} - var"j_ion_neutral_friction" :: IDSvector{edge_profiles__ggd___j_ion_neutral_friction{T}} - var"j_parallel" :: IDSvector{edge_profiles__ggd___j_parallel{T}} - var"j_parallel_viscosity" :: IDSvector{edge_profiles__ggd___j_parallel_viscosity{T}} - var"j_perpendicular_viscosity" :: IDSvector{edge_profiles__ggd___j_perpendicular_viscosity{T}} - var"j_pfirsch_schlueter" :: IDSvector{edge_profiles__ggd___j_pfirsch_schlueter{T}} - var"j_total" :: IDSvector{edge_profiles__ggd___j_total{T}} - var"n_i_total_over_n_e" :: IDSvector{edge_profiles__ggd___n_i_total_over_n_e{T}} - var"neutral" :: IDSvector{edge_profiles__ggd___neutral{T}} - var"phi_potential" :: IDSvector{edge_profiles__ggd___phi_potential{T}} - var"pressure_parallel" :: IDSvector{edge_profiles__ggd___pressure_parallel{T}} - var"pressure_perpendicular" :: IDSvector{edge_profiles__ggd___pressure_perpendicular{T}} - var"pressure_thermal" :: IDSvector{edge_profiles__ggd___pressure_thermal{T}} - var"t_i_average" :: IDSvector{edge_profiles__ggd___t_i_average{T}} + var"a_field_parallel"::IDSvector{edge_profiles__ggd___a_field_parallel{T}} + var"e_field"::IDSvector{edge_profiles__ggd___e_field{T}} + var"electrons"::edge_profiles__ggd___electrons{T} + var"ion"::IDSvector{edge_profiles__ggd___ion{T}} + var"j_anomalous"::IDSvector{edge_profiles__ggd___j_anomalous{T}} + var"j_diamagnetic"::IDSvector{edge_profiles__ggd___j_diamagnetic{T}} + var"j_heat_viscosity"::IDSvector{edge_profiles__ggd___j_heat_viscosity{T}} + var"j_inertial"::IDSvector{edge_profiles__ggd___j_inertial{T}} + var"j_ion_neutral_friction"::IDSvector{edge_profiles__ggd___j_ion_neutral_friction{T}} + var"j_parallel"::IDSvector{edge_profiles__ggd___j_parallel{T}} + var"j_parallel_viscosity"::IDSvector{edge_profiles__ggd___j_parallel_viscosity{T}} + var"j_perpendicular_viscosity"::IDSvector{edge_profiles__ggd___j_perpendicular_viscosity{T}} + var"j_pfirsch_schlueter"::IDSvector{edge_profiles__ggd___j_pfirsch_schlueter{T}} + var"j_total"::IDSvector{edge_profiles__ggd___j_total{T}} + var"n_i_total_over_n_e"::IDSvector{edge_profiles__ggd___n_i_total_over_n_e{T}} + var"neutral"::IDSvector{edge_profiles__ggd___neutral{T}} + var"phi_potential"::IDSvector{edge_profiles__ggd___phi_potential{T}} + var"pressure_parallel"::IDSvector{edge_profiles__ggd___pressure_parallel{T}} + var"pressure_perpendicular"::IDSvector{edge_profiles__ggd___pressure_perpendicular{T}} + var"pressure_thermal"::IDSvector{edge_profiles__ggd___pressure_thermal{T}} + var"t_i_average"::IDSvector{edge_profiles__ggd___t_i_average{T}} var"time" :: Float64 - var"zeff" :: IDSvector{edge_profiles__ggd___zeff{T}} + var"zeff"::IDSvector{edge_profiles__ggd___zeff{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__ggd} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__ggd} + _parent::WeakRef end function edge_profiles__ggd{T}() where T @@ -84054,8 +84054,8 @@ mutable struct edge_profiles__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__code__library} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__code__library} + _parent::WeakRef end function edge_profiles__code__library{T}() where T @@ -84068,7 +84068,7 @@ edge_profiles__code__library() = edge_profiles__code__library{Float64}() mutable struct edge_profiles__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{edge_profiles__code__library{T}} + var"library"::IDSvector{edge_profiles__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -84078,8 +84078,8 @@ mutable struct edge_profiles__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles__code} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles__code} + _parent::WeakRef end function edge_profiles__code{T}() where T @@ -84091,22 +84091,22 @@ end edge_profiles__code() = edge_profiles__code{Float64}() mutable struct edge_profiles{T} <: IDStop{T} - var"code" :: edge_profiles__code{T} - var"ggd" :: IDSvector{edge_profiles__ggd{T}} - var"ggd_fast" :: IDSvector{edge_profiles__ggd_fast{T}} - var"grid_ggd" :: IDSvector{edge_profiles__grid_ggd{T}} - var"ids_properties" :: edge_profiles__ids_properties{T} - var"midplane" :: edge_profiles__midplane{T} - var"profiles_1d" :: IDSvector{edge_profiles__profiles_1d{T}} - var"statistics" :: IDSvector{edge_profiles__statistics{T}} + var"code"::edge_profiles__code{T} + var"ggd"::IDSvector{edge_profiles__ggd{T}} + var"ggd_fast"::IDSvector{edge_profiles__ggd_fast{T}} + var"grid_ggd"::IDSvector{edge_profiles__grid_ggd{T}} + var"ids_properties"::edge_profiles__ids_properties{T} + var"midplane"::edge_profiles__midplane{T} + var"profiles_1d"::IDSvector{edge_profiles__profiles_1d{T}} + var"statistics"::IDSvector{edge_profiles__statistics{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: edge_profiles__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::edge_profiles__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,edge_profiles} - _parent :: WeakRef + _ref::Union{Nothing,edge_profiles} + _parent::WeakRef end function edge_profiles{T}() where T @@ -84137,8 +84137,8 @@ mutable struct ece__t_e_central{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__t_e_central} - _parent :: WeakRef + _ref::Union{Nothing,ece__t_e_central} + _parent::WeakRef end function ece__t_e_central{T}() where T @@ -84158,8 +84158,8 @@ mutable struct ece__psi_normalization{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__psi_normalization} - _parent :: WeakRef + _ref::Union{Nothing,ece__psi_normalization} + _parent::WeakRef end function ece__psi_normalization{T}() where T @@ -84180,8 +84180,8 @@ mutable struct ece__polarizer___x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__polarizer___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,ece__polarizer___x3_unit_vector} + _parent::WeakRef end function ece__polarizer___x3_unit_vector{T}() where T @@ -84202,8 +84202,8 @@ mutable struct ece__polarizer___x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__polarizer___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,ece__polarizer___x2_unit_vector} + _parent::WeakRef end function ece__polarizer___x2_unit_vector{T}() where T @@ -84224,8 +84224,8 @@ mutable struct ece__polarizer___x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__polarizer___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,ece__polarizer___x1_unit_vector} + _parent::WeakRef end function ece__polarizer___x1_unit_vector{T}() where T @@ -84246,8 +84246,8 @@ mutable struct ece__polarizer___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__polarizer___centre} - _parent :: WeakRef + _ref::Union{Nothing,ece__polarizer___centre} + _parent::WeakRef end function ece__polarizer___centre{T}() where T @@ -84258,20 +84258,20 @@ end ece__polarizer___centre() = ece__polarizer___centre{Float64}() mutable struct ece__polarizer{T} <: IDSvectorStaticElement{T} - var"centre" :: ece__polarizer___centre{T} + var"centre"::ece__polarizer___centre{T} var"polarization_angle" :: T var"polarization_angle_σ" :: T var"radius" :: T var"radius_σ" :: T - var"x1_unit_vector" :: ece__polarizer___x1_unit_vector{T} - var"x2_unit_vector" :: ece__polarizer___x2_unit_vector{T} - var"x3_unit_vector" :: ece__polarizer___x3_unit_vector{T} + var"x1_unit_vector"::ece__polarizer___x1_unit_vector{T} + var"x2_unit_vector"::ece__polarizer___x2_unit_vector{T} + var"x3_unit_vector"::ece__polarizer___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__polarizer} - _parent :: WeakRef + _ref::Union{Nothing,ece__polarizer} + _parent::WeakRef end function ece__polarizer{T}() where T @@ -84296,8 +84296,8 @@ mutable struct ece__line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,ece__line_of_sight__second_point} + _parent::WeakRef end function ece__line_of_sight__second_point{T}() where T @@ -84318,8 +84318,8 @@ mutable struct ece__line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,ece__line_of_sight__first_point} + _parent::WeakRef end function ece__line_of_sight__first_point{T}() where T @@ -84330,14 +84330,14 @@ end ece__line_of_sight__first_point() = ece__line_of_sight__first_point{Float64}() mutable struct ece__line_of_sight{T} <: IDS{T} - var"first_point" :: ece__line_of_sight__first_point{T} - var"second_point" :: ece__line_of_sight__second_point{T} + var"first_point"::ece__line_of_sight__first_point{T} + var"second_point"::ece__line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,ece__line_of_sight} + _parent::WeakRef end function ece__line_of_sight{T}() where T @@ -84357,8 +84357,8 @@ mutable struct ece__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__version_put} + _parent::WeakRef end function ece__ids_properties__version_put{T}() where T @@ -84375,8 +84375,8 @@ mutable struct ece__ids_properties__provenance__node{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__provenance__node} + _parent::WeakRef end function ece__ids_properties__provenance__node{T}() where T @@ -84387,13 +84387,13 @@ end ece__ids_properties__provenance__node() = ece__ids_properties__provenance__node{Float64}() mutable struct ece__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{ece__ids_properties__provenance__node{T}} + var"node"::IDSvector{ece__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__provenance} + _parent::WeakRef end function ece__ids_properties__provenance{T}() where T @@ -84415,8 +84415,8 @@ mutable struct ece__ids_properties__plugins__node___readback{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__plugins__node___readback} + _parent::WeakRef end function ece__ids_properties__plugins__node___readback{T}() where T @@ -84437,8 +84437,8 @@ mutable struct ece__ids_properties__plugins__node___put_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function ece__ids_properties__plugins__node___put_operation{T}() where T @@ -84459,8 +84459,8 @@ mutable struct ece__ids_properties__plugins__node___get_operation{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function ece__ids_properties__plugins__node___get_operation{T}() where T @@ -84471,16 +84471,16 @@ end ece__ids_properties__plugins__node___get_operation() = ece__ids_properties__plugins__node___get_operation{Float64}() mutable struct ece__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{ece__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{ece__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{ece__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{ece__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{ece__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{ece__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__plugins__node} + _parent::WeakRef end function ece__ids_properties__plugins__node{T}() where T @@ -84503,8 +84503,8 @@ mutable struct ece__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function ece__ids_properties__plugins__infrastructure_put{T}() where T @@ -84524,8 +84524,8 @@ mutable struct ece__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function ece__ids_properties__plugins__infrastructure_get{T}() where T @@ -84536,15 +84536,15 @@ end ece__ids_properties__plugins__infrastructure_get() = ece__ids_properties__plugins__infrastructure_get{Float64}() mutable struct ece__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: ece__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: ece__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{ece__ids_properties__plugins__node{T}} + var"infrastructure_get"::ece__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::ece__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{ece__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__plugins} + _parent::WeakRef end function ece__ids_properties__plugins{T}() where T @@ -84565,8 +84565,8 @@ mutable struct ece__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties__occurrence_type} + _parent::WeakRef end function ece__ids_properties__occurrence_type{T}() where T @@ -84582,17 +84582,17 @@ mutable struct ece__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: ece__ids_properties__occurrence_type{T} - var"plugins" :: ece__ids_properties__plugins{T} - var"provenance" :: ece__ids_properties__provenance{T} + var"occurrence_type"::ece__ids_properties__occurrence_type{T} + var"plugins"::ece__ids_properties__plugins{T} + var"provenance"::ece__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: ece__ids_properties__version_put{T} + var"version_put"::ece__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,ece__ids_properties} + _parent::WeakRef end function ece__ids_properties{T}() where T @@ -84617,8 +84617,8 @@ mutable struct ece__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__code__library} - _parent :: WeakRef + _ref::Union{Nothing,ece__code__library} + _parent::WeakRef end function ece__code__library{T}() where T @@ -84631,7 +84631,7 @@ ece__code__library() = ece__code__library{Float64}() mutable struct ece__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{ece__code__library{T}} + var"library"::IDSvector{ece__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -84641,8 +84641,8 @@ mutable struct ece__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__code} - _parent :: WeakRef + _ref::Union{Nothing,ece__code} + _parent::WeakRef end function ece__code{T}() where T @@ -84663,8 +84663,8 @@ mutable struct ece__channel___t_e_voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___t_e_voltage} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___t_e_voltage} + _parent::WeakRef end function ece__channel___t_e_voltage{T}() where T @@ -84683,8 +84683,8 @@ mutable struct ece__channel___t_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___t_e} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___t_e} + _parent::WeakRef end function ece__channel___t_e{T}() where T @@ -84711,8 +84711,8 @@ mutable struct ece__channel___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___position} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___position} + _parent::WeakRef end function ece__channel___position{T}() where T @@ -84731,8 +84731,8 @@ mutable struct ece__channel___optical_depth{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___optical_depth} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___optical_depth} + _parent::WeakRef end function ece__channel___optical_depth{T}() where T @@ -84753,8 +84753,8 @@ mutable struct ece__channel___line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___line_of_sight__second_point} + _parent::WeakRef end function ece__channel___line_of_sight__second_point{T}() where T @@ -84775,8 +84775,8 @@ mutable struct ece__channel___line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___line_of_sight__first_point} + _parent::WeakRef end function ece__channel___line_of_sight__first_point{T}() where T @@ -84787,14 +84787,14 @@ end ece__channel___line_of_sight__first_point() = ece__channel___line_of_sight__first_point{Float64}() mutable struct ece__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: ece__channel___line_of_sight__first_point{T} - var"second_point" :: ece__channel___line_of_sight__second_point{T} + var"first_point"::ece__channel___line_of_sight__first_point{T} + var"second_point"::ece__channel___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___line_of_sight} + _parent::WeakRef end function ece__channel___line_of_sight{T}() where T @@ -84814,8 +84814,8 @@ mutable struct ece__channel___harmonic{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___harmonic} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___harmonic} + _parent::WeakRef end function ece__channel___harmonic{T}() where T @@ -84834,8 +84834,8 @@ mutable struct ece__channel___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___frequency} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___frequency} + _parent::WeakRef end function ece__channel___frequency{T}() where T @@ -84862,8 +84862,8 @@ mutable struct ece__channel___delta_position_suprathermal{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___delta_position_suprathermal} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___delta_position_suprathermal} + _parent::WeakRef end function ece__channel___delta_position_suprathermal{T}() where T @@ -84881,8 +84881,8 @@ mutable struct ece__channel___beam__spot__size{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___beam__spot__size} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___beam__spot__size} + _parent::WeakRef end function ece__channel___beam__spot__size{T}() where T @@ -84900,8 +84900,8 @@ mutable struct ece__channel___beam__spot__angle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___beam__spot__angle} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___beam__spot__angle} + _parent::WeakRef end function ece__channel___beam__spot__angle{T}() where T @@ -84912,14 +84912,14 @@ end ece__channel___beam__spot__angle() = ece__channel___beam__spot__angle{Float64}() mutable struct ece__channel___beam__spot{T} <: IDS{T} - var"angle" :: ece__channel___beam__spot__angle{T} - var"size" :: ece__channel___beam__spot__size{T} + var"angle"::ece__channel___beam__spot__angle{T} + var"size"::ece__channel___beam__spot__size{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___beam__spot} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___beam__spot} + _parent::WeakRef end function ece__channel___beam__spot{T}() where T @@ -84939,8 +84939,8 @@ mutable struct ece__channel___beam__phase__curvature{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___beam__phase__curvature} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___beam__phase__curvature} + _parent::WeakRef end function ece__channel___beam__phase__curvature{T}() where T @@ -84958,8 +84958,8 @@ mutable struct ece__channel___beam__phase__angle{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___beam__phase__angle} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___beam__phase__angle} + _parent::WeakRef end function ece__channel___beam__phase__angle{T}() where T @@ -84970,14 +84970,14 @@ end ece__channel___beam__phase__angle() = ece__channel___beam__phase__angle{Float64}() mutable struct ece__channel___beam__phase{T} <: IDS{T} - var"angle" :: ece__channel___beam__phase__angle{T} - var"curvature" :: ece__channel___beam__phase__curvature{T} + var"angle"::ece__channel___beam__phase__angle{T} + var"curvature"::ece__channel___beam__phase__curvature{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___beam__phase} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___beam__phase} + _parent::WeakRef end function ece__channel___beam__phase{T}() where T @@ -84990,14 +84990,14 @@ end ece__channel___beam__phase() = ece__channel___beam__phase{Float64}() mutable struct ece__channel___beam{T} <: IDS{T} - var"phase" :: ece__channel___beam__phase{T} - var"spot" :: ece__channel___beam__spot{T} + var"phase"::ece__channel___beam__phase{T} + var"spot"::ece__channel___beam__spot{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel___beam} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel___beam} + _parent::WeakRef end function ece__channel___beam{T}() where T @@ -85010,26 +85010,26 @@ end ece__channel___beam() = ece__channel___beam{Float64}() mutable struct ece__channel{T} <: IDSvectorStaticElement{T} - var"beam" :: ece__channel___beam{T} - var"delta_position_suprathermal" :: ece__channel___delta_position_suprathermal{T} - var"frequency" :: ece__channel___frequency{T} - var"harmonic" :: ece__channel___harmonic{T} + var"beam"::ece__channel___beam{T} + var"delta_position_suprathermal"::ece__channel___delta_position_suprathermal{T} + var"frequency"::ece__channel___frequency{T} + var"harmonic"::ece__channel___harmonic{T} var"identifier" :: String var"if_bandwidth" :: T var"if_bandwidth_σ" :: T - var"line_of_sight" :: ece__channel___line_of_sight{T} + var"line_of_sight"::ece__channel___line_of_sight{T} var"name" :: String - var"optical_depth" :: ece__channel___optical_depth{T} - var"position" :: ece__channel___position{T} - var"t_e" :: ece__channel___t_e{T} - var"t_e_voltage" :: ece__channel___t_e_voltage{T} + var"optical_depth"::ece__channel___optical_depth{T} + var"position"::ece__channel___position{T} + var"t_e"::ece__channel___t_e{T} + var"t_e_voltage"::ece__channel___t_e_voltage{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece__channel} - _parent :: WeakRef + _ref::Union{Nothing,ece__channel} + _parent::WeakRef end function ece__channel{T}() where T @@ -85049,22 +85049,22 @@ end ece__channel() = ece__channel{Float64}() mutable struct ece{T} <: IDStop{T} - var"channel" :: IDSvector{ece__channel{T}} - var"code" :: ece__code{T} - var"ids_properties" :: ece__ids_properties{T} + var"channel"::IDSvector{ece__channel{T}} + var"code"::ece__code{T} + var"ids_properties"::ece__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"line_of_sight" :: ece__line_of_sight{T} - var"polarizer" :: IDSvector{ece__polarizer{T}} - var"psi_normalization" :: ece__psi_normalization{T} - var"t_e_central" :: ece__t_e_central{T} + var"line_of_sight"::ece__line_of_sight{T} + var"polarizer"::IDSvector{ece__polarizer{T}} + var"psi_normalization"::ece__psi_normalization{T} + var"t_e_central"::ece__t_e_central{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ece} - _parent :: WeakRef + _ref::Union{Nothing,ece} + _parent::WeakRef end function ece{T}() where T @@ -85089,8 +85089,8 @@ mutable struct ec_launchers__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__version_put} + _parent::WeakRef end function ec_launchers__ids_properties__version_put{T}() where T @@ -85107,8 +85107,8 @@ mutable struct ec_launchers__ids_properties__provenance__node{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__provenance__node} + _parent::WeakRef end function ec_launchers__ids_properties__provenance__node{T}() where T @@ -85119,13 +85119,13 @@ end ec_launchers__ids_properties__provenance__node() = ec_launchers__ids_properties__provenance__node{Float64}() mutable struct ec_launchers__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{ec_launchers__ids_properties__provenance__node{T}} + var"node"::IDSvector{ec_launchers__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__provenance} + _parent::WeakRef end function ec_launchers__ids_properties__provenance{T}() where T @@ -85147,8 +85147,8 @@ mutable struct ec_launchers__ids_properties__plugins__node___readback{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__plugins__node___readback} + _parent::WeakRef end function ec_launchers__ids_properties__plugins__node___readback{T}() where T @@ -85169,8 +85169,8 @@ mutable struct ec_launchers__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function ec_launchers__ids_properties__plugins__node___put_operation{T}() where T @@ -85191,8 +85191,8 @@ mutable struct ec_launchers__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function ec_launchers__ids_properties__plugins__node___get_operation{T}() where T @@ -85203,16 +85203,16 @@ end ec_launchers__ids_properties__plugins__node___get_operation() = ec_launchers__ids_properties__plugins__node___get_operation{Float64}() mutable struct ec_launchers__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{ec_launchers__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{ec_launchers__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{ec_launchers__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{ec_launchers__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{ec_launchers__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{ec_launchers__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__plugins__node} + _parent::WeakRef end function ec_launchers__ids_properties__plugins__node{T}() where T @@ -85235,8 +85235,8 @@ mutable struct ec_launchers__ids_properties__plugins__infrastructure_put{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function ec_launchers__ids_properties__plugins__infrastructure_put{T}() where T @@ -85256,8 +85256,8 @@ mutable struct ec_launchers__ids_properties__plugins__infrastructure_get{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function ec_launchers__ids_properties__plugins__infrastructure_get{T}() where T @@ -85268,15 +85268,15 @@ end ec_launchers__ids_properties__plugins__infrastructure_get() = ec_launchers__ids_properties__plugins__infrastructure_get{Float64}() mutable struct ec_launchers__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: ec_launchers__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: ec_launchers__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{ec_launchers__ids_properties__plugins__node{T}} + var"infrastructure_get"::ec_launchers__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::ec_launchers__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{ec_launchers__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__plugins} + _parent::WeakRef end function ec_launchers__ids_properties__plugins{T}() where T @@ -85297,8 +85297,8 @@ mutable struct ec_launchers__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties__occurrence_type} + _parent::WeakRef end function ec_launchers__ids_properties__occurrence_type{T}() where T @@ -85314,17 +85314,17 @@ mutable struct ec_launchers__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: ec_launchers__ids_properties__occurrence_type{T} - var"plugins" :: ec_launchers__ids_properties__plugins{T} - var"provenance" :: ec_launchers__ids_properties__provenance{T} + var"occurrence_type"::ec_launchers__ids_properties__occurrence_type{T} + var"plugins"::ec_launchers__ids_properties__plugins{T} + var"provenance"::ec_launchers__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: ec_launchers__ids_properties__version_put{T} + var"version_put"::ec_launchers__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__ids_properties} + _parent::WeakRef end function ec_launchers__ids_properties{T}() where T @@ -85349,8 +85349,8 @@ mutable struct ec_launchers__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__code__library} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__code__library} + _parent::WeakRef end function ec_launchers__code__library{T}() where T @@ -85363,7 +85363,7 @@ ec_launchers__code__library() = ec_launchers__code__library{Float64}() mutable struct ec_launchers__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{ec_launchers__code__library{T}} + var"library"::IDSvector{ec_launchers__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -85373,8 +85373,8 @@ mutable struct ec_launchers__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__code} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__code} + _parent::WeakRef end function ec_launchers__code{T}() where T @@ -85394,8 +85394,8 @@ mutable struct ec_launchers__beam___spot{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__beam___spot} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__beam___spot} + _parent::WeakRef end function ec_launchers__beam___spot{T}() where T @@ -85413,8 +85413,8 @@ mutable struct ec_launchers__beam___power_launched{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__beam___power_launched} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__beam___power_launched} + _parent::WeakRef end function ec_launchers__beam___power_launched{T}() where T @@ -85433,8 +85433,8 @@ mutable struct ec_launchers__beam___phase{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__beam___phase} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__beam___phase} + _parent::WeakRef end function ec_launchers__beam___phase{T}() where T @@ -85459,8 +85459,8 @@ mutable struct ec_launchers__beam___launching_position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__beam___launching_position} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__beam___launching_position} + _parent::WeakRef end function ec_launchers__beam___launching_position{T}() where T @@ -85478,8 +85478,8 @@ mutable struct ec_launchers__beam___frequency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__beam___frequency} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__beam___frequency} + _parent::WeakRef end function ec_launchers__beam___frequency{T}() where T @@ -85498,8 +85498,8 @@ mutable struct ec_launchers__beam___efficiency{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__beam___efficiency} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__beam___efficiency} + _parent::WeakRef end function ec_launchers__beam___efficiency{T}() where T @@ -85512,17 +85512,17 @@ ec_launchers__beam___efficiency() = ec_launchers__beam___efficiency{Float64}() mutable struct ec_launchers__beam{T} <: IDSvectorStaticElement{T} var"available_launch_power" :: T var"available_launch_power_σ" :: T - var"efficiency" :: ec_launchers__beam___efficiency{T} - var"frequency" :: ec_launchers__beam___frequency{T} + var"efficiency"::ec_launchers__beam___efficiency{T} + var"frequency"::ec_launchers__beam___frequency{T} var"identifier" :: String - var"launching_position" :: ec_launchers__beam___launching_position{T} + var"launching_position"::ec_launchers__beam___launching_position{T} var"mode" :: Int var"name" :: String var"o_mode_fraction" :: Vector{<:T} var"o_mode_fraction_σ" :: Vector{<:T} - var"phase" :: ec_launchers__beam___phase{T} - var"power_launched" :: ec_launchers__beam___power_launched{T} - var"spot" :: ec_launchers__beam___spot{T} + var"phase"::ec_launchers__beam___phase{T} + var"power_launched"::ec_launchers__beam___power_launched{T} + var"spot"::ec_launchers__beam___spot{T} var"steering_angle_pol" :: Vector{<:T} var"steering_angle_pol_σ" :: Vector{<:T} var"steering_angle_tor" :: Vector{<:T} @@ -85532,8 +85532,8 @@ mutable struct ec_launchers__beam{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers__beam} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers__beam} + _parent::WeakRef end function ec_launchers__beam{T}() where T @@ -85550,9 +85550,9 @@ end ec_launchers__beam() = ec_launchers__beam{Float64}() mutable struct ec_launchers{T} <: IDStop{T} - var"beam" :: IDSvector{ec_launchers__beam{T}} - var"code" :: ec_launchers__code{T} - var"ids_properties" :: ec_launchers__ids_properties{T} + var"beam"::IDSvector{ec_launchers__beam{T}} + var"code"::ec_launchers__code{T} + var"ids_properties"::ec_launchers__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -85560,8 +85560,8 @@ mutable struct ec_launchers{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,ec_launchers} - _parent :: WeakRef + _ref::Union{Nothing,ec_launchers} + _parent::WeakRef end function ec_launchers{T}() where T @@ -85582,8 +85582,8 @@ mutable struct divertors__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__midplane} - _parent :: WeakRef + _ref::Union{Nothing,divertors__midplane} + _parent::WeakRef end function divertors__midplane{T}() where T @@ -85601,8 +85601,8 @@ mutable struct divertors__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__version_put} + _parent::WeakRef end function divertors__ids_properties__version_put{T}() where T @@ -85619,8 +85619,8 @@ mutable struct divertors__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__provenance__node} + _parent::WeakRef end function divertors__ids_properties__provenance__node{T}() where T @@ -85631,13 +85631,13 @@ end divertors__ids_properties__provenance__node() = divertors__ids_properties__provenance__node{Float64}() mutable struct divertors__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{divertors__ids_properties__provenance__node{T}} + var"node"::IDSvector{divertors__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__provenance} + _parent::WeakRef end function divertors__ids_properties__provenance{T}() where T @@ -85659,8 +85659,8 @@ mutable struct divertors__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__plugins__node___readback} + _parent::WeakRef end function divertors__ids_properties__plugins__node___readback{T}() where T @@ -85681,8 +85681,8 @@ mutable struct divertors__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function divertors__ids_properties__plugins__node___put_operation{T}() where T @@ -85703,8 +85703,8 @@ mutable struct divertors__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function divertors__ids_properties__plugins__node___get_operation{T}() where T @@ -85715,16 +85715,16 @@ end divertors__ids_properties__plugins__node___get_operation() = divertors__ids_properties__plugins__node___get_operation{Float64}() mutable struct divertors__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{divertors__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{divertors__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{divertors__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{divertors__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{divertors__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{divertors__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__plugins__node} + _parent::WeakRef end function divertors__ids_properties__plugins__node{T}() where T @@ -85747,8 +85747,8 @@ mutable struct divertors__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function divertors__ids_properties__plugins__infrastructure_put{T}() where T @@ -85768,8 +85768,8 @@ mutable struct divertors__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function divertors__ids_properties__plugins__infrastructure_get{T}() where T @@ -85780,15 +85780,15 @@ end divertors__ids_properties__plugins__infrastructure_get() = divertors__ids_properties__plugins__infrastructure_get{Float64}() mutable struct divertors__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: divertors__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: divertors__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{divertors__ids_properties__plugins__node{T}} + var"infrastructure_get"::divertors__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::divertors__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{divertors__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__plugins} + _parent::WeakRef end function divertors__ids_properties__plugins{T}() where T @@ -85809,8 +85809,8 @@ mutable struct divertors__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties__occurrence_type} + _parent::WeakRef end function divertors__ids_properties__occurrence_type{T}() where T @@ -85826,17 +85826,17 @@ mutable struct divertors__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: divertors__ids_properties__occurrence_type{T} - var"plugins" :: divertors__ids_properties__plugins{T} - var"provenance" :: divertors__ids_properties__provenance{T} + var"occurrence_type"::divertors__ids_properties__occurrence_type{T} + var"plugins"::divertors__ids_properties__plugins{T} + var"provenance"::divertors__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: divertors__ids_properties__version_put{T} + var"version_put"::divertors__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,divertors__ids_properties} + _parent::WeakRef end function divertors__ids_properties{T}() where T @@ -85858,8 +85858,8 @@ mutable struct divertors__divertor___wetted_area{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___wetted_area} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___wetted_area} + _parent::WeakRef end function divertors__divertor___wetted_area{T}() where T @@ -85877,8 +85877,8 @@ mutable struct divertors__divertor___target___wetted_area{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___wetted_area} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___wetted_area} + _parent::WeakRef end function divertors__divertor___target___wetted_area{T}() where T @@ -85902,8 +85902,8 @@ mutable struct divertors__divertor___target___two_point_model{T} <: IDSvectorTim _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___two_point_model} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___two_point_model} + _parent::WeakRef end function divertors__divertor___target___two_point_model{T}() where T @@ -85921,8 +85921,8 @@ mutable struct divertors__divertor___target___tilt_angle_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___tilt_angle_tor} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___tilt_angle_tor} + _parent::WeakRef end function divertors__divertor___target___tilt_angle_tor{T}() where T @@ -85940,8 +85940,8 @@ mutable struct divertors__divertor___target___tilt_angle_pol{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___tilt_angle_pol} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___tilt_angle_pol} + _parent::WeakRef end function divertors__divertor___target___tilt_angle_pol{T}() where T @@ -85962,8 +85962,8 @@ mutable struct divertors__divertor___target___tile___surface_outline{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___tile___surface_outline} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___tile___surface_outline} + _parent::WeakRef end function divertors__divertor___target___tile___surface_outline{T}() where T @@ -85981,8 +85981,8 @@ mutable struct divertors__divertor___target___tile___current_incident{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___tile___current_incident} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___tile___current_incident} + _parent::WeakRef end function divertors__divertor___target___tile___current_incident{T}() where T @@ -85993,19 +85993,19 @@ end divertors__divertor___target___tile___current_incident() = divertors__divertor___target___tile___current_incident{Float64}() mutable struct divertors__divertor___target___tile{T} <: IDSvectorStaticElement{T} - var"current_incident" :: divertors__divertor___target___tile___current_incident{T} + var"current_incident"::divertors__divertor___target___tile___current_incident{T} var"identifier" :: String var"name" :: String var"shunt_index" :: Int var"surface_area" :: T var"surface_area_σ" :: T - var"surface_outline" :: divertors__divertor___target___tile___surface_outline{T} + var"surface_outline"::divertors__divertor___target___tile___surface_outline{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___tile} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___tile} + _parent::WeakRef end function divertors__divertor___target___tile{T}() where T @@ -86025,8 +86025,8 @@ mutable struct divertors__divertor___target___power_recombination_plasma{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_recombination_plasma} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_recombination_plasma} + _parent::WeakRef end function divertors__divertor___target___power_recombination_plasma{T}() where T @@ -86044,8 +86044,8 @@ mutable struct divertors__divertor___target___power_recombination_neutrals{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_recombination_neutrals} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_recombination_neutrals} + _parent::WeakRef end function divertors__divertor___target___power_recombination_neutrals{T}() where T @@ -86063,8 +86063,8 @@ mutable struct divertors__divertor___target___power_radiated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_radiated} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_radiated} + _parent::WeakRef end function divertors__divertor___target___power_radiated{T}() where T @@ -86082,8 +86082,8 @@ mutable struct divertors__divertor___target___power_neutrals{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_neutrals} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_neutrals} + _parent::WeakRef end function divertors__divertor___target___power_neutrals{T}() where T @@ -86101,8 +86101,8 @@ mutable struct divertors__divertor___target___power_incident_fraction{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_incident_fraction} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_incident_fraction} + _parent::WeakRef end function divertors__divertor___target___power_incident_fraction{T}() where T @@ -86120,8 +86120,8 @@ mutable struct divertors__divertor___target___power_incident{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_incident} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_incident} + _parent::WeakRef end function divertors__divertor___target___power_incident{T}() where T @@ -86139,8 +86139,8 @@ mutable struct divertors__divertor___target___power_flux_peak{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_flux_peak} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_flux_peak} + _parent::WeakRef end function divertors__divertor___target___power_flux_peak{T}() where T @@ -86158,8 +86158,8 @@ mutable struct divertors__divertor___target___power_currents{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_currents} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_currents} + _parent::WeakRef end function divertors__divertor___target___power_currents{T}() where T @@ -86177,8 +86177,8 @@ mutable struct divertors__divertor___target___power_convected{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_convected} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_convected} + _parent::WeakRef end function divertors__divertor___target___power_convected{T}() where T @@ -86196,8 +86196,8 @@ mutable struct divertors__divertor___target___power_conducted{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_conducted} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_conducted} + _parent::WeakRef end function divertors__divertor___target___power_conducted{T}() where T @@ -86215,8 +86215,8 @@ mutable struct divertors__divertor___target___power_black_body{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___power_black_body} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___power_black_body} + _parent::WeakRef end function divertors__divertor___target___power_black_body{T}() where T @@ -86234,8 +86234,8 @@ mutable struct divertors__divertor___target___flux_expansion{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___flux_expansion} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___flux_expansion} + _parent::WeakRef end function divertors__divertor___target___flux_expansion{T}() where T @@ -86253,8 +86253,8 @@ mutable struct divertors__divertor___target___current_incident{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target___current_incident} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target___current_incident} + _parent::WeakRef end function divertors__divertor___target___current_incident{T}() where T @@ -86265,42 +86265,42 @@ end divertors__divertor___target___current_incident() = divertors__divertor___target___current_incident{Float64}() mutable struct divertors__divertor___target{T} <: IDSvectorStaticElement{T} - var"current_incident" :: divertors__divertor___target___current_incident{T} + var"current_incident"::divertors__divertor___target___current_incident{T} var"extension_r" :: T var"extension_r_σ" :: T var"extension_z" :: T var"extension_z_σ" :: T - var"flux_expansion" :: divertors__divertor___target___flux_expansion{T} + var"flux_expansion"::divertors__divertor___target___flux_expansion{T} var"heat_flux_steady_limit_max" :: T var"heat_flux_steady_limit_max_σ" :: T var"identifier" :: String var"name" :: String - var"power_black_body" :: divertors__divertor___target___power_black_body{T} - var"power_conducted" :: divertors__divertor___target___power_conducted{T} - var"power_convected" :: divertors__divertor___target___power_convected{T} - var"power_currents" :: divertors__divertor___target___power_currents{T} - var"power_flux_peak" :: divertors__divertor___target___power_flux_peak{T} - var"power_incident" :: divertors__divertor___target___power_incident{T} - var"power_incident_fraction" :: divertors__divertor___target___power_incident_fraction{T} - var"power_neutrals" :: divertors__divertor___target___power_neutrals{T} - var"power_radiated" :: divertors__divertor___target___power_radiated{T} - var"power_recombination_neutrals" :: divertors__divertor___target___power_recombination_neutrals{T} - var"power_recombination_plasma" :: divertors__divertor___target___power_recombination_plasma{T} + var"power_black_body"::divertors__divertor___target___power_black_body{T} + var"power_conducted"::divertors__divertor___target___power_conducted{T} + var"power_convected"::divertors__divertor___target___power_convected{T} + var"power_currents"::divertors__divertor___target___power_currents{T} + var"power_flux_peak"::divertors__divertor___target___power_flux_peak{T} + var"power_incident"::divertors__divertor___target___power_incident{T} + var"power_incident_fraction"::divertors__divertor___target___power_incident_fraction{T} + var"power_neutrals"::divertors__divertor___target___power_neutrals{T} + var"power_radiated"::divertors__divertor___target___power_radiated{T} + var"power_recombination_neutrals"::divertors__divertor___target___power_recombination_neutrals{T} + var"power_recombination_plasma"::divertors__divertor___target___power_recombination_plasma{T} var"t_e_target_sputtering_limit_max" :: T var"t_e_target_sputtering_limit_max_σ" :: T var"temperature_limit_max" :: T var"temperature_limit_max_σ" :: T - var"tile" :: IDSvector{divertors__divertor___target___tile{T}} - var"tilt_angle_pol" :: divertors__divertor___target___tilt_angle_pol{T} - var"tilt_angle_tor" :: divertors__divertor___target___tilt_angle_tor{T} - var"two_point_model" :: IDSvector{divertors__divertor___target___two_point_model{T}} - var"wetted_area" :: divertors__divertor___target___wetted_area{T} + var"tile"::IDSvector{divertors__divertor___target___tile{T}} + var"tilt_angle_pol"::divertors__divertor___target___tilt_angle_pol{T} + var"tilt_angle_tor"::divertors__divertor___target___tilt_angle_tor{T} + var"two_point_model"::IDSvector{divertors__divertor___target___two_point_model{T}} + var"wetted_area"::divertors__divertor___target___wetted_area{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___target} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___target} + _parent::WeakRef end function divertors__divertor___target{T}() where T @@ -86336,8 +86336,8 @@ mutable struct divertors__divertor___power_thermal_extracted{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_thermal_extracted} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_thermal_extracted} + _parent::WeakRef end function divertors__divertor___power_thermal_extracted{T}() where T @@ -86355,8 +86355,8 @@ mutable struct divertors__divertor___power_recombination_plasma{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_recombination_plasma} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_recombination_plasma} + _parent::WeakRef end function divertors__divertor___power_recombination_plasma{T}() where T @@ -86374,8 +86374,8 @@ mutable struct divertors__divertor___power_recombination_neutrals{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_recombination_neutrals} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_recombination_neutrals} + _parent::WeakRef end function divertors__divertor___power_recombination_neutrals{T}() where T @@ -86393,8 +86393,8 @@ mutable struct divertors__divertor___power_radiated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_radiated} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_radiated} + _parent::WeakRef end function divertors__divertor___power_radiated{T}() where T @@ -86412,8 +86412,8 @@ mutable struct divertors__divertor___power_neutrals{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_neutrals} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_neutrals} + _parent::WeakRef end function divertors__divertor___power_neutrals{T}() where T @@ -86431,8 +86431,8 @@ mutable struct divertors__divertor___power_incident{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_incident} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_incident} + _parent::WeakRef end function divertors__divertor___power_incident{T}() where T @@ -86450,8 +86450,8 @@ mutable struct divertors__divertor___power_currents{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_currents} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_currents} + _parent::WeakRef end function divertors__divertor___power_currents{T}() where T @@ -86469,8 +86469,8 @@ mutable struct divertors__divertor___power_convected{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_convected} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_convected} + _parent::WeakRef end function divertors__divertor___power_convected{T}() where T @@ -86488,8 +86488,8 @@ mutable struct divertors__divertor___power_conducted{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_conducted} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_conducted} + _parent::WeakRef end function divertors__divertor___power_conducted{T}() where T @@ -86507,8 +86507,8 @@ mutable struct divertors__divertor___power_black_body{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___power_black_body} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___power_black_body} + _parent::WeakRef end function divertors__divertor___power_black_body{T}() where T @@ -86526,8 +86526,8 @@ mutable struct divertors__divertor___particle_flux_recycled_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___particle_flux_recycled_total} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___particle_flux_recycled_total} + _parent::WeakRef end function divertors__divertor___particle_flux_recycled_total{T}() where T @@ -86545,8 +86545,8 @@ mutable struct divertors__divertor___current_incident{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor___current_incident} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor___current_incident} + _parent::WeakRef end function divertors__divertor___current_incident{T}() where T @@ -86557,28 +86557,28 @@ end divertors__divertor___current_incident() = divertors__divertor___current_incident{Float64}() mutable struct divertors__divertor{T} <: IDSvectorStaticElement{T} - var"current_incident" :: divertors__divertor___current_incident{T} + var"current_incident"::divertors__divertor___current_incident{T} var"identifier" :: String var"name" :: String - var"particle_flux_recycled_total" :: divertors__divertor___particle_flux_recycled_total{T} - var"power_black_body" :: divertors__divertor___power_black_body{T} - var"power_conducted" :: divertors__divertor___power_conducted{T} - var"power_convected" :: divertors__divertor___power_convected{T} - var"power_currents" :: divertors__divertor___power_currents{T} - var"power_incident" :: divertors__divertor___power_incident{T} - var"power_neutrals" :: divertors__divertor___power_neutrals{T} - var"power_radiated" :: divertors__divertor___power_radiated{T} - var"power_recombination_neutrals" :: divertors__divertor___power_recombination_neutrals{T} - var"power_recombination_plasma" :: divertors__divertor___power_recombination_plasma{T} - var"power_thermal_extracted" :: divertors__divertor___power_thermal_extracted{T} - var"target" :: IDSvector{divertors__divertor___target{T}} - var"wetted_area" :: divertors__divertor___wetted_area{T} + var"particle_flux_recycled_total"::divertors__divertor___particle_flux_recycled_total{T} + var"power_black_body"::divertors__divertor___power_black_body{T} + var"power_conducted"::divertors__divertor___power_conducted{T} + var"power_convected"::divertors__divertor___power_convected{T} + var"power_currents"::divertors__divertor___power_currents{T} + var"power_incident"::divertors__divertor___power_incident{T} + var"power_neutrals"::divertors__divertor___power_neutrals{T} + var"power_radiated"::divertors__divertor___power_radiated{T} + var"power_recombination_neutrals"::divertors__divertor___power_recombination_neutrals{T} + var"power_recombination_plasma"::divertors__divertor___power_recombination_plasma{T} + var"power_thermal_extracted"::divertors__divertor___power_thermal_extracted{T} + var"target"::IDSvector{divertors__divertor___target{T}} + var"wetted_area"::divertors__divertor___wetted_area{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__divertor} - _parent :: WeakRef + _ref::Union{Nothing,divertors__divertor} + _parent::WeakRef end function divertors__divertor{T}() where T @@ -86613,8 +86613,8 @@ mutable struct divertors__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__code__library} - _parent :: WeakRef + _ref::Union{Nothing,divertors__code__library} + _parent::WeakRef end function divertors__code__library{T}() where T @@ -86627,7 +86627,7 @@ divertors__code__library() = divertors__code__library{Float64}() mutable struct divertors__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{divertors__code__library{T}} + var"library"::IDSvector{divertors__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -86637,8 +86637,8 @@ mutable struct divertors__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors__code} - _parent :: WeakRef + _ref::Union{Nothing,divertors__code} + _parent::WeakRef end function divertors__code{T}() where T @@ -86650,17 +86650,17 @@ end divertors__code() = divertors__code{Float64}() mutable struct divertors{T} <: IDStop{T} - var"code" :: divertors__code{T} - var"divertor" :: IDSvector{divertors__divertor{T}} - var"ids_properties" :: divertors__ids_properties{T} - var"midplane" :: divertors__midplane{T} + var"code"::divertors__code{T} + var"divertor"::IDSvector{divertors__divertor{T}} + var"ids_properties"::divertors__ids_properties{T} + var"midplane"::divertors__midplane{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,divertors} - _parent :: WeakRef + _ref::Union{Nothing,divertors} + _parent::WeakRef end function divertors{T}() where T @@ -86683,8 +86683,8 @@ mutable struct distributions__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,distributions__vacuum_toroidal_field} + _parent::WeakRef end function distributions__vacuum_toroidal_field{T}() where T @@ -86703,8 +86703,8 @@ mutable struct distributions__magnetic_axis{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,distributions__magnetic_axis} + _parent::WeakRef end function distributions__magnetic_axis{T}() where T @@ -86722,8 +86722,8 @@ mutable struct distributions__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__version_put} + _parent::WeakRef end function distributions__ids_properties__version_put{T}() where T @@ -86740,8 +86740,8 @@ mutable struct distributions__ids_properties__provenance__node{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__provenance__node} + _parent::WeakRef end function distributions__ids_properties__provenance__node{T}() where T @@ -86752,13 +86752,13 @@ end distributions__ids_properties__provenance__node() = distributions__ids_properties__provenance__node{Float64}() mutable struct distributions__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{distributions__ids_properties__provenance__node{T}} + var"node"::IDSvector{distributions__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__provenance} + _parent::WeakRef end function distributions__ids_properties__provenance{T}() where T @@ -86780,8 +86780,8 @@ mutable struct distributions__ids_properties__plugins__node___readback{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__plugins__node___readback} + _parent::WeakRef end function distributions__ids_properties__plugins__node___readback{T}() where T @@ -86802,8 +86802,8 @@ mutable struct distributions__ids_properties__plugins__node___put_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function distributions__ids_properties__plugins__node___put_operation{T}() where T @@ -86824,8 +86824,8 @@ mutable struct distributions__ids_properties__plugins__node___get_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function distributions__ids_properties__plugins__node___get_operation{T}() where T @@ -86836,16 +86836,16 @@ end distributions__ids_properties__plugins__node___get_operation() = distributions__ids_properties__plugins__node___get_operation{Float64}() mutable struct distributions__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{distributions__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{distributions__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{distributions__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{distributions__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{distributions__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{distributions__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__plugins__node} + _parent::WeakRef end function distributions__ids_properties__plugins__node{T}() where T @@ -86868,8 +86868,8 @@ mutable struct distributions__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function distributions__ids_properties__plugins__infrastructure_put{T}() where T @@ -86889,8 +86889,8 @@ mutable struct distributions__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function distributions__ids_properties__plugins__infrastructure_get{T}() where T @@ -86901,15 +86901,15 @@ end distributions__ids_properties__plugins__infrastructure_get() = distributions__ids_properties__plugins__infrastructure_get{Float64}() mutable struct distributions__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: distributions__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: distributions__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{distributions__ids_properties__plugins__node{T}} + var"infrastructure_get"::distributions__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::distributions__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{distributions__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__plugins} + _parent::WeakRef end function distributions__ids_properties__plugins{T}() where T @@ -86930,8 +86930,8 @@ mutable struct distributions__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties__occurrence_type} + _parent::WeakRef end function distributions__ids_properties__occurrence_type{T}() where T @@ -86947,17 +86947,17 @@ mutable struct distributions__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: distributions__ids_properties__occurrence_type{T} - var"plugins" :: distributions__ids_properties__plugins{T} - var"provenance" :: distributions__ids_properties__provenance{T} + var"occurrence_type"::distributions__ids_properties__occurrence_type{T} + var"plugins"::distributions__ids_properties__plugins{T} + var"provenance"::distributions__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: distributions__ids_properties__version_put{T} + var"version_put"::distributions__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,distributions__ids_properties} + _parent::WeakRef end function distributions__ids_properties{T}() where T @@ -86979,8 +86979,8 @@ mutable struct distributions__distribution___wave___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___wave___type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___wave___type} + _parent::WeakRef end function distributions__distribution___wave___type{T}() where T @@ -86993,13 +86993,13 @@ distributions__distribution___wave___type() = distributions__distribution___wave mutable struct distributions__distribution___wave{T} <: IDSvectorStaticElement{T} var"antenna_name" :: String var"index_in_antenna" :: Int - var"type" :: distributions__distribution___wave___type{T} + var"type"::distributions__distribution___wave___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___wave} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___wave} + _parent::WeakRef end function distributions__distribution___wave{T}() where T @@ -87018,8 +87018,8 @@ mutable struct distributions__distribution___species__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species__type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species__type} + _parent::WeakRef end function distributions__distribution___species__type{T}() where T @@ -87037,8 +87037,8 @@ mutable struct distributions__distribution___species__neutral__state__neutral_ty _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species__neutral__state__neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species__neutral__state__neutral_type} + _parent::WeakRef end function distributions__distribution___species__neutral__state__neutral_type{T}() where T @@ -87051,7 +87051,7 @@ distributions__distribution___species__neutral__state__neutral_type() = distribu mutable struct distributions__distribution___species__neutral__state{T} <: IDS{T} var"electron_configuration" :: String var"label" :: String - var"neutral_type" :: distributions__distribution___species__neutral__state__neutral_type{T} + var"neutral_type"::distributions__distribution___species__neutral__state__neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -87059,8 +87059,8 @@ mutable struct distributions__distribution___species__neutral__state{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species__neutral__state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species__neutral__state} + _parent::WeakRef end function distributions__distribution___species__neutral__state{T}() where T @@ -87081,8 +87081,8 @@ mutable struct distributions__distribution___species__neutral__element{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species__neutral__element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species__neutral__element} + _parent::WeakRef end function distributions__distribution___species__neutral__element{T}() where T @@ -87093,15 +87093,15 @@ end distributions__distribution___species__neutral__element() = distributions__distribution___species__neutral__element{Float64}() mutable struct distributions__distribution___species__neutral{T} <: IDS{T} - var"element" :: IDSvector{distributions__distribution___species__neutral__element{T}} + var"element"::IDSvector{distributions__distribution___species__neutral__element{T}} var"label" :: String - var"state" :: distributions__distribution___species__neutral__state{T} + var"state"::distributions__distribution___species__neutral__state{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species__neutral} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species__neutral} + _parent::WeakRef end function distributions__distribution___species__neutral{T}() where T @@ -87127,8 +87127,8 @@ mutable struct distributions__distribution___species__ion__state{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species__ion__state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species__ion__state} + _parent::WeakRef end function distributions__distribution___species__ion__state{T}() where T @@ -87148,8 +87148,8 @@ mutable struct distributions__distribution___species__ion__element{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species__ion__element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species__ion__element} + _parent::WeakRef end function distributions__distribution___species__ion__element{T}() where T @@ -87160,17 +87160,17 @@ end distributions__distribution___species__ion__element() = distributions__distribution___species__ion__element{Float64}() mutable struct distributions__distribution___species__ion{T} <: IDS{T} - var"element" :: IDSvector{distributions__distribution___species__ion__element{T}} + var"element"::IDSvector{distributions__distribution___species__ion__element{T}} var"label" :: String - var"state" :: distributions__distribution___species__ion__state{T} + var"state"::distributions__distribution___species__ion__state{T} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species__ion} + _parent::WeakRef end function distributions__distribution___species__ion{T}() where T @@ -87183,15 +87183,15 @@ end distributions__distribution___species__ion() = distributions__distribution___species__ion{Float64}() mutable struct distributions__distribution___species{T} <: IDS{T} - var"ion" :: distributions__distribution___species__ion{T} - var"neutral" :: distributions__distribution___species__neutral{T} - var"type" :: distributions__distribution___species__type{T} + var"ion"::distributions__distribution___species__ion{T} + var"neutral"::distributions__distribution___species__neutral{T} + var"type"::distributions__distribution___species__type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___species} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___species} + _parent::WeakRef end function distributions__distribution___species{T}() where T @@ -87226,8 +87226,8 @@ mutable struct distributions__distribution___profiles_2d___trapped__collisions__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions__ion___state} + _parent::WeakRef end function distributions__distribution___profiles_2d___trapped__collisions__ion___state{T}() where T @@ -87247,8 +87247,8 @@ mutable struct distributions__distribution___profiles_2d___trapped__collisions__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions__ion___element} + _parent::WeakRef end function distributions__distribution___profiles_2d___trapped__collisions__ion___element{T}() where T @@ -87259,7 +87259,7 @@ end distributions__distribution___profiles_2d___trapped__collisions__ion___element() = distributions__distribution___profiles_2d___trapped__collisions__ion___element{Float64}() mutable struct distributions__distribution___profiles_2d___trapped__collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___profiles_2d___trapped__collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___profiles_2d___trapped__collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -87267,7 +87267,7 @@ mutable struct distributions__distribution___profiles_2d___trapped__collisions__ var"power_fast_σ" :: Matrix{<:T} var"power_thermal" :: Matrix{<:T} var"power_thermal_σ" :: Matrix{<:T} - var"state" :: IDSvector{distributions__distribution___profiles_2d___trapped__collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___profiles_2d___trapped__collisions__ion___state{T}} var"torque_fast_tor" :: Matrix{<:T} var"torque_fast_tor_σ" :: Matrix{<:T} var"torque_thermal_tor" :: Matrix{<:T} @@ -87278,8 +87278,8 @@ mutable struct distributions__distribution___profiles_2d___trapped__collisions__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions__ion} + _parent::WeakRef end function distributions__distribution___profiles_2d___trapped__collisions__ion{T}() where T @@ -87304,8 +87304,8 @@ mutable struct distributions__distribution___profiles_2d___trapped__collisions__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions__electrons} + _parent::WeakRef end function distributions__distribution___profiles_2d___trapped__collisions__electrons{T}() where T @@ -87316,14 +87316,14 @@ end distributions__distribution___profiles_2d___trapped__collisions__electrons() = distributions__distribution___profiles_2d___trapped__collisions__electrons{Float64}() mutable struct distributions__distribution___profiles_2d___trapped__collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___profiles_2d___trapped__collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___profiles_2d___trapped__collisions__ion{T}} + var"electrons"::distributions__distribution___profiles_2d___trapped__collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___profiles_2d___trapped__collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___trapped__collisions} + _parent::WeakRef end function distributions__distribution___profiles_2d___trapped__collisions{T}() where T @@ -87336,7 +87336,7 @@ end distributions__distribution___profiles_2d___trapped__collisions() = distributions__distribution___profiles_2d___trapped__collisions{Float64}() mutable struct distributions__distribution___profiles_2d___trapped{T} <: IDS{T} - var"collisions" :: distributions__distribution___profiles_2d___trapped__collisions{T} + var"collisions"::distributions__distribution___profiles_2d___trapped__collisions{T} var"current_fast_tor" :: Matrix{<:T} var"current_fast_tor_σ" :: Matrix{<:T} var"current_tor" :: Matrix{<:T} @@ -87357,8 +87357,8 @@ mutable struct distributions__distribution___profiles_2d___trapped{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___trapped} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___trapped} + _parent::WeakRef end function distributions__distribution___profiles_2d___trapped{T}() where T @@ -87377,8 +87377,8 @@ mutable struct distributions__distribution___profiles_2d___grid__type{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___grid__type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___grid__type} + _parent::WeakRef end function distributions__distribution___profiles_2d___grid__type{T}() where T @@ -87403,7 +87403,7 @@ mutable struct distributions__distribution___profiles_2d___grid{T} <: IDS{T} var"theta_geometric_σ" :: Vector{<:T} var"theta_straight" :: Vector{<:T} var"theta_straight_σ" :: Vector{<:T} - var"type" :: distributions__distribution___profiles_2d___grid__type{T} + var"type"::distributions__distribution___profiles_2d___grid__type{T} var"volume" :: Vector{<:T} var"volume_σ" :: Vector{<:T} var"z" :: Vector{<:T} @@ -87412,8 +87412,8 @@ mutable struct distributions__distribution___profiles_2d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___grid} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___grid} + _parent::WeakRef end function distributions__distribution___profiles_2d___grid{T}() where T @@ -87446,8 +87446,8 @@ mutable struct distributions__distribution___profiles_2d___counter_passing__coll _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions__ion___state} + _parent::WeakRef end function distributions__distribution___profiles_2d___counter_passing__collisions__ion___state{T}() where T @@ -87467,8 +87467,8 @@ mutable struct distributions__distribution___profiles_2d___counter_passing__coll _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions__ion___element} + _parent::WeakRef end function distributions__distribution___profiles_2d___counter_passing__collisions__ion___element{T}() where T @@ -87479,7 +87479,7 @@ end distributions__distribution___profiles_2d___counter_passing__collisions__ion___element() = distributions__distribution___profiles_2d___counter_passing__collisions__ion___element{Float64}() mutable struct distributions__distribution___profiles_2d___counter_passing__collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___profiles_2d___counter_passing__collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___profiles_2d___counter_passing__collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -87487,7 +87487,7 @@ mutable struct distributions__distribution___profiles_2d___counter_passing__coll var"power_fast_σ" :: Matrix{<:T} var"power_thermal" :: Matrix{<:T} var"power_thermal_σ" :: Matrix{<:T} - var"state" :: IDSvector{distributions__distribution___profiles_2d___counter_passing__collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___profiles_2d___counter_passing__collisions__ion___state{T}} var"torque_fast_tor" :: Matrix{<:T} var"torque_fast_tor_σ" :: Matrix{<:T} var"torque_thermal_tor" :: Matrix{<:T} @@ -87498,8 +87498,8 @@ mutable struct distributions__distribution___profiles_2d___counter_passing__coll _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions__ion} + _parent::WeakRef end function distributions__distribution___profiles_2d___counter_passing__collisions__ion{T}() where T @@ -87524,8 +87524,8 @@ mutable struct distributions__distribution___profiles_2d___counter_passing__coll _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions__electrons} + _parent::WeakRef end function distributions__distribution___profiles_2d___counter_passing__collisions__electrons{T}() where T @@ -87536,14 +87536,14 @@ end distributions__distribution___profiles_2d___counter_passing__collisions__electrons() = distributions__distribution___profiles_2d___counter_passing__collisions__electrons{Float64}() mutable struct distributions__distribution___profiles_2d___counter_passing__collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___profiles_2d___counter_passing__collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___profiles_2d___counter_passing__collisions__ion{T}} + var"electrons"::distributions__distribution___profiles_2d___counter_passing__collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___profiles_2d___counter_passing__collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___counter_passing__collisions} + _parent::WeakRef end function distributions__distribution___profiles_2d___counter_passing__collisions{T}() where T @@ -87556,7 +87556,7 @@ end distributions__distribution___profiles_2d___counter_passing__collisions() = distributions__distribution___profiles_2d___counter_passing__collisions{Float64}() mutable struct distributions__distribution___profiles_2d___counter_passing{T} <: IDS{T} - var"collisions" :: distributions__distribution___profiles_2d___counter_passing__collisions{T} + var"collisions"::distributions__distribution___profiles_2d___counter_passing__collisions{T} var"current_fast_tor" :: Matrix{<:T} var"current_fast_tor_σ" :: Matrix{<:T} var"current_tor" :: Matrix{<:T} @@ -87577,8 +87577,8 @@ mutable struct distributions__distribution___profiles_2d___counter_passing{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___counter_passing} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___counter_passing} + _parent::WeakRef end function distributions__distribution___profiles_2d___counter_passing{T}() where T @@ -87611,8 +87611,8 @@ mutable struct distributions__distribution___profiles_2d___collisions__ion___sta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___collisions__ion___state} + _parent::WeakRef end function distributions__distribution___profiles_2d___collisions__ion___state{T}() where T @@ -87632,8 +87632,8 @@ mutable struct distributions__distribution___profiles_2d___collisions__ion___ele _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___collisions__ion___element} + _parent::WeakRef end function distributions__distribution___profiles_2d___collisions__ion___element{T}() where T @@ -87644,7 +87644,7 @@ end distributions__distribution___profiles_2d___collisions__ion___element() = distributions__distribution___profiles_2d___collisions__ion___element{Float64}() mutable struct distributions__distribution___profiles_2d___collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___profiles_2d___collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___profiles_2d___collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -87652,7 +87652,7 @@ mutable struct distributions__distribution___profiles_2d___collisions__ion{T} <: var"power_fast_σ" :: Matrix{<:T} var"power_thermal" :: Matrix{<:T} var"power_thermal_σ" :: Matrix{<:T} - var"state" :: IDSvector{distributions__distribution___profiles_2d___collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___profiles_2d___collisions__ion___state{T}} var"torque_fast_tor" :: Matrix{<:T} var"torque_fast_tor_σ" :: Matrix{<:T} var"torque_thermal_tor" :: Matrix{<:T} @@ -87663,8 +87663,8 @@ mutable struct distributions__distribution___profiles_2d___collisions__ion{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___collisions__ion} + _parent::WeakRef end function distributions__distribution___profiles_2d___collisions__ion{T}() where T @@ -87689,8 +87689,8 @@ mutable struct distributions__distribution___profiles_2d___collisions__electrons _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___collisions__electrons} + _parent::WeakRef end function distributions__distribution___profiles_2d___collisions__electrons{T}() where T @@ -87701,14 +87701,14 @@ end distributions__distribution___profiles_2d___collisions__electrons() = distributions__distribution___profiles_2d___collisions__electrons{Float64}() mutable struct distributions__distribution___profiles_2d___collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___profiles_2d___collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___profiles_2d___collisions__ion{T}} + var"electrons"::distributions__distribution___profiles_2d___collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___profiles_2d___collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___collisions} + _parent::WeakRef end function distributions__distribution___profiles_2d___collisions{T}() where T @@ -87742,8 +87742,8 @@ mutable struct distributions__distribution___profiles_2d___co_passing__collision _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions__ion___state} + _parent::WeakRef end function distributions__distribution___profiles_2d___co_passing__collisions__ion___state{T}() where T @@ -87763,8 +87763,8 @@ mutable struct distributions__distribution___profiles_2d___co_passing__collision _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions__ion___element} + _parent::WeakRef end function distributions__distribution___profiles_2d___co_passing__collisions__ion___element{T}() where T @@ -87775,7 +87775,7 @@ end distributions__distribution___profiles_2d___co_passing__collisions__ion___element() = distributions__distribution___profiles_2d___co_passing__collisions__ion___element{Float64}() mutable struct distributions__distribution___profiles_2d___co_passing__collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___profiles_2d___co_passing__collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___profiles_2d___co_passing__collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -87783,7 +87783,7 @@ mutable struct distributions__distribution___profiles_2d___co_passing__collision var"power_fast_σ" :: Matrix{<:T} var"power_thermal" :: Matrix{<:T} var"power_thermal_σ" :: Matrix{<:T} - var"state" :: IDSvector{distributions__distribution___profiles_2d___co_passing__collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___profiles_2d___co_passing__collisions__ion___state{T}} var"torque_fast_tor" :: Matrix{<:T} var"torque_fast_tor_σ" :: Matrix{<:T} var"torque_thermal_tor" :: Matrix{<:T} @@ -87794,8 +87794,8 @@ mutable struct distributions__distribution___profiles_2d___co_passing__collision _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions__ion} + _parent::WeakRef end function distributions__distribution___profiles_2d___co_passing__collisions__ion{T}() where T @@ -87820,8 +87820,8 @@ mutable struct distributions__distribution___profiles_2d___co_passing__collision _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions__electrons} + _parent::WeakRef end function distributions__distribution___profiles_2d___co_passing__collisions__electrons{T}() where T @@ -87832,14 +87832,14 @@ end distributions__distribution___profiles_2d___co_passing__collisions__electrons() = distributions__distribution___profiles_2d___co_passing__collisions__electrons{Float64}() mutable struct distributions__distribution___profiles_2d___co_passing__collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___profiles_2d___co_passing__collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___profiles_2d___co_passing__collisions__ion{T}} + var"electrons"::distributions__distribution___profiles_2d___co_passing__collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___profiles_2d___co_passing__collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___co_passing__collisions} + _parent::WeakRef end function distributions__distribution___profiles_2d___co_passing__collisions{T}() where T @@ -87852,7 +87852,7 @@ end distributions__distribution___profiles_2d___co_passing__collisions() = distributions__distribution___profiles_2d___co_passing__collisions{Float64}() mutable struct distributions__distribution___profiles_2d___co_passing{T} <: IDS{T} - var"collisions" :: distributions__distribution___profiles_2d___co_passing__collisions{T} + var"collisions"::distributions__distribution___profiles_2d___co_passing__collisions{T} var"current_fast_tor" :: Matrix{<:T} var"current_fast_tor_σ" :: Matrix{<:T} var"current_tor" :: Matrix{<:T} @@ -87873,8 +87873,8 @@ mutable struct distributions__distribution___profiles_2d___co_passing{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d___co_passing} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d___co_passing} + _parent::WeakRef end function distributions__distribution___profiles_2d___co_passing{T}() where T @@ -87886,9 +87886,9 @@ end distributions__distribution___profiles_2d___co_passing() = distributions__distribution___profiles_2d___co_passing{Float64}() mutable struct distributions__distribution___profiles_2d{T} <: IDSvectorTimeElement{T} - var"co_passing" :: distributions__distribution___profiles_2d___co_passing{T} - var"collisions" :: distributions__distribution___profiles_2d___collisions{T} - var"counter_passing" :: distributions__distribution___profiles_2d___counter_passing{T} + var"co_passing"::distributions__distribution___profiles_2d___co_passing{T} + var"collisions"::distributions__distribution___profiles_2d___collisions{T} + var"counter_passing"::distributions__distribution___profiles_2d___counter_passing{T} var"current_fast_tor" :: Matrix{<:T} var"current_fast_tor_σ" :: Matrix{<:T} var"current_tor" :: Matrix{<:T} @@ -87897,7 +87897,7 @@ mutable struct distributions__distribution___profiles_2d{T} <: IDSvectorTimeElem var"density_σ" :: Matrix{<:T} var"density_fast" :: Matrix{<:T} var"density_fast_σ" :: Matrix{<:T} - var"grid" :: distributions__distribution___profiles_2d___grid{T} + var"grid"::distributions__distribution___profiles_2d___grid{T} var"pressure" :: Matrix{<:T} var"pressure_σ" :: Matrix{<:T} var"pressure_fast" :: Matrix{<:T} @@ -87907,13 +87907,13 @@ mutable struct distributions__distribution___profiles_2d{T} <: IDSvectorTimeElem var"time" :: Float64 var"torque_tor_j_radial" :: Matrix{<:T} var"torque_tor_j_radial_σ" :: Matrix{<:T} - var"trapped" :: distributions__distribution___profiles_2d___trapped{T} + var"trapped"::distributions__distribution___profiles_2d___trapped{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_2d} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_2d} + _parent::WeakRef end function distributions__distribution___profiles_2d{T}() where T @@ -87936,8 +87936,8 @@ mutable struct distributions__distribution___profiles_1d___trapped__source___ide _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped__source___identifier__type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped__source___identifier__type} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped__source___identifier__type{T}() where T @@ -87949,14 +87949,14 @@ distributions__distribution___profiles_1d___trapped__source___identifier__type() mutable struct distributions__distribution___profiles_1d___trapped__source___identifier{T} <: IDS{T} var"process_index" :: Int - var"type" :: distributions__distribution___profiles_1d___trapped__source___identifier__type{T} + var"type"::distributions__distribution___profiles_1d___trapped__source___identifier__type{T} var"wave_index" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped__source___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped__source___identifier} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped__source___identifier{T}() where T @@ -87970,7 +87970,7 @@ distributions__distribution___profiles_1d___trapped__source___identifier() = dis mutable struct distributions__distribution___profiles_1d___trapped__source{T} <: IDSvectorStaticElement{T} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"identifier" :: distributions__distribution___profiles_1d___trapped__source___identifier{T} + var"identifier"::distributions__distribution___profiles_1d___trapped__source___identifier{T} var"momentum_tor" :: Vector{<:T} var"momentum_tor_σ" :: Vector{<:T} var"particles" :: Vector{<:T} @@ -87979,8 +87979,8 @@ mutable struct distributions__distribution___profiles_1d___trapped__source{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped__source} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped__source} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped__source{T}() where T @@ -88013,8 +88013,8 @@ mutable struct distributions__distribution___profiles_1d___trapped__collisions__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions__ion___state} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped__collisions__ion___state{T}() where T @@ -88034,8 +88034,8 @@ mutable struct distributions__distribution___profiles_1d___trapped__collisions__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions__ion___element} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped__collisions__ion___element{T}() where T @@ -88046,7 +88046,7 @@ end distributions__distribution___profiles_1d___trapped__collisions__ion___element() = distributions__distribution___profiles_1d___trapped__collisions__ion___element{Float64}() mutable struct distributions__distribution___profiles_1d___trapped__collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___profiles_1d___trapped__collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___profiles_1d___trapped__collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -88054,7 +88054,7 @@ mutable struct distributions__distribution___profiles_1d___trapped__collisions__ var"power_fast_σ" :: Vector{<:T} var"power_thermal" :: Vector{<:T} var"power_thermal_σ" :: Vector{<:T} - var"state" :: IDSvector{distributions__distribution___profiles_1d___trapped__collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___profiles_1d___trapped__collisions__ion___state{T}} var"torque_fast_tor" :: Vector{<:T} var"torque_fast_tor_σ" :: Vector{<:T} var"torque_thermal_tor" :: Vector{<:T} @@ -88065,8 +88065,8 @@ mutable struct distributions__distribution___profiles_1d___trapped__collisions__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions__ion} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped__collisions__ion{T}() where T @@ -88091,8 +88091,8 @@ mutable struct distributions__distribution___profiles_1d___trapped__collisions__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions__electrons} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped__collisions__electrons{T}() where T @@ -88103,14 +88103,14 @@ end distributions__distribution___profiles_1d___trapped__collisions__electrons() = distributions__distribution___profiles_1d___trapped__collisions__electrons{Float64}() mutable struct distributions__distribution___profiles_1d___trapped__collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___profiles_1d___trapped__collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___profiles_1d___trapped__collisions__ion{T}} + var"electrons"::distributions__distribution___profiles_1d___trapped__collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___profiles_1d___trapped__collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped__collisions} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped__collisions{T}() where T @@ -88123,7 +88123,7 @@ end distributions__distribution___profiles_1d___trapped__collisions() = distributions__distribution___profiles_1d___trapped__collisions{Float64}() mutable struct distributions__distribution___profiles_1d___trapped{T} <: IDS{T} - var"collisions" :: distributions__distribution___profiles_1d___trapped__collisions{T} + var"collisions"::distributions__distribution___profiles_1d___trapped__collisions{T} var"current_fast_tor" :: Vector{<:T} var"current_fast_tor_σ" :: Vector{<:T} var"current_tor" :: Vector{<:T} @@ -88138,15 +88138,15 @@ mutable struct distributions__distribution___profiles_1d___trapped{T} <: IDS{T} var"pressure_fast_σ" :: Vector{<:T} var"pressure_fast_parallel" :: Vector{<:T} var"pressure_fast_parallel_σ" :: Vector{<:T} - var"source" :: IDSvector{distributions__distribution___profiles_1d___trapped__source{T}} + var"source"::IDSvector{distributions__distribution___profiles_1d___trapped__source{T}} var"torque_tor_j_radial" :: Vector{<:T} var"torque_tor_j_radial_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___trapped} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___trapped} + _parent::WeakRef end function distributions__distribution___profiles_1d___trapped{T}() where T @@ -88169,8 +88169,8 @@ mutable struct distributions__distribution___profiles_1d___thermalisation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___thermalisation} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___thermalisation} + _parent::WeakRef end function distributions__distribution___profiles_1d___thermalisation{T}() where T @@ -88188,8 +88188,8 @@ mutable struct distributions__distribution___profiles_1d___source___identifier__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___source___identifier__type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___source___identifier__type} + _parent::WeakRef end function distributions__distribution___profiles_1d___source___identifier__type{T}() where T @@ -88201,14 +88201,14 @@ distributions__distribution___profiles_1d___source___identifier__type() = distri mutable struct distributions__distribution___profiles_1d___source___identifier{T} <: IDS{T} var"process_index" :: Int - var"type" :: distributions__distribution___profiles_1d___source___identifier__type{T} + var"type"::distributions__distribution___profiles_1d___source___identifier__type{T} var"wave_index" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___source___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___source___identifier} + _parent::WeakRef end function distributions__distribution___profiles_1d___source___identifier{T}() where T @@ -88222,7 +88222,7 @@ distributions__distribution___profiles_1d___source___identifier() = distribution mutable struct distributions__distribution___profiles_1d___source{T} <: IDSvectorStaticElement{T} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"identifier" :: distributions__distribution___profiles_1d___source___identifier{T} + var"identifier"::distributions__distribution___profiles_1d___source___identifier{T} var"momentum_tor" :: Vector{<:T} var"momentum_tor_σ" :: Vector{<:T} var"particles" :: Vector{<:T} @@ -88231,8 +88231,8 @@ mutable struct distributions__distribution___profiles_1d___source{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___source} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___source} + _parent::WeakRef end function distributions__distribution___profiles_1d___source{T}() where T @@ -88266,8 +88266,8 @@ mutable struct distributions__distribution___profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___grid} + _parent::WeakRef end function distributions__distribution___profiles_1d___grid{T}() where T @@ -88285,8 +88285,8 @@ mutable struct distributions__distribution___profiles_1d___fast_filter__method{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___fast_filter__method} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___fast_filter__method} + _parent::WeakRef end function distributions__distribution___profiles_1d___fast_filter__method{T}() where T @@ -88299,13 +88299,13 @@ distributions__distribution___profiles_1d___fast_filter__method() = distribution mutable struct distributions__distribution___profiles_1d___fast_filter{T} <: IDS{T} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"method" :: distributions__distribution___profiles_1d___fast_filter__method{T} + var"method"::distributions__distribution___profiles_1d___fast_filter__method{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___fast_filter} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___fast_filter} + _parent::WeakRef end function distributions__distribution___profiles_1d___fast_filter{T}() where T @@ -88324,8 +88324,8 @@ mutable struct distributions__distribution___profiles_1d___counter_passing__sour _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing__source___identifier__type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing__source___identifier__type} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing__source___identifier__type{T}() where T @@ -88337,14 +88337,14 @@ distributions__distribution___profiles_1d___counter_passing__source___identifier mutable struct distributions__distribution___profiles_1d___counter_passing__source___identifier{T} <: IDS{T} var"process_index" :: Int - var"type" :: distributions__distribution___profiles_1d___counter_passing__source___identifier__type{T} + var"type"::distributions__distribution___profiles_1d___counter_passing__source___identifier__type{T} var"wave_index" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing__source___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing__source___identifier} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing__source___identifier{T}() where T @@ -88358,7 +88358,7 @@ distributions__distribution___profiles_1d___counter_passing__source___identifier mutable struct distributions__distribution___profiles_1d___counter_passing__source{T} <: IDSvectorStaticElement{T} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"identifier" :: distributions__distribution___profiles_1d___counter_passing__source___identifier{T} + var"identifier"::distributions__distribution___profiles_1d___counter_passing__source___identifier{T} var"momentum_tor" :: Vector{<:T} var"momentum_tor_σ" :: Vector{<:T} var"particles" :: Vector{<:T} @@ -88367,8 +88367,8 @@ mutable struct distributions__distribution___profiles_1d___counter_passing__sour _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing__source} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing__source} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing__source{T}() where T @@ -88401,8 +88401,8 @@ mutable struct distributions__distribution___profiles_1d___counter_passing__coll _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions__ion___state} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing__collisions__ion___state{T}() where T @@ -88422,8 +88422,8 @@ mutable struct distributions__distribution___profiles_1d___counter_passing__coll _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions__ion___element} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing__collisions__ion___element{T}() where T @@ -88434,7 +88434,7 @@ end distributions__distribution___profiles_1d___counter_passing__collisions__ion___element() = distributions__distribution___profiles_1d___counter_passing__collisions__ion___element{Float64}() mutable struct distributions__distribution___profiles_1d___counter_passing__collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___profiles_1d___counter_passing__collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___profiles_1d___counter_passing__collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -88442,7 +88442,7 @@ mutable struct distributions__distribution___profiles_1d___counter_passing__coll var"power_fast_σ" :: Vector{<:T} var"power_thermal" :: Vector{<:T} var"power_thermal_σ" :: Vector{<:T} - var"state" :: IDSvector{distributions__distribution___profiles_1d___counter_passing__collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___profiles_1d___counter_passing__collisions__ion___state{T}} var"torque_fast_tor" :: Vector{<:T} var"torque_fast_tor_σ" :: Vector{<:T} var"torque_thermal_tor" :: Vector{<:T} @@ -88453,8 +88453,8 @@ mutable struct distributions__distribution___profiles_1d___counter_passing__coll _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions__ion} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing__collisions__ion{T}() where T @@ -88479,8 +88479,8 @@ mutable struct distributions__distribution___profiles_1d___counter_passing__coll _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions__electrons} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing__collisions__electrons{T}() where T @@ -88491,14 +88491,14 @@ end distributions__distribution___profiles_1d___counter_passing__collisions__electrons() = distributions__distribution___profiles_1d___counter_passing__collisions__electrons{Float64}() mutable struct distributions__distribution___profiles_1d___counter_passing__collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___profiles_1d___counter_passing__collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___profiles_1d___counter_passing__collisions__ion{T}} + var"electrons"::distributions__distribution___profiles_1d___counter_passing__collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___profiles_1d___counter_passing__collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing__collisions} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing__collisions{T}() where T @@ -88511,7 +88511,7 @@ end distributions__distribution___profiles_1d___counter_passing__collisions() = distributions__distribution___profiles_1d___counter_passing__collisions{Float64}() mutable struct distributions__distribution___profiles_1d___counter_passing{T} <: IDS{T} - var"collisions" :: distributions__distribution___profiles_1d___counter_passing__collisions{T} + var"collisions"::distributions__distribution___profiles_1d___counter_passing__collisions{T} var"current_fast_tor" :: Vector{<:T} var"current_fast_tor_σ" :: Vector{<:T} var"current_tor" :: Vector{<:T} @@ -88526,15 +88526,15 @@ mutable struct distributions__distribution___profiles_1d___counter_passing{T} <: var"pressure_fast_σ" :: Vector{<:T} var"pressure_fast_parallel" :: Vector{<:T} var"pressure_fast_parallel_σ" :: Vector{<:T} - var"source" :: IDSvector{distributions__distribution___profiles_1d___counter_passing__source{T}} + var"source"::IDSvector{distributions__distribution___profiles_1d___counter_passing__source{T}} var"torque_tor_j_radial" :: Vector{<:T} var"torque_tor_j_radial_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___counter_passing} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___counter_passing} + _parent::WeakRef end function distributions__distribution___profiles_1d___counter_passing{T}() where T @@ -88568,8 +88568,8 @@ mutable struct distributions__distribution___profiles_1d___collisions__ion___sta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___collisions__ion___state} + _parent::WeakRef end function distributions__distribution___profiles_1d___collisions__ion___state{T}() where T @@ -88589,8 +88589,8 @@ mutable struct distributions__distribution___profiles_1d___collisions__ion___ele _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___collisions__ion___element} + _parent::WeakRef end function distributions__distribution___profiles_1d___collisions__ion___element{T}() where T @@ -88601,7 +88601,7 @@ end distributions__distribution___profiles_1d___collisions__ion___element() = distributions__distribution___profiles_1d___collisions__ion___element{Float64}() mutable struct distributions__distribution___profiles_1d___collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___profiles_1d___collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___profiles_1d___collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -88609,7 +88609,7 @@ mutable struct distributions__distribution___profiles_1d___collisions__ion{T} <: var"power_fast_σ" :: Vector{<:T} var"power_thermal" :: Vector{<:T} var"power_thermal_σ" :: Vector{<:T} - var"state" :: IDSvector{distributions__distribution___profiles_1d___collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___profiles_1d___collisions__ion___state{T}} var"torque_fast_tor" :: Vector{<:T} var"torque_fast_tor_σ" :: Vector{<:T} var"torque_thermal_tor" :: Vector{<:T} @@ -88620,8 +88620,8 @@ mutable struct distributions__distribution___profiles_1d___collisions__ion{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___collisions__ion} + _parent::WeakRef end function distributions__distribution___profiles_1d___collisions__ion{T}() where T @@ -88646,8 +88646,8 @@ mutable struct distributions__distribution___profiles_1d___collisions__electrons _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___collisions__electrons} + _parent::WeakRef end function distributions__distribution___profiles_1d___collisions__electrons{T}() where T @@ -88658,14 +88658,14 @@ end distributions__distribution___profiles_1d___collisions__electrons() = distributions__distribution___profiles_1d___collisions__electrons{Float64}() mutable struct distributions__distribution___profiles_1d___collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___profiles_1d___collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___profiles_1d___collisions__ion{T}} + var"electrons"::distributions__distribution___profiles_1d___collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___profiles_1d___collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___collisions} + _parent::WeakRef end function distributions__distribution___profiles_1d___collisions{T}() where T @@ -88685,8 +88685,8 @@ mutable struct distributions__distribution___profiles_1d___co_passing__source___ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing__source___identifier__type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing__source___identifier__type} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing__source___identifier__type{T}() where T @@ -88698,14 +88698,14 @@ distributions__distribution___profiles_1d___co_passing__source___identifier__typ mutable struct distributions__distribution___profiles_1d___co_passing__source___identifier{T} <: IDS{T} var"process_index" :: Int - var"type" :: distributions__distribution___profiles_1d___co_passing__source___identifier__type{T} + var"type"::distributions__distribution___profiles_1d___co_passing__source___identifier__type{T} var"wave_index" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing__source___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing__source___identifier} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing__source___identifier{T}() where T @@ -88719,7 +88719,7 @@ distributions__distribution___profiles_1d___co_passing__source___identifier() = mutable struct distributions__distribution___profiles_1d___co_passing__source{T} <: IDSvectorStaticElement{T} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"identifier" :: distributions__distribution___profiles_1d___co_passing__source___identifier{T} + var"identifier"::distributions__distribution___profiles_1d___co_passing__source___identifier{T} var"momentum_tor" :: Vector{<:T} var"momentum_tor_σ" :: Vector{<:T} var"particles" :: Vector{<:T} @@ -88728,8 +88728,8 @@ mutable struct distributions__distribution___profiles_1d___co_passing__source{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing__source} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing__source} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing__source{T}() where T @@ -88762,8 +88762,8 @@ mutable struct distributions__distribution___profiles_1d___co_passing__collision _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions__ion___state} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing__collisions__ion___state{T}() where T @@ -88783,8 +88783,8 @@ mutable struct distributions__distribution___profiles_1d___co_passing__collision _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions__ion___element} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing__collisions__ion___element{T}() where T @@ -88795,7 +88795,7 @@ end distributions__distribution___profiles_1d___co_passing__collisions__ion___element() = distributions__distribution___profiles_1d___co_passing__collisions__ion___element{Float64}() mutable struct distributions__distribution___profiles_1d___co_passing__collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___profiles_1d___co_passing__collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___profiles_1d___co_passing__collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -88803,7 +88803,7 @@ mutable struct distributions__distribution___profiles_1d___co_passing__collision var"power_fast_σ" :: Vector{<:T} var"power_thermal" :: Vector{<:T} var"power_thermal_σ" :: Vector{<:T} - var"state" :: IDSvector{distributions__distribution___profiles_1d___co_passing__collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___profiles_1d___co_passing__collisions__ion___state{T}} var"torque_fast_tor" :: Vector{<:T} var"torque_fast_tor_σ" :: Vector{<:T} var"torque_thermal_tor" :: Vector{<:T} @@ -88814,8 +88814,8 @@ mutable struct distributions__distribution___profiles_1d___co_passing__collision _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions__ion} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing__collisions__ion{T}() where T @@ -88840,8 +88840,8 @@ mutable struct distributions__distribution___profiles_1d___co_passing__collision _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions__electrons} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing__collisions__electrons{T}() where T @@ -88852,14 +88852,14 @@ end distributions__distribution___profiles_1d___co_passing__collisions__electrons() = distributions__distribution___profiles_1d___co_passing__collisions__electrons{Float64}() mutable struct distributions__distribution___profiles_1d___co_passing__collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___profiles_1d___co_passing__collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___profiles_1d___co_passing__collisions__ion{T}} + var"electrons"::distributions__distribution___profiles_1d___co_passing__collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___profiles_1d___co_passing__collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing__collisions} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing__collisions{T}() where T @@ -88872,7 +88872,7 @@ end distributions__distribution___profiles_1d___co_passing__collisions() = distributions__distribution___profiles_1d___co_passing__collisions{Float64}() mutable struct distributions__distribution___profiles_1d___co_passing{T} <: IDS{T} - var"collisions" :: distributions__distribution___profiles_1d___co_passing__collisions{T} + var"collisions"::distributions__distribution___profiles_1d___co_passing__collisions{T} var"current_fast_tor" :: Vector{<:T} var"current_fast_tor_σ" :: Vector{<:T} var"current_tor" :: Vector{<:T} @@ -88887,15 +88887,15 @@ mutable struct distributions__distribution___profiles_1d___co_passing{T} <: IDS{ var"pressure_fast_σ" :: Vector{<:T} var"pressure_fast_parallel" :: Vector{<:T} var"pressure_fast_parallel_σ" :: Vector{<:T} - var"source" :: IDSvector{distributions__distribution___profiles_1d___co_passing__source{T}} + var"source"::IDSvector{distributions__distribution___profiles_1d___co_passing__source{T}} var"torque_tor_j_radial" :: Vector{<:T} var"torque_tor_j_radial_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d___co_passing} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d___co_passing} + _parent::WeakRef end function distributions__distribution___profiles_1d___co_passing{T}() where T @@ -88908,9 +88908,9 @@ end distributions__distribution___profiles_1d___co_passing() = distributions__distribution___profiles_1d___co_passing{Float64}() mutable struct distributions__distribution___profiles_1d{T} <: IDSvectorTimeElement{T} - var"co_passing" :: distributions__distribution___profiles_1d___co_passing{T} - var"collisions" :: distributions__distribution___profiles_1d___collisions{T} - var"counter_passing" :: distributions__distribution___profiles_1d___counter_passing{T} + var"co_passing"::distributions__distribution___profiles_1d___co_passing{T} + var"collisions"::distributions__distribution___profiles_1d___collisions{T} + var"counter_passing"::distributions__distribution___profiles_1d___counter_passing{T} var"current_fast_tor" :: Vector{<:T} var"current_fast_tor_σ" :: Vector{<:T} var"current_tor" :: Vector{<:T} @@ -88919,26 +88919,26 @@ mutable struct distributions__distribution___profiles_1d{T} <: IDSvectorTimeElem var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"fast_filter" :: distributions__distribution___profiles_1d___fast_filter{T} - var"grid" :: distributions__distribution___profiles_1d___grid{T} + var"fast_filter"::distributions__distribution___profiles_1d___fast_filter{T} + var"grid"::distributions__distribution___profiles_1d___grid{T} var"pressure" :: Vector{<:T} var"pressure_σ" :: Vector{<:T} var"pressure_fast" :: Vector{<:T} var"pressure_fast_σ" :: Vector{<:T} var"pressure_fast_parallel" :: Vector{<:T} var"pressure_fast_parallel_σ" :: Vector{<:T} - var"source" :: IDSvector{distributions__distribution___profiles_1d___source{T}} - var"thermalisation" :: distributions__distribution___profiles_1d___thermalisation{T} + var"source"::IDSvector{distributions__distribution___profiles_1d___source{T}} + var"thermalisation"::distributions__distribution___profiles_1d___thermalisation{T} var"time" :: Float64 var"torque_tor_j_radial" :: Vector{<:T} var"torque_tor_j_radial_σ" :: Vector{<:T} - var"trapped" :: distributions__distribution___profiles_1d___trapped{T} + var"trapped"::distributions__distribution___profiles_1d___trapped{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___profiles_1d} + _parent::WeakRef end function distributions__distribution___profiles_1d{T}() where T @@ -88964,8 +88964,8 @@ mutable struct distributions__distribution___process___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___process___type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___process___type} + _parent::WeakRef end function distributions__distribution___process___type{T}() where T @@ -88983,8 +88983,8 @@ mutable struct distributions__distribution___process___reactant_energy{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___process___reactant_energy} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___process___reactant_energy} + _parent::WeakRef end function distributions__distribution___process___reactant_energy{T}() where T @@ -89002,8 +89002,8 @@ mutable struct distributions__distribution___process___nbi_energy{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___process___nbi_energy} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___process___nbi_energy} + _parent::WeakRef end function distributions__distribution___process___nbi_energy{T}() where T @@ -89015,16 +89015,16 @@ distributions__distribution___process___nbi_energy() = distributions__distributi mutable struct distributions__distribution___process{T} <: IDSvectorStaticElement{T} var"nbi_beamlets_group" :: Int - var"nbi_energy" :: distributions__distribution___process___nbi_energy{T} + var"nbi_energy"::distributions__distribution___process___nbi_energy{T} var"nbi_unit" :: Int - var"reactant_energy" :: distributions__distribution___process___reactant_energy{T} - var"type" :: distributions__distribution___process___type{T} + var"reactant_energy"::distributions__distribution___process___reactant_energy{T} + var"type"::distributions__distribution___process___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___process} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___process} + _parent::WeakRef end function distributions__distribution___process{T}() where T @@ -89046,8 +89046,8 @@ mutable struct distributions__distribution___markers___orbit_integrals_instant{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___markers___orbit_integrals_instant} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___markers___orbit_integrals_instant} + _parent::WeakRef end function distributions__distribution___markers___orbit_integrals_instant{T}() where T @@ -89067,8 +89067,8 @@ mutable struct distributions__distribution___markers___orbit_integrals{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___markers___orbit_integrals} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___markers___orbit_integrals} + _parent::WeakRef end function distributions__distribution___markers___orbit_integrals{T}() where T @@ -89086,8 +89086,8 @@ mutable struct distributions__distribution___markers___coordinate_identifier{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___markers___coordinate_identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___markers___coordinate_identifier} + _parent::WeakRef end function distributions__distribution___markers___coordinate_identifier{T}() where T @@ -89098,9 +89098,9 @@ end distributions__distribution___markers___coordinate_identifier() = distributions__distribution___markers___coordinate_identifier{Float64}() mutable struct distributions__distribution___markers{T} <: IDSvectorTimeElement{T} - var"coordinate_identifier" :: IDSvector{distributions__distribution___markers___coordinate_identifier{T}} - var"orbit_integrals" :: distributions__distribution___markers___orbit_integrals{T} - var"orbit_integrals_instant" :: distributions__distribution___markers___orbit_integrals_instant{T} + var"coordinate_identifier"::IDSvector{distributions__distribution___markers___coordinate_identifier{T}} + var"orbit_integrals"::distributions__distribution___markers___orbit_integrals{T} + var"orbit_integrals_instant"::distributions__distribution___markers___orbit_integrals_instant{T} var"positions" :: Matrix{<:T} var"positions_σ" :: Matrix{<:T} var"time" :: Float64 @@ -89111,8 +89111,8 @@ mutable struct distributions__distribution___markers{T} <: IDSvectorTimeElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___markers} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___markers} + _parent::WeakRef end function distributions__distribution___markers{T}() where T @@ -89136,8 +89136,8 @@ mutable struct distributions__distribution___global_quantities___thermalisation{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___thermalisation} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___thermalisation} + _parent::WeakRef end function distributions__distribution___global_quantities___thermalisation{T}() where T @@ -89155,8 +89155,8 @@ mutable struct distributions__distribution___global_quantities___source___identi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___source___identifier__type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___source___identifier__type} + _parent::WeakRef end function distributions__distribution___global_quantities___source___identifier__type{T}() where T @@ -89168,14 +89168,14 @@ distributions__distribution___global_quantities___source___identifier__type() = mutable struct distributions__distribution___global_quantities___source___identifier{T} <: IDS{T} var"process_index" :: Int - var"type" :: distributions__distribution___global_quantities___source___identifier__type{T} + var"type"::distributions__distribution___global_quantities___source___identifier__type{T} var"wave_index" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___source___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___source___identifier} + _parent::WeakRef end function distributions__distribution___global_quantities___source___identifier{T}() where T @@ -89187,7 +89187,7 @@ end distributions__distribution___global_quantities___source___identifier() = distributions__distribution___global_quantities___source___identifier{Float64}() mutable struct distributions__distribution___global_quantities___source{T} <: IDSvectorStaticElement{T} - var"identifier" :: distributions__distribution___global_quantities___source___identifier{T} + var"identifier"::distributions__distribution___global_quantities___source___identifier{T} var"particles" :: T var"particles_σ" :: T var"power" :: T @@ -89198,8 +89198,8 @@ mutable struct distributions__distribution___global_quantities___source{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___source} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___source} + _parent::WeakRef end function distributions__distribution___global_quantities___source{T}() where T @@ -89232,8 +89232,8 @@ mutable struct distributions__distribution___global_quantities___collisions__ion _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___collisions__ion___state} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___collisions__ion___state} + _parent::WeakRef end function distributions__distribution___global_quantities___collisions__ion___state{T}() where T @@ -89253,8 +89253,8 @@ mutable struct distributions__distribution___global_quantities___collisions__ion _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___collisions__ion___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___collisions__ion___element} + _parent::WeakRef end function distributions__distribution___global_quantities___collisions__ion___element{T}() where T @@ -89265,7 +89265,7 @@ end distributions__distribution___global_quantities___collisions__ion___element() = distributions__distribution___global_quantities___collisions__ion___element{Float64}() mutable struct distributions__distribution___global_quantities___collisions__ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{distributions__distribution___global_quantities___collisions__ion___element{T}} + var"element"::IDSvector{distributions__distribution___global_quantities___collisions__ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -89273,7 +89273,7 @@ mutable struct distributions__distribution___global_quantities___collisions__ion var"power_fast_σ" :: T var"power_thermal" :: T var"power_thermal_σ" :: T - var"state" :: IDSvector{distributions__distribution___global_quantities___collisions__ion___state{T}} + var"state"::IDSvector{distributions__distribution___global_quantities___collisions__ion___state{T}} var"torque_fast_tor" :: T var"torque_fast_tor_σ" :: T var"torque_thermal_tor" :: T @@ -89284,8 +89284,8 @@ mutable struct distributions__distribution___global_quantities___collisions__ion _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___collisions__ion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___collisions__ion} + _parent::WeakRef end function distributions__distribution___global_quantities___collisions__ion{T}() where T @@ -89310,8 +89310,8 @@ mutable struct distributions__distribution___global_quantities___collisions__ele _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___collisions__electrons} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___collisions__electrons} + _parent::WeakRef end function distributions__distribution___global_quantities___collisions__electrons{T}() where T @@ -89322,14 +89322,14 @@ end distributions__distribution___global_quantities___collisions__electrons() = distributions__distribution___global_quantities___collisions__electrons{Float64}() mutable struct distributions__distribution___global_quantities___collisions{T} <: IDS{T} - var"electrons" :: distributions__distribution___global_quantities___collisions__electrons{T} - var"ion" :: IDSvector{distributions__distribution___global_quantities___collisions__ion{T}} + var"electrons"::distributions__distribution___global_quantities___collisions__electrons{T} + var"ion"::IDSvector{distributions__distribution___global_quantities___collisions__ion{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities___collisions} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities___collisions} + _parent::WeakRef end function distributions__distribution___global_quantities___collisions{T}() where T @@ -89342,7 +89342,7 @@ end distributions__distribution___global_quantities___collisions() = distributions__distribution___global_quantities___collisions{Float64}() mutable struct distributions__distribution___global_quantities{T} <: IDSvectorTimeElement{T} - var"collisions" :: distributions__distribution___global_quantities___collisions{T} + var"collisions"::distributions__distribution___global_quantities___collisions{T} var"current_tor" :: T var"current_tor_σ" :: T var"energy" :: T @@ -89355,8 +89355,8 @@ mutable struct distributions__distribution___global_quantities{T} <: IDSvectorTi var"particles_fast_n_σ" :: T var"particles_n" :: T var"particles_n_σ" :: T - var"source" :: IDSvector{distributions__distribution___global_quantities___source{T}} - var"thermalisation" :: distributions__distribution___global_quantities___thermalisation{T} + var"source"::IDSvector{distributions__distribution___global_quantities___source{T}} + var"thermalisation"::distributions__distribution___global_quantities___thermalisation{T} var"time" :: Float64 var"torque_tor_j_radial" :: T var"torque_tor_j_radial_σ" :: T @@ -89364,8 +89364,8 @@ mutable struct distributions__distribution___global_quantities{T} <: IDSvectorTi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___global_quantities} + _parent::WeakRef end function distributions__distribution___global_quantities{T}() where T @@ -89385,8 +89385,8 @@ mutable struct distributions__distribution___ggd___grid__space___objects_per_dim _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__space___objects_per_dimension___object___boundary} + _parent::WeakRef end function distributions__distribution___ggd___grid__space___objects_per_dimension___object___boundary{T}() where T @@ -89397,7 +89397,7 @@ end distributions__distribution___ggd___grid__space___objects_per_dimension___object___boundary() = distributions__distribution___ggd___grid__space___objects_per_dimension___object___boundary{Float64}() mutable struct distributions__distribution___ggd___grid__space___objects_per_dimension___object{T} <: IDSvectorStaticElement{T} - var"boundary" :: IDSvector{distributions__distribution___ggd___grid__space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{distributions__distribution___ggd___grid__space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -89409,8 +89409,8 @@ mutable struct distributions__distribution___ggd___grid__space___objects_per_dim _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__space___objects_per_dimension___object} + _parent::WeakRef end function distributions__distribution___ggd___grid__space___objects_per_dimension___object{T}() where T @@ -89429,8 +89429,8 @@ mutable struct distributions__distribution___ggd___grid__space___objects_per_dim _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__space___objects_per_dimension___geometry_content} + _parent::WeakRef end function distributions__distribution___ggd___grid__space___objects_per_dimension___geometry_content{T}() where T @@ -89441,14 +89441,14 @@ end distributions__distribution___ggd___grid__space___objects_per_dimension___geometry_content() = distributions__distribution___ggd___grid__space___objects_per_dimension___geometry_content{Float64}() mutable struct distributions__distribution___ggd___grid__space___objects_per_dimension{T} <: IDSvectorStaticElement{T} - var"geometry_content" :: distributions__distribution___ggd___grid__space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{distributions__distribution___ggd___grid__space___objects_per_dimension___object{T}} + var"geometry_content"::distributions__distribution___ggd___grid__space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{distributions__distribution___ggd___grid__space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__space___objects_per_dimension} + _parent::WeakRef end function distributions__distribution___ggd___grid__space___objects_per_dimension{T}() where T @@ -89468,8 +89468,8 @@ mutable struct distributions__distribution___ggd___grid__space___identifier{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__space___identifier} + _parent::WeakRef end function distributions__distribution___ggd___grid__space___identifier{T}() where T @@ -89487,8 +89487,8 @@ mutable struct distributions__distribution___ggd___grid__space___geometry_type{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__space___geometry_type} + _parent::WeakRef end function distributions__distribution___ggd___grid__space___geometry_type{T}() where T @@ -89500,15 +89500,15 @@ distributions__distribution___ggd___grid__space___geometry_type() = distribution mutable struct distributions__distribution___ggd___grid__space{T} <: IDSvectorStaticElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: distributions__distribution___ggd___grid__space___geometry_type{T} - var"identifier" :: distributions__distribution___ggd___grid__space___identifier{T} - var"objects_per_dimension" :: IDSvector{distributions__distribution___ggd___grid__space___objects_per_dimension{T}} + var"geometry_type"::distributions__distribution___ggd___grid__space___geometry_type{T} + var"identifier"::distributions__distribution___ggd___grid__space___identifier{T} + var"objects_per_dimension"::IDSvector{distributions__distribution___ggd___grid__space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__space} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__space} + _parent::WeakRef end function distributions__distribution___ggd___grid__space{T}() where T @@ -89529,8 +89529,8 @@ mutable struct distributions__distribution___ggd___grid__identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__identifier} + _parent::WeakRef end function distributions__distribution___ggd___grid__identifier{T}() where T @@ -89551,8 +89551,8 @@ mutable struct distributions__distribution___ggd___grid__grid_subset___metric{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__grid_subset___metric} + _parent::WeakRef end function distributions__distribution___ggd___grid__grid_subset___metric{T}() where T @@ -89570,8 +89570,8 @@ mutable struct distributions__distribution___ggd___grid__grid_subset___identifie _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__grid_subset___identifier} + _parent::WeakRef end function distributions__distribution___ggd___grid__grid_subset___identifier{T}() where T @@ -89589,8 +89589,8 @@ mutable struct distributions__distribution___ggd___grid__grid_subset___element__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__grid_subset___element___object} + _parent::WeakRef end function distributions__distribution___ggd___grid__grid_subset___element___object{T}() where T @@ -89601,13 +89601,13 @@ end distributions__distribution___ggd___grid__grid_subset___element___object() = distributions__distribution___ggd___grid__grid_subset___element___object{Float64}() mutable struct distributions__distribution___ggd___grid__grid_subset___element{T} <: IDSvectorStaticElement{T} - var"object" :: IDSvector{distributions__distribution___ggd___grid__grid_subset___element___object{T}} + var"object"::IDSvector{distributions__distribution___ggd___grid__grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__grid_subset___element} + _parent::WeakRef end function distributions__distribution___ggd___grid__grid_subset___element{T}() where T @@ -89629,8 +89629,8 @@ mutable struct distributions__distribution___ggd___grid__grid_subset___base{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__grid_subset___base} + _parent::WeakRef end function distributions__distribution___ggd___grid__grid_subset___base{T}() where T @@ -89641,17 +89641,17 @@ end distributions__distribution___ggd___grid__grid_subset___base() = distributions__distribution___ggd___grid__grid_subset___base{Float64}() mutable struct distributions__distribution___ggd___grid__grid_subset{T} <: IDSvectorStaticElement{T} - var"base" :: IDSvector{distributions__distribution___ggd___grid__grid_subset___base{T}} + var"base"::IDSvector{distributions__distribution___ggd___grid__grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{distributions__distribution___ggd___grid__grid_subset___element{T}} - var"identifier" :: distributions__distribution___ggd___grid__grid_subset___identifier{T} - var"metric" :: distributions__distribution___ggd___grid__grid_subset___metric{T} + var"element"::IDSvector{distributions__distribution___ggd___grid__grid_subset___element{T}} + var"identifier"::distributions__distribution___ggd___grid__grid_subset___identifier{T} + var"metric"::distributions__distribution___ggd___grid__grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid__grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid__grid_subset} + _parent::WeakRef end function distributions__distribution___ggd___grid__grid_subset{T}() where T @@ -89666,16 +89666,16 @@ end distributions__distribution___ggd___grid__grid_subset() = distributions__distribution___ggd___grid__grid_subset{Float64}() mutable struct distributions__distribution___ggd___grid{T} <: IDS{T} - var"grid_subset" :: IDSvector{distributions__distribution___ggd___grid__grid_subset{T}} - var"identifier" :: distributions__distribution___ggd___grid__identifier{T} + var"grid_subset"::IDSvector{distributions__distribution___ggd___grid__grid_subset{T}} + var"identifier"::distributions__distribution___ggd___grid__identifier{T} var"path" :: String - var"space" :: IDSvector{distributions__distribution___ggd___grid__space{T}} + var"space"::IDSvector{distributions__distribution___ggd___grid__space{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___grid} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___grid} + _parent::WeakRef end function distributions__distribution___ggd___grid{T}() where T @@ -89699,8 +89699,8 @@ mutable struct distributions__distribution___ggd___expansion_fd3v___grid_subset{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___expansion_fd3v___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___expansion_fd3v___grid_subset} + _parent::WeakRef end function distributions__distribution___ggd___expansion_fd3v___grid_subset{T}() where T @@ -89711,13 +89711,13 @@ end distributions__distribution___ggd___expansion_fd3v___grid_subset() = distributions__distribution___ggd___expansion_fd3v___grid_subset{Float64}() mutable struct distributions__distribution___ggd___expansion_fd3v{T} <: IDSvectorStaticElement{T} - var"grid_subset" :: IDSvector{distributions__distribution___ggd___expansion_fd3v___grid_subset{T}} + var"grid_subset"::IDSvector{distributions__distribution___ggd___expansion_fd3v___grid_subset{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___expansion_fd3v} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___expansion_fd3v} + _parent::WeakRef end function distributions__distribution___ggd___expansion_fd3v{T}() where T @@ -89739,8 +89739,8 @@ mutable struct distributions__distribution___ggd___expansion___grid_subset{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___expansion___grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___expansion___grid_subset} + _parent::WeakRef end function distributions__distribution___ggd___expansion___grid_subset{T}() where T @@ -89751,13 +89751,13 @@ end distributions__distribution___ggd___expansion___grid_subset() = distributions__distribution___ggd___expansion___grid_subset{Float64}() mutable struct distributions__distribution___ggd___expansion{T} <: IDSvectorStaticElement{T} - var"grid_subset" :: IDSvector{distributions__distribution___ggd___expansion___grid_subset{T}} + var"grid_subset"::IDSvector{distributions__distribution___ggd___expansion___grid_subset{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd___expansion} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd___expansion} + _parent::WeakRef end function distributions__distribution___ggd___expansion{T}() where T @@ -89769,9 +89769,9 @@ end distributions__distribution___ggd___expansion() = distributions__distribution___ggd___expansion{Float64}() mutable struct distributions__distribution___ggd{T} <: IDSvectorTimeElement{T} - var"expansion" :: IDSvector{distributions__distribution___ggd___expansion{T}} - var"expansion_fd3v" :: IDSvector{distributions__distribution___ggd___expansion_fd3v{T}} - var"grid" :: distributions__distribution___ggd___grid{T} + var"expansion"::IDSvector{distributions__distribution___ggd___expansion{T}} + var"expansion_fd3v"::IDSvector{distributions__distribution___ggd___expansion_fd3v{T}} + var"grid"::distributions__distribution___ggd___grid{T} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} var"time" :: Float64 @@ -89779,8 +89779,8 @@ mutable struct distributions__distribution___ggd{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution___ggd} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution___ggd} + _parent::WeakRef end function distributions__distribution___ggd{T}() where T @@ -89794,22 +89794,22 @@ end distributions__distribution___ggd() = distributions__distribution___ggd{Float64}() mutable struct distributions__distribution{T} <: IDSvectorStaticElement{T} - var"ggd" :: IDSvector{distributions__distribution___ggd{T}} - var"global_quantities" :: IDSvector{distributions__distribution___global_quantities{T}} + var"ggd"::IDSvector{distributions__distribution___ggd{T}} + var"global_quantities"::IDSvector{distributions__distribution___global_quantities{T}} var"gyro_type" :: Int var"is_delta_f" :: Int - var"markers" :: IDSvector{distributions__distribution___markers{T}} - var"process" :: IDSvector{distributions__distribution___process{T}} - var"profiles_1d" :: IDSvector{distributions__distribution___profiles_1d{T}} - var"profiles_2d" :: IDSvector{distributions__distribution___profiles_2d{T}} - var"species" :: distributions__distribution___species{T} - var"wave" :: IDSvector{distributions__distribution___wave{T}} + var"markers"::IDSvector{distributions__distribution___markers{T}} + var"process"::IDSvector{distributions__distribution___process{T}} + var"profiles_1d"::IDSvector{distributions__distribution___profiles_1d{T}} + var"profiles_2d"::IDSvector{distributions__distribution___profiles_2d{T}} + var"species"::distributions__distribution___species{T} + var"wave"::IDSvector{distributions__distribution___wave{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__distribution} - _parent :: WeakRef + _ref::Union{Nothing,distributions__distribution} + _parent::WeakRef end function distributions__distribution{T}() where T @@ -89838,8 +89838,8 @@ mutable struct distributions__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__code__library} - _parent :: WeakRef + _ref::Union{Nothing,distributions__code__library} + _parent::WeakRef end function distributions__code__library{T}() where T @@ -89852,7 +89852,7 @@ distributions__code__library() = distributions__code__library{Float64}() mutable struct distributions__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{distributions__code__library{T}} + var"library"::IDSvector{distributions__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -89862,8 +89862,8 @@ mutable struct distributions__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions__code} - _parent :: WeakRef + _ref::Union{Nothing,distributions__code} + _parent::WeakRef end function distributions__code{T}() where T @@ -89875,18 +89875,18 @@ end distributions__code() = distributions__code{Float64}() mutable struct distributions{T} <: IDStop{T} - var"code" :: distributions__code{T} - var"distribution" :: IDSvector{distributions__distribution{T}} - var"ids_properties" :: distributions__ids_properties{T} - var"magnetic_axis" :: distributions__magnetic_axis{T} + var"code"::distributions__code{T} + var"distribution"::IDSvector{distributions__distribution{T}} + var"ids_properties"::distributions__ids_properties{T} + var"magnetic_axis"::distributions__magnetic_axis{T} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: distributions__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::distributions__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distributions} - _parent :: WeakRef + _ref::Union{Nothing,distributions} + _parent::WeakRef end function distributions{T}() where T @@ -89910,8 +89910,8 @@ mutable struct distribution_sources__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__vacuum_toroidal_field} + _parent::WeakRef end function distribution_sources__vacuum_toroidal_field{T}() where T @@ -89929,8 +89929,8 @@ mutable struct distribution_sources__source___species__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species__type} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species__type} + _parent::WeakRef end function distribution_sources__source___species__type{T}() where T @@ -89948,8 +89948,8 @@ mutable struct distribution_sources__source___species__neutral__state__neutral_t _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species__neutral__state__neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species__neutral__state__neutral_type} + _parent::WeakRef end function distribution_sources__source___species__neutral__state__neutral_type{T}() where T @@ -89962,7 +89962,7 @@ distribution_sources__source___species__neutral__state__neutral_type() = distrib mutable struct distribution_sources__source___species__neutral__state{T} <: IDS{T} var"electron_configuration" :: String var"label" :: String - var"neutral_type" :: distribution_sources__source___species__neutral__state__neutral_type{T} + var"neutral_type"::distribution_sources__source___species__neutral__state__neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -89970,8 +89970,8 @@ mutable struct distribution_sources__source___species__neutral__state{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species__neutral__state} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species__neutral__state} + _parent::WeakRef end function distribution_sources__source___species__neutral__state{T}() where T @@ -89992,8 +89992,8 @@ mutable struct distribution_sources__source___species__neutral__element{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species__neutral__element} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species__neutral__element} + _parent::WeakRef end function distribution_sources__source___species__neutral__element{T}() where T @@ -90004,15 +90004,15 @@ end distribution_sources__source___species__neutral__element() = distribution_sources__source___species__neutral__element{Float64}() mutable struct distribution_sources__source___species__neutral{T} <: IDS{T} - var"element" :: IDSvector{distribution_sources__source___species__neutral__element{T}} + var"element"::IDSvector{distribution_sources__source___species__neutral__element{T}} var"label" :: String - var"state" :: distribution_sources__source___species__neutral__state{T} + var"state"::distribution_sources__source___species__neutral__state{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species__neutral} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species__neutral} + _parent::WeakRef end function distribution_sources__source___species__neutral{T}() where T @@ -90038,8 +90038,8 @@ mutable struct distribution_sources__source___species__ion__state{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species__ion__state} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species__ion__state} + _parent::WeakRef end function distribution_sources__source___species__ion__state{T}() where T @@ -90059,8 +90059,8 @@ mutable struct distribution_sources__source___species__ion__element{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species__ion__element} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species__ion__element} + _parent::WeakRef end function distribution_sources__source___species__ion__element{T}() where T @@ -90071,17 +90071,17 @@ end distribution_sources__source___species__ion__element() = distribution_sources__source___species__ion__element{Float64}() mutable struct distribution_sources__source___species__ion{T} <: IDS{T} - var"element" :: IDSvector{distribution_sources__source___species__ion__element{T}} + var"element"::IDSvector{distribution_sources__source___species__ion__element{T}} var"label" :: String - var"state" :: distribution_sources__source___species__ion__state{T} + var"state"::distribution_sources__source___species__ion__state{T} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species__ion} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species__ion} + _parent::WeakRef end function distribution_sources__source___species__ion{T}() where T @@ -90094,15 +90094,15 @@ end distribution_sources__source___species__ion() = distribution_sources__source___species__ion{Float64}() mutable struct distribution_sources__source___species{T} <: IDS{T} - var"ion" :: distribution_sources__source___species__ion{T} - var"neutral" :: distribution_sources__source___species__neutral{T} - var"type" :: distribution_sources__source___species__type{T} + var"ion"::distribution_sources__source___species__ion{T} + var"neutral"::distribution_sources__source___species__neutral{T} + var"type"::distribution_sources__source___species__type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___species} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___species} + _parent::WeakRef end function distribution_sources__source___species{T}() where T @@ -90138,8 +90138,8 @@ mutable struct distribution_sources__source___profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___profiles_1d___grid} + _parent::WeakRef end function distribution_sources__source___profiles_1d___grid{T}() where T @@ -90152,7 +90152,7 @@ distribution_sources__source___profiles_1d___grid() = distribution_sources__sour mutable struct distribution_sources__source___profiles_1d{T} <: IDSvectorTimeElement{T} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"grid" :: distribution_sources__source___profiles_1d___grid{T} + var"grid"::distribution_sources__source___profiles_1d___grid{T} var"momentum_tor" :: Vector{<:T} var"momentum_tor_σ" :: Vector{<:T} var"particles" :: Vector{<:T} @@ -90162,8 +90162,8 @@ mutable struct distribution_sources__source___profiles_1d{T} <: IDSvectorTimeEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___profiles_1d} + _parent::WeakRef end function distribution_sources__source___profiles_1d{T}() where T @@ -90182,8 +90182,8 @@ mutable struct distribution_sources__source___process___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___process___type} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___process___type} + _parent::WeakRef end function distribution_sources__source___process___type{T}() where T @@ -90201,8 +90201,8 @@ mutable struct distribution_sources__source___process___reactant_energy{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___process___reactant_energy} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___process___reactant_energy} + _parent::WeakRef end function distribution_sources__source___process___reactant_energy{T}() where T @@ -90220,8 +90220,8 @@ mutable struct distribution_sources__source___process___nbi_energy{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___process___nbi_energy} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___process___nbi_energy} + _parent::WeakRef end function distribution_sources__source___process___nbi_energy{T}() where T @@ -90233,16 +90233,16 @@ distribution_sources__source___process___nbi_energy() = distribution_sources__so mutable struct distribution_sources__source___process{T} <: IDSvectorStaticElement{T} var"nbi_beamlets_group" :: Int - var"nbi_energy" :: distribution_sources__source___process___nbi_energy{T} + var"nbi_energy"::distribution_sources__source___process___nbi_energy{T} var"nbi_unit" :: Int - var"reactant_energy" :: distribution_sources__source___process___reactant_energy{T} - var"type" :: distribution_sources__source___process___type{T} + var"reactant_energy"::distribution_sources__source___process___reactant_energy{T} + var"type"::distribution_sources__source___process___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___process} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___process} + _parent::WeakRef end function distribution_sources__source___process{T}() where T @@ -90264,8 +90264,8 @@ mutable struct distribution_sources__source___markers___orbit_integrals_instant{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___markers___orbit_integrals_instant} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___markers___orbit_integrals_instant} + _parent::WeakRef end function distribution_sources__source___markers___orbit_integrals_instant{T}() where T @@ -90285,8 +90285,8 @@ mutable struct distribution_sources__source___markers___orbit_integrals{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___markers___orbit_integrals} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___markers___orbit_integrals} + _parent::WeakRef end function distribution_sources__source___markers___orbit_integrals{T}() where T @@ -90304,8 +90304,8 @@ mutable struct distribution_sources__source___markers___coordinate_identifier{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___markers___coordinate_identifier} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___markers___coordinate_identifier} + _parent::WeakRef end function distribution_sources__source___markers___coordinate_identifier{T}() where T @@ -90316,9 +90316,9 @@ end distribution_sources__source___markers___coordinate_identifier() = distribution_sources__source___markers___coordinate_identifier{Float64}() mutable struct distribution_sources__source___markers{T} <: IDSvectorTimeElement{T} - var"coordinate_identifier" :: IDSvector{distribution_sources__source___markers___coordinate_identifier{T}} - var"orbit_integrals" :: distribution_sources__source___markers___orbit_integrals{T} - var"orbit_integrals_instant" :: distribution_sources__source___markers___orbit_integrals_instant{T} + var"coordinate_identifier"::IDSvector{distribution_sources__source___markers___coordinate_identifier{T}} + var"orbit_integrals"::distribution_sources__source___markers___orbit_integrals{T} + var"orbit_integrals_instant"::distribution_sources__source___markers___orbit_integrals_instant{T} var"positions" :: Matrix{<:T} var"positions_σ" :: Matrix{<:T} var"time" :: Float64 @@ -90329,8 +90329,8 @@ mutable struct distribution_sources__source___markers{T} <: IDSvectorTimeElement _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___markers} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___markers} + _parent::WeakRef end function distribution_sources__source___markers{T}() where T @@ -90354,8 +90354,8 @@ mutable struct distribution_sources__source___global_quantities___shinethrough{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___global_quantities___shinethrough} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___global_quantities___shinethrough} + _parent::WeakRef end function distribution_sources__source___global_quantities___shinethrough{T}() where T @@ -90370,7 +90370,7 @@ mutable struct distribution_sources__source___global_quantities{T} <: IDSvectorT var"particles_σ" :: T var"power" :: T var"power_σ" :: T - var"shinethrough" :: distribution_sources__source___global_quantities___shinethrough{T} + var"shinethrough"::distribution_sources__source___global_quantities___shinethrough{T} var"time" :: Float64 var"torque_tor" :: T var"torque_tor_σ" :: T @@ -90378,8 +90378,8 @@ mutable struct distribution_sources__source___global_quantities{T} <: IDSvectorT _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___global_quantities} + _parent::WeakRef end function distribution_sources__source___global_quantities{T}() where T @@ -90401,8 +90401,8 @@ mutable struct distribution_sources__source___ggd___particles{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___particles} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___particles} + _parent::WeakRef end function distribution_sources__source___ggd___particles{T}() where T @@ -90419,8 +90419,8 @@ mutable struct distribution_sources__source___ggd___grid__space___objects_per_di _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__space___objects_per_dimension___object___boundary} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__space___objects_per_dimension___object___boundary} + _parent::WeakRef end function distribution_sources__source___ggd___grid__space___objects_per_dimension___object___boundary{T}() where T @@ -90431,7 +90431,7 @@ end distribution_sources__source___ggd___grid__space___objects_per_dimension___object___boundary() = distribution_sources__source___ggd___grid__space___objects_per_dimension___object___boundary{Float64}() mutable struct distribution_sources__source___ggd___grid__space___objects_per_dimension___object{T} <: IDSvectorStaticElement{T} - var"boundary" :: IDSvector{distribution_sources__source___ggd___grid__space___objects_per_dimension___object___boundary{T}} + var"boundary"::IDSvector{distribution_sources__source___ggd___grid__space___objects_per_dimension___object___boundary{T}} var"geometry" :: Vector{<:T} var"geometry_σ" :: Vector{<:T} var"geometry_2d" :: Matrix{<:T} @@ -90443,8 +90443,8 @@ mutable struct distribution_sources__source___ggd___grid__space___objects_per_di _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__space___objects_per_dimension___object} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__space___objects_per_dimension___object} + _parent::WeakRef end function distribution_sources__source___ggd___grid__space___objects_per_dimension___object{T}() where T @@ -90463,8 +90463,8 @@ mutable struct distribution_sources__source___ggd___grid__space___objects_per_di _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__space___objects_per_dimension___geometry_content} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__space___objects_per_dimension___geometry_content} + _parent::WeakRef end function distribution_sources__source___ggd___grid__space___objects_per_dimension___geometry_content{T}() where T @@ -90475,14 +90475,14 @@ end distribution_sources__source___ggd___grid__space___objects_per_dimension___geometry_content() = distribution_sources__source___ggd___grid__space___objects_per_dimension___geometry_content{Float64}() mutable struct distribution_sources__source___ggd___grid__space___objects_per_dimension{T} <: IDSvectorStaticElement{T} - var"geometry_content" :: distribution_sources__source___ggd___grid__space___objects_per_dimension___geometry_content{T} - var"object" :: IDSvector{distribution_sources__source___ggd___grid__space___objects_per_dimension___object{T}} + var"geometry_content"::distribution_sources__source___ggd___grid__space___objects_per_dimension___geometry_content{T} + var"object"::IDSvector{distribution_sources__source___ggd___grid__space___objects_per_dimension___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__space___objects_per_dimension} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__space___objects_per_dimension} + _parent::WeakRef end function distribution_sources__source___ggd___grid__space___objects_per_dimension{T}() where T @@ -90502,8 +90502,8 @@ mutable struct distribution_sources__source___ggd___grid__space___identifier{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__space___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__space___identifier} + _parent::WeakRef end function distribution_sources__source___ggd___grid__space___identifier{T}() where T @@ -90521,8 +90521,8 @@ mutable struct distribution_sources__source___ggd___grid__space___geometry_type{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__space___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__space___geometry_type} + _parent::WeakRef end function distribution_sources__source___ggd___grid__space___geometry_type{T}() where T @@ -90534,15 +90534,15 @@ distribution_sources__source___ggd___grid__space___geometry_type() = distributio mutable struct distribution_sources__source___ggd___grid__space{T} <: IDSvectorStaticElement{T} var"coordinates_type" :: Vector{Int} - var"geometry_type" :: distribution_sources__source___ggd___grid__space___geometry_type{T} - var"identifier" :: distribution_sources__source___ggd___grid__space___identifier{T} - var"objects_per_dimension" :: IDSvector{distribution_sources__source___ggd___grid__space___objects_per_dimension{T}} + var"geometry_type"::distribution_sources__source___ggd___grid__space___geometry_type{T} + var"identifier"::distribution_sources__source___ggd___grid__space___identifier{T} + var"objects_per_dimension"::IDSvector{distribution_sources__source___ggd___grid__space___objects_per_dimension{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__space} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__space} + _parent::WeakRef end function distribution_sources__source___ggd___grid__space{T}() where T @@ -90563,8 +90563,8 @@ mutable struct distribution_sources__source___ggd___grid__identifier{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__identifier} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__identifier} + _parent::WeakRef end function distribution_sources__source___ggd___grid__identifier{T}() where T @@ -90585,8 +90585,8 @@ mutable struct distribution_sources__source___ggd___grid__grid_subset___metric{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___metric} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___metric} + _parent::WeakRef end function distribution_sources__source___ggd___grid__grid_subset___metric{T}() where T @@ -90604,8 +90604,8 @@ mutable struct distribution_sources__source___ggd___grid__grid_subset___identifi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___identifier} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___identifier} + _parent::WeakRef end function distribution_sources__source___ggd___grid__grid_subset___identifier{T}() where T @@ -90623,8 +90623,8 @@ mutable struct distribution_sources__source___ggd___grid__grid_subset___element_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___element___object} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___element___object} + _parent::WeakRef end function distribution_sources__source___ggd___grid__grid_subset___element___object{T}() where T @@ -90635,13 +90635,13 @@ end distribution_sources__source___ggd___grid__grid_subset___element___object() = distribution_sources__source___ggd___grid__grid_subset___element___object{Float64}() mutable struct distribution_sources__source___ggd___grid__grid_subset___element{T} <: IDSvectorStaticElement{T} - var"object" :: IDSvector{distribution_sources__source___ggd___grid__grid_subset___element___object{T}} + var"object"::IDSvector{distribution_sources__source___ggd___grid__grid_subset___element___object{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___element} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___element} + _parent::WeakRef end function distribution_sources__source___ggd___grid__grid_subset___element{T}() where T @@ -90663,8 +90663,8 @@ mutable struct distribution_sources__source___ggd___grid__grid_subset___base{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___base} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__grid_subset___base} + _parent::WeakRef end function distribution_sources__source___ggd___grid__grid_subset___base{T}() where T @@ -90675,17 +90675,17 @@ end distribution_sources__source___ggd___grid__grid_subset___base() = distribution_sources__source___ggd___grid__grid_subset___base{Float64}() mutable struct distribution_sources__source___ggd___grid__grid_subset{T} <: IDSvectorStaticElement{T} - var"base" :: IDSvector{distribution_sources__source___ggd___grid__grid_subset___base{T}} + var"base"::IDSvector{distribution_sources__source___ggd___grid__grid_subset___base{T}} var"dimension" :: Int - var"element" :: IDSvector{distribution_sources__source___ggd___grid__grid_subset___element{T}} - var"identifier" :: distribution_sources__source___ggd___grid__grid_subset___identifier{T} - var"metric" :: distribution_sources__source___ggd___grid__grid_subset___metric{T} + var"element"::IDSvector{distribution_sources__source___ggd___grid__grid_subset___element{T}} + var"identifier"::distribution_sources__source___ggd___grid__grid_subset___identifier{T} + var"metric"::distribution_sources__source___ggd___grid__grid_subset___metric{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid__grid_subset} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid__grid_subset} + _parent::WeakRef end function distribution_sources__source___ggd___grid__grid_subset{T}() where T @@ -90700,16 +90700,16 @@ end distribution_sources__source___ggd___grid__grid_subset() = distribution_sources__source___ggd___grid__grid_subset{Float64}() mutable struct distribution_sources__source___ggd___grid{T} <: IDS{T} - var"grid_subset" :: IDSvector{distribution_sources__source___ggd___grid__grid_subset{T}} - var"identifier" :: distribution_sources__source___ggd___grid__identifier{T} + var"grid_subset"::IDSvector{distribution_sources__source___ggd___grid__grid_subset{T}} + var"identifier"::distribution_sources__source___ggd___grid__identifier{T} var"path" :: String - var"space" :: IDSvector{distribution_sources__source___ggd___grid__space{T}} + var"space"::IDSvector{distribution_sources__source___ggd___grid__space{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd___grid} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd___grid} + _parent::WeakRef end function distribution_sources__source___ggd___grid{T}() where T @@ -90724,15 +90724,15 @@ distribution_sources__source___ggd___grid() = distribution_sources__source___ggd mutable struct distribution_sources__source___ggd{T} <: IDSvectorTimeElement{T} var"discrete" :: Vector{Int} - var"grid" :: distribution_sources__source___ggd___grid{T} - var"particles" :: IDSvector{distribution_sources__source___ggd___particles{T}} + var"grid"::distribution_sources__source___ggd___grid{T} + var"particles"::IDSvector{distribution_sources__source___ggd___particles{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source___ggd} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source___ggd} + _parent::WeakRef end function distribution_sources__source___ggd{T}() where T @@ -90745,19 +90745,19 @@ end distribution_sources__source___ggd() = distribution_sources__source___ggd{Float64}() mutable struct distribution_sources__source{T} <: IDSvectorStaticElement{T} - var"ggd" :: IDSvector{distribution_sources__source___ggd{T}} - var"global_quantities" :: IDSvector{distribution_sources__source___global_quantities{T}} + var"ggd"::IDSvector{distribution_sources__source___ggd{T}} + var"global_quantities"::IDSvector{distribution_sources__source___global_quantities{T}} var"gyro_type" :: Int - var"markers" :: IDSvector{distribution_sources__source___markers{T}} - var"process" :: IDSvector{distribution_sources__source___process{T}} - var"profiles_1d" :: IDSvector{distribution_sources__source___profiles_1d{T}} - var"species" :: distribution_sources__source___species{T} + var"markers"::IDSvector{distribution_sources__source___markers{T}} + var"process"::IDSvector{distribution_sources__source___process{T}} + var"profiles_1d"::IDSvector{distribution_sources__source___profiles_1d{T}} + var"species"::distribution_sources__source___species{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__source} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__source} + _parent::WeakRef end function distribution_sources__source{T}() where T @@ -90782,8 +90782,8 @@ mutable struct distribution_sources__magnetic_axis{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__magnetic_axis} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__magnetic_axis} + _parent::WeakRef end function distribution_sources__magnetic_axis{T}() where T @@ -90801,8 +90801,8 @@ mutable struct distribution_sources__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__version_put} + _parent::WeakRef end function distribution_sources__ids_properties__version_put{T}() where T @@ -90819,8 +90819,8 @@ mutable struct distribution_sources__ids_properties__provenance__node{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__provenance__node} + _parent::WeakRef end function distribution_sources__ids_properties__provenance__node{T}() where T @@ -90831,13 +90831,13 @@ end distribution_sources__ids_properties__provenance__node() = distribution_sources__ids_properties__provenance__node{Float64}() mutable struct distribution_sources__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{distribution_sources__ids_properties__provenance__node{T}} + var"node"::IDSvector{distribution_sources__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__provenance} + _parent::WeakRef end function distribution_sources__ids_properties__provenance{T}() where T @@ -90859,8 +90859,8 @@ mutable struct distribution_sources__ids_properties__plugins__node___readback{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__plugins__node___readback} + _parent::WeakRef end function distribution_sources__ids_properties__plugins__node___readback{T}() where T @@ -90881,8 +90881,8 @@ mutable struct distribution_sources__ids_properties__plugins__node___put_operati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function distribution_sources__ids_properties__plugins__node___put_operation{T}() where T @@ -90903,8 +90903,8 @@ mutable struct distribution_sources__ids_properties__plugins__node___get_operati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function distribution_sources__ids_properties__plugins__node___get_operation{T}() where T @@ -90915,16 +90915,16 @@ end distribution_sources__ids_properties__plugins__node___get_operation() = distribution_sources__ids_properties__plugins__node___get_operation{Float64}() mutable struct distribution_sources__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{distribution_sources__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{distribution_sources__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{distribution_sources__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{distribution_sources__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{distribution_sources__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{distribution_sources__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__plugins__node} + _parent::WeakRef end function distribution_sources__ids_properties__plugins__node{T}() where T @@ -90947,8 +90947,8 @@ mutable struct distribution_sources__ids_properties__plugins__infrastructure_put _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function distribution_sources__ids_properties__plugins__infrastructure_put{T}() where T @@ -90968,8 +90968,8 @@ mutable struct distribution_sources__ids_properties__plugins__infrastructure_get _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function distribution_sources__ids_properties__plugins__infrastructure_get{T}() where T @@ -90980,15 +90980,15 @@ end distribution_sources__ids_properties__plugins__infrastructure_get() = distribution_sources__ids_properties__plugins__infrastructure_get{Float64}() mutable struct distribution_sources__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: distribution_sources__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: distribution_sources__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{distribution_sources__ids_properties__plugins__node{T}} + var"infrastructure_get"::distribution_sources__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::distribution_sources__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{distribution_sources__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__plugins} + _parent::WeakRef end function distribution_sources__ids_properties__plugins{T}() where T @@ -91009,8 +91009,8 @@ mutable struct distribution_sources__ids_properties__occurrence_type{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties__occurrence_type} + _parent::WeakRef end function distribution_sources__ids_properties__occurrence_type{T}() where T @@ -91026,17 +91026,17 @@ mutable struct distribution_sources__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: distribution_sources__ids_properties__occurrence_type{T} - var"plugins" :: distribution_sources__ids_properties__plugins{T} - var"provenance" :: distribution_sources__ids_properties__provenance{T} + var"occurrence_type"::distribution_sources__ids_properties__occurrence_type{T} + var"plugins"::distribution_sources__ids_properties__plugins{T} + var"provenance"::distribution_sources__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: distribution_sources__ids_properties__version_put{T} + var"version_put"::distribution_sources__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__ids_properties} + _parent::WeakRef end function distribution_sources__ids_properties{T}() where T @@ -91061,8 +91061,8 @@ mutable struct distribution_sources__code__library{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__code__library} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__code__library} + _parent::WeakRef end function distribution_sources__code__library{T}() where T @@ -91075,7 +91075,7 @@ distribution_sources__code__library() = distribution_sources__code__library{Floa mutable struct distribution_sources__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{distribution_sources__code__library{T}} + var"library"::IDSvector{distribution_sources__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -91085,8 +91085,8 @@ mutable struct distribution_sources__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources__code} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources__code} + _parent::WeakRef end function distribution_sources__code{T}() where T @@ -91098,18 +91098,18 @@ end distribution_sources__code() = distribution_sources__code{Float64}() mutable struct distribution_sources{T} <: IDStop{T} - var"code" :: distribution_sources__code{T} - var"ids_properties" :: distribution_sources__ids_properties{T} - var"magnetic_axis" :: distribution_sources__magnetic_axis{T} - var"source" :: IDSvector{distribution_sources__source{T}} + var"code"::distribution_sources__code{T} + var"ids_properties"::distribution_sources__ids_properties{T} + var"magnetic_axis"::distribution_sources__magnetic_axis{T} + var"source"::IDSvector{distribution_sources__source{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: distribution_sources__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::distribution_sources__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,distribution_sources} - _parent :: WeakRef + _ref::Union{Nothing,distribution_sources} + _parent::WeakRef end function distribution_sources{T}() where T @@ -91133,8 +91133,8 @@ mutable struct disruption__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,disruption__vacuum_toroidal_field} + _parent::WeakRef end function disruption__vacuum_toroidal_field{T}() where T @@ -91167,8 +91167,8 @@ mutable struct disruption__profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,disruption__profiles_1d___grid} + _parent::WeakRef end function disruption__profiles_1d___grid{T}() where T @@ -91179,7 +91179,7 @@ end disruption__profiles_1d___grid() = disruption__profiles_1d___grid{Float64}() mutable struct disruption__profiles_1d{T} <: IDSvectorTimeElement{T} - var"grid" :: disruption__profiles_1d___grid{T} + var"grid"::disruption__profiles_1d___grid{T} var"j_runaways" :: Vector{<:T} var"j_runaways_σ" :: Vector{<:T} var"power_density_conductive_losses" :: Vector{<:T} @@ -91191,8 +91191,8 @@ mutable struct disruption__profiles_1d{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,disruption__profiles_1d} + _parent::WeakRef end function disruption__profiles_1d{T}() where T @@ -91211,8 +91211,8 @@ mutable struct disruption__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__version_put} + _parent::WeakRef end function disruption__ids_properties__version_put{T}() where T @@ -91229,8 +91229,8 @@ mutable struct disruption__ids_properties__provenance__node{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__provenance__node} + _parent::WeakRef end function disruption__ids_properties__provenance__node{T}() where T @@ -91241,13 +91241,13 @@ end disruption__ids_properties__provenance__node() = disruption__ids_properties__provenance__node{Float64}() mutable struct disruption__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{disruption__ids_properties__provenance__node{T}} + var"node"::IDSvector{disruption__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__provenance} + _parent::WeakRef end function disruption__ids_properties__provenance{T}() where T @@ -91269,8 +91269,8 @@ mutable struct disruption__ids_properties__plugins__node___readback{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__plugins__node___readback} + _parent::WeakRef end function disruption__ids_properties__plugins__node___readback{T}() where T @@ -91291,8 +91291,8 @@ mutable struct disruption__ids_properties__plugins__node___put_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function disruption__ids_properties__plugins__node___put_operation{T}() where T @@ -91313,8 +91313,8 @@ mutable struct disruption__ids_properties__plugins__node___get_operation{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function disruption__ids_properties__plugins__node___get_operation{T}() where T @@ -91325,16 +91325,16 @@ end disruption__ids_properties__plugins__node___get_operation() = disruption__ids_properties__plugins__node___get_operation{Float64}() mutable struct disruption__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{disruption__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{disruption__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{disruption__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{disruption__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{disruption__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{disruption__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__plugins__node} + _parent::WeakRef end function disruption__ids_properties__plugins__node{T}() where T @@ -91357,8 +91357,8 @@ mutable struct disruption__ids_properties__plugins__infrastructure_put{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function disruption__ids_properties__plugins__infrastructure_put{T}() where T @@ -91378,8 +91378,8 @@ mutable struct disruption__ids_properties__plugins__infrastructure_get{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function disruption__ids_properties__plugins__infrastructure_get{T}() where T @@ -91390,15 +91390,15 @@ end disruption__ids_properties__plugins__infrastructure_get() = disruption__ids_properties__plugins__infrastructure_get{Float64}() mutable struct disruption__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: disruption__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: disruption__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{disruption__ids_properties__plugins__node{T}} + var"infrastructure_get"::disruption__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::disruption__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{disruption__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__plugins} + _parent::WeakRef end function disruption__ids_properties__plugins{T}() where T @@ -91419,8 +91419,8 @@ mutable struct disruption__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties__occurrence_type} + _parent::WeakRef end function disruption__ids_properties__occurrence_type{T}() where T @@ -91436,17 +91436,17 @@ mutable struct disruption__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: disruption__ids_properties__occurrence_type{T} - var"plugins" :: disruption__ids_properties__plugins{T} - var"provenance" :: disruption__ids_properties__provenance{T} + var"occurrence_type"::disruption__ids_properties__occurrence_type{T} + var"plugins"::disruption__ids_properties__plugins{T} + var"provenance"::disruption__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: disruption__ids_properties__version_put{T} + var"version_put"::disruption__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,disruption__ids_properties} + _parent::WeakRef end function disruption__ids_properties{T}() where T @@ -91469,8 +91469,8 @@ mutable struct disruption__halo_currents___area___start_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__halo_currents___area___start_point} - _parent :: WeakRef + _ref::Union{Nothing,disruption__halo_currents___area___start_point} + _parent::WeakRef end function disruption__halo_currents___area___start_point{T}() where T @@ -91489,8 +91489,8 @@ mutable struct disruption__halo_currents___area___end_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__halo_currents___area___end_point} - _parent :: WeakRef + _ref::Union{Nothing,disruption__halo_currents___area___end_point} + _parent::WeakRef end function disruption__halo_currents___area___end_point{T}() where T @@ -91503,14 +91503,14 @@ disruption__halo_currents___area___end_point() = disruption__halo_currents___are mutable struct disruption__halo_currents___area{T} <: IDSvectorStaticElement{T} var"current_halo_pol" :: T var"current_halo_pol_σ" :: T - var"end_point" :: disruption__halo_currents___area___end_point{T} - var"start_point" :: disruption__halo_currents___area___start_point{T} + var"end_point"::disruption__halo_currents___area___end_point{T} + var"start_point"::disruption__halo_currents___area___start_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__halo_currents___area} - _parent :: WeakRef + _ref::Union{Nothing,disruption__halo_currents___area} + _parent::WeakRef end function disruption__halo_currents___area{T}() where T @@ -91531,8 +91531,8 @@ mutable struct disruption__halo_currents___active_wall_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__halo_currents___active_wall_point} - _parent :: WeakRef + _ref::Union{Nothing,disruption__halo_currents___active_wall_point} + _parent::WeakRef end function disruption__halo_currents___active_wall_point{T}() where T @@ -91543,15 +91543,15 @@ end disruption__halo_currents___active_wall_point() = disruption__halo_currents___active_wall_point{Float64}() mutable struct disruption__halo_currents{T} <: IDSvectorTimeElement{T} - var"active_wall_point" :: disruption__halo_currents___active_wall_point{T} - var"area" :: IDSvector{disruption__halo_currents___area{T}} + var"active_wall_point"::disruption__halo_currents___active_wall_point{T} + var"area"::IDSvector{disruption__halo_currents___area{T}} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__halo_currents} - _parent :: WeakRef + _ref::Union{Nothing,disruption__halo_currents} + _parent::WeakRef end function disruption__halo_currents{T}() where T @@ -91594,8 +91594,8 @@ mutable struct disruption__global_quantities{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,disruption__global_quantities} + _parent::WeakRef end function disruption__global_quantities{T}() where T @@ -91616,8 +91616,8 @@ mutable struct disruption__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__code__library} - _parent :: WeakRef + _ref::Union{Nothing,disruption__code__library} + _parent::WeakRef end function disruption__code__library{T}() where T @@ -91630,7 +91630,7 @@ disruption__code__library() = disruption__code__library{Float64}() mutable struct disruption__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{disruption__code__library{T}} + var"library"::IDSvector{disruption__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -91640,8 +91640,8 @@ mutable struct disruption__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption__code} - _parent :: WeakRef + _ref::Union{Nothing,disruption__code} + _parent::WeakRef end function disruption__code{T}() where T @@ -91653,19 +91653,19 @@ end disruption__code() = disruption__code{Float64}() mutable struct disruption{T} <: IDStop{T} - var"code" :: disruption__code{T} - var"global_quantities" :: disruption__global_quantities{T} - var"halo_currents" :: IDSvector{disruption__halo_currents{T}} - var"ids_properties" :: disruption__ids_properties{T} - var"profiles_1d" :: IDSvector{disruption__profiles_1d{T}} + var"code"::disruption__code{T} + var"global_quantities"::disruption__global_quantities{T} + var"halo_currents"::IDSvector{disruption__halo_currents{T}} + var"ids_properties"::disruption__ids_properties{T} + var"profiles_1d"::IDSvector{disruption__profiles_1d{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: disruption__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::disruption__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,disruption} - _parent :: WeakRef + _ref::Union{Nothing,disruption} + _parent::WeakRef end function disruption{T}() where T @@ -91689,8 +91689,8 @@ mutable struct dataset_fair__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__version_put} + _parent::WeakRef end function dataset_fair__ids_properties__version_put{T}() where T @@ -91707,8 +91707,8 @@ mutable struct dataset_fair__ids_properties__provenance__node{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__provenance__node} + _parent::WeakRef end function dataset_fair__ids_properties__provenance__node{T}() where T @@ -91719,13 +91719,13 @@ end dataset_fair__ids_properties__provenance__node() = dataset_fair__ids_properties__provenance__node{Float64}() mutable struct dataset_fair__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{dataset_fair__ids_properties__provenance__node{T}} + var"node"::IDSvector{dataset_fair__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__provenance} + _parent::WeakRef end function dataset_fair__ids_properties__provenance{T}() where T @@ -91747,8 +91747,8 @@ mutable struct dataset_fair__ids_properties__plugins__node___readback{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__plugins__node___readback} + _parent::WeakRef end function dataset_fair__ids_properties__plugins__node___readback{T}() where T @@ -91769,8 +91769,8 @@ mutable struct dataset_fair__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function dataset_fair__ids_properties__plugins__node___put_operation{T}() where T @@ -91791,8 +91791,8 @@ mutable struct dataset_fair__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function dataset_fair__ids_properties__plugins__node___get_operation{T}() where T @@ -91803,16 +91803,16 @@ end dataset_fair__ids_properties__plugins__node___get_operation() = dataset_fair__ids_properties__plugins__node___get_operation{Float64}() mutable struct dataset_fair__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{dataset_fair__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{dataset_fair__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{dataset_fair__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{dataset_fair__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{dataset_fair__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{dataset_fair__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__plugins__node} + _parent::WeakRef end function dataset_fair__ids_properties__plugins__node{T}() where T @@ -91835,8 +91835,8 @@ mutable struct dataset_fair__ids_properties__plugins__infrastructure_put{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function dataset_fair__ids_properties__plugins__infrastructure_put{T}() where T @@ -91856,8 +91856,8 @@ mutable struct dataset_fair__ids_properties__plugins__infrastructure_get{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function dataset_fair__ids_properties__plugins__infrastructure_get{T}() where T @@ -91868,15 +91868,15 @@ end dataset_fair__ids_properties__plugins__infrastructure_get() = dataset_fair__ids_properties__plugins__infrastructure_get{Float64}() mutable struct dataset_fair__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: dataset_fair__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: dataset_fair__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{dataset_fair__ids_properties__plugins__node{T}} + var"infrastructure_get"::dataset_fair__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::dataset_fair__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{dataset_fair__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__plugins} + _parent::WeakRef end function dataset_fair__ids_properties__plugins{T}() where T @@ -91897,8 +91897,8 @@ mutable struct dataset_fair__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties__occurrence_type} + _parent::WeakRef end function dataset_fair__ids_properties__occurrence_type{T}() where T @@ -91914,17 +91914,17 @@ mutable struct dataset_fair__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: dataset_fair__ids_properties__occurrence_type{T} - var"plugins" :: dataset_fair__ids_properties__plugins{T} - var"provenance" :: dataset_fair__ids_properties__provenance{T} + var"occurrence_type"::dataset_fair__ids_properties__occurrence_type{T} + var"plugins"::dataset_fair__ids_properties__plugins{T} + var"provenance"::dataset_fair__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: dataset_fair__ids_properties__version_put{T} + var"version_put"::dataset_fair__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair__ids_properties} + _parent::WeakRef end function dataset_fair__ids_properties{T}() where T @@ -91940,7 +91940,7 @@ dataset_fair__ids_properties() = dataset_fair__ids_properties{Float64}() mutable struct dataset_fair{T} <: IDStop{T} var"identifier" :: String - var"ids_properties" :: dataset_fair__ids_properties{T} + var"ids_properties"::dataset_fair__ids_properties{T} var"is_referenced_by" :: Vector{String} var"is_replaced_by" :: String var"license" :: String @@ -91952,8 +91952,8 @@ mutable struct dataset_fair{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_fair} - _parent :: WeakRef + _ref::Union{Nothing,dataset_fair} + _parent::WeakRef end function dataset_fair{T}() where T @@ -91984,8 +91984,8 @@ mutable struct dataset_description__simulation{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__simulation} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__simulation} + _parent::WeakRef end function dataset_description__simulation{T}() where T @@ -92002,8 +92002,8 @@ mutable struct dataset_description__pulse_time_end_epoch{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__pulse_time_end_epoch} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__pulse_time_end_epoch} + _parent::WeakRef end function dataset_description__pulse_time_end_epoch{T}() where T @@ -92020,8 +92020,8 @@ mutable struct dataset_description__pulse_time_begin_epoch{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__pulse_time_begin_epoch} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__pulse_time_begin_epoch} + _parent::WeakRef end function dataset_description__pulse_time_begin_epoch{T}() where T @@ -92041,8 +92041,8 @@ mutable struct dataset_description__parent_entry{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__parent_entry} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__parent_entry} + _parent::WeakRef end function dataset_description__parent_entry{T}() where T @@ -92060,8 +92060,8 @@ mutable struct dataset_description__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__version_put} + _parent::WeakRef end function dataset_description__ids_properties__version_put{T}() where T @@ -92078,8 +92078,8 @@ mutable struct dataset_description__ids_properties__provenance__node{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__provenance__node} + _parent::WeakRef end function dataset_description__ids_properties__provenance__node{T}() where T @@ -92090,13 +92090,13 @@ end dataset_description__ids_properties__provenance__node() = dataset_description__ids_properties__provenance__node{Float64}() mutable struct dataset_description__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{dataset_description__ids_properties__provenance__node{T}} + var"node"::IDSvector{dataset_description__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__provenance} + _parent::WeakRef end function dataset_description__ids_properties__provenance{T}() where T @@ -92118,8 +92118,8 @@ mutable struct dataset_description__ids_properties__plugins__node___readback{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__plugins__node___readback} + _parent::WeakRef end function dataset_description__ids_properties__plugins__node___readback{T}() where T @@ -92140,8 +92140,8 @@ mutable struct dataset_description__ids_properties__plugins__node___put_operatio _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function dataset_description__ids_properties__plugins__node___put_operation{T}() where T @@ -92162,8 +92162,8 @@ mutable struct dataset_description__ids_properties__plugins__node___get_operatio _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function dataset_description__ids_properties__plugins__node___get_operation{T}() where T @@ -92174,16 +92174,16 @@ end dataset_description__ids_properties__plugins__node___get_operation() = dataset_description__ids_properties__plugins__node___get_operation{Float64}() mutable struct dataset_description__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{dataset_description__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{dataset_description__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{dataset_description__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{dataset_description__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{dataset_description__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{dataset_description__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__plugins__node} + _parent::WeakRef end function dataset_description__ids_properties__plugins__node{T}() where T @@ -92206,8 +92206,8 @@ mutable struct dataset_description__ids_properties__plugins__infrastructure_put{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function dataset_description__ids_properties__plugins__infrastructure_put{T}() where T @@ -92227,8 +92227,8 @@ mutable struct dataset_description__ids_properties__plugins__infrastructure_get{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function dataset_description__ids_properties__plugins__infrastructure_get{T}() where T @@ -92239,15 +92239,15 @@ end dataset_description__ids_properties__plugins__infrastructure_get() = dataset_description__ids_properties__plugins__infrastructure_get{Float64}() mutable struct dataset_description__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: dataset_description__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: dataset_description__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{dataset_description__ids_properties__plugins__node{T}} + var"infrastructure_get"::dataset_description__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::dataset_description__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{dataset_description__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__plugins} + _parent::WeakRef end function dataset_description__ids_properties__plugins{T}() where T @@ -92268,8 +92268,8 @@ mutable struct dataset_description__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties__occurrence_type} + _parent::WeakRef end function dataset_description__ids_properties__occurrence_type{T}() where T @@ -92285,17 +92285,17 @@ mutable struct dataset_description__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: dataset_description__ids_properties__occurrence_type{T} - var"plugins" :: dataset_description__ids_properties__plugins{T} - var"provenance" :: dataset_description__ids_properties__provenance{T} + var"occurrence_type"::dataset_description__ids_properties__occurrence_type{T} + var"plugins"::dataset_description__ids_properties__plugins{T} + var"provenance"::dataset_description__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: dataset_description__ids_properties__version_put{T} + var"version_put"::dataset_description__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__ids_properties} + _parent::WeakRef end function dataset_description__ids_properties{T}() where T @@ -92319,8 +92319,8 @@ mutable struct dataset_description__data_entry{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description__data_entry} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description__data_entry} + _parent::WeakRef end function dataset_description__data_entry{T}() where T @@ -92331,22 +92331,22 @@ end dataset_description__data_entry() = dataset_description__data_entry{Float64}() mutable struct dataset_description{T} <: IDStop{T} - var"data_entry" :: dataset_description__data_entry{T} + var"data_entry"::dataset_description__data_entry{T} var"dd_version" :: String - var"ids_properties" :: dataset_description__ids_properties{T} + var"ids_properties"::dataset_description__ids_properties{T} var"imas_version" :: String - var"parent_entry" :: dataset_description__parent_entry{T} + var"parent_entry"::dataset_description__parent_entry{T} var"pulse_time_begin" :: String - var"pulse_time_begin_epoch" :: dataset_description__pulse_time_begin_epoch{T} - var"pulse_time_end_epoch" :: dataset_description__pulse_time_end_epoch{T} - var"simulation" :: dataset_description__simulation{T} + var"pulse_time_begin_epoch"::dataset_description__pulse_time_begin_epoch{T} + var"pulse_time_end_epoch"::dataset_description__pulse_time_end_epoch{T} + var"simulation"::dataset_description__simulation{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dataset_description} - _parent :: WeakRef + _ref::Union{Nothing,dataset_description} + _parent::WeakRef end function dataset_description{T}() where T @@ -92370,8 +92370,8 @@ mutable struct cryostat__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__version_put} + _parent::WeakRef end function cryostat__ids_properties__version_put{T}() where T @@ -92388,8 +92388,8 @@ mutable struct cryostat__ids_properties__provenance__node{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__provenance__node} + _parent::WeakRef end function cryostat__ids_properties__provenance__node{T}() where T @@ -92400,13 +92400,13 @@ end cryostat__ids_properties__provenance__node() = cryostat__ids_properties__provenance__node{Float64}() mutable struct cryostat__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{cryostat__ids_properties__provenance__node{T}} + var"node"::IDSvector{cryostat__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__provenance} + _parent::WeakRef end function cryostat__ids_properties__provenance{T}() where T @@ -92428,8 +92428,8 @@ mutable struct cryostat__ids_properties__plugins__node___readback{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__plugins__node___readback} + _parent::WeakRef end function cryostat__ids_properties__plugins__node___readback{T}() where T @@ -92450,8 +92450,8 @@ mutable struct cryostat__ids_properties__plugins__node___put_operation{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function cryostat__ids_properties__plugins__node___put_operation{T}() where T @@ -92472,8 +92472,8 @@ mutable struct cryostat__ids_properties__plugins__node___get_operation{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function cryostat__ids_properties__plugins__node___get_operation{T}() where T @@ -92484,16 +92484,16 @@ end cryostat__ids_properties__plugins__node___get_operation() = cryostat__ids_properties__plugins__node___get_operation{Float64}() mutable struct cryostat__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{cryostat__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{cryostat__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{cryostat__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{cryostat__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{cryostat__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{cryostat__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__plugins__node} + _parent::WeakRef end function cryostat__ids_properties__plugins__node{T}() where T @@ -92516,8 +92516,8 @@ mutable struct cryostat__ids_properties__plugins__infrastructure_put{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function cryostat__ids_properties__plugins__infrastructure_put{T}() where T @@ -92537,8 +92537,8 @@ mutable struct cryostat__ids_properties__plugins__infrastructure_get{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function cryostat__ids_properties__plugins__infrastructure_get{T}() where T @@ -92549,15 +92549,15 @@ end cryostat__ids_properties__plugins__infrastructure_get() = cryostat__ids_properties__plugins__infrastructure_get{Float64}() mutable struct cryostat__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: cryostat__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: cryostat__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{cryostat__ids_properties__plugins__node{T}} + var"infrastructure_get"::cryostat__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::cryostat__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{cryostat__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__plugins} + _parent::WeakRef end function cryostat__ids_properties__plugins{T}() where T @@ -92578,8 +92578,8 @@ mutable struct cryostat__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties__occurrence_type} + _parent::WeakRef end function cryostat__ids_properties__occurrence_type{T}() where T @@ -92595,17 +92595,17 @@ mutable struct cryostat__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: cryostat__ids_properties__occurrence_type{T} - var"plugins" :: cryostat__ids_properties__plugins{T} - var"provenance" :: cryostat__ids_properties__provenance{T} + var"occurrence_type"::cryostat__ids_properties__occurrence_type{T} + var"plugins"::cryostat__ids_properties__plugins{T} + var"provenance"::cryostat__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: cryostat__ids_properties__version_put{T} + var"version_put"::cryostat__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__ids_properties} + _parent::WeakRef end function cryostat__ids_properties{T}() where T @@ -92629,8 +92629,8 @@ mutable struct cryostat__description_2d___thermal_shield__unit___element___outli _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__unit___element___outline} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__unit___element___outline} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__unit___element___outline{T}() where T @@ -92648,8 +92648,8 @@ mutable struct cryostat__description_2d___thermal_shield__unit___element___j_tor _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__unit___element___j_tor} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__unit___element___j_tor} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__unit___element___j_tor{T}() where T @@ -92660,9 +92660,9 @@ end cryostat__description_2d___thermal_shield__unit___element___j_tor() = cryostat__description_2d___thermal_shield__unit___element___j_tor{Float64}() mutable struct cryostat__description_2d___thermal_shield__unit___element{T} <: IDSvectorStaticElement{T} - var"j_tor" :: cryostat__description_2d___thermal_shield__unit___element___j_tor{T} + var"j_tor"::cryostat__description_2d___thermal_shield__unit___element___j_tor{T} var"name" :: String - var"outline" :: cryostat__description_2d___thermal_shield__unit___element___outline{T} + var"outline"::cryostat__description_2d___thermal_shield__unit___element___outline{T} var"resistance" :: T var"resistance_σ" :: T var"resistivity" :: T @@ -92671,8 +92671,8 @@ mutable struct cryostat__description_2d___thermal_shield__unit___element{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__unit___element} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__unit___element} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__unit___element{T}() where T @@ -92694,8 +92694,8 @@ mutable struct cryostat__description_2d___thermal_shield__unit___annular__outlin _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__unit___annular__outline_outer} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__unit___annular__outline_outer} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__unit___annular__outline_outer{T}() where T @@ -92715,8 +92715,8 @@ mutable struct cryostat__description_2d___thermal_shield__unit___annular__outlin _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__unit___annular__outline_inner} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__unit___annular__outline_inner} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__unit___annular__outline_inner{T}() where T @@ -92736,8 +92736,8 @@ mutable struct cryostat__description_2d___thermal_shield__unit___annular__centre _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__unit___annular__centreline} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__unit___annular__centreline} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__unit___annular__centreline{T}() where T @@ -92748,9 +92748,9 @@ end cryostat__description_2d___thermal_shield__unit___annular__centreline() = cryostat__description_2d___thermal_shield__unit___annular__centreline{Float64}() mutable struct cryostat__description_2d___thermal_shield__unit___annular{T} <: IDS{T} - var"centreline" :: cryostat__description_2d___thermal_shield__unit___annular__centreline{T} - var"outline_inner" :: cryostat__description_2d___thermal_shield__unit___annular__outline_inner{T} - var"outline_outer" :: cryostat__description_2d___thermal_shield__unit___annular__outline_outer{T} + var"centreline"::cryostat__description_2d___thermal_shield__unit___annular__centreline{T} + var"outline_inner"::cryostat__description_2d___thermal_shield__unit___annular__outline_inner{T} + var"outline_outer"::cryostat__description_2d___thermal_shield__unit___annular__outline_outer{T} var"resistivity" :: T var"resistivity_σ" :: T var"thickness" :: Vector{<:T} @@ -92759,8 +92759,8 @@ mutable struct cryostat__description_2d___thermal_shield__unit___annular{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__unit___annular} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__unit___annular} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__unit___annular{T}() where T @@ -92774,16 +92774,16 @@ end cryostat__description_2d___thermal_shield__unit___annular() = cryostat__description_2d___thermal_shield__unit___annular{Float64}() mutable struct cryostat__description_2d___thermal_shield__unit{T} <: IDSvectorStaticElement{T} - var"annular" :: cryostat__description_2d___thermal_shield__unit___annular{T} - var"element" :: IDSvector{cryostat__description_2d___thermal_shield__unit___element{T}} + var"annular"::cryostat__description_2d___thermal_shield__unit___annular{T} + var"element"::IDSvector{cryostat__description_2d___thermal_shield__unit___element{T}} var"identifier" :: String var"name" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__unit} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__unit} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__unit{T}() where T @@ -92803,8 +92803,8 @@ mutable struct cryostat__description_2d___thermal_shield__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield__type} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield__type} + _parent::WeakRef end function cryostat__description_2d___thermal_shield__type{T}() where T @@ -92815,14 +92815,14 @@ end cryostat__description_2d___thermal_shield__type() = cryostat__description_2d___thermal_shield__type{Float64}() mutable struct cryostat__description_2d___thermal_shield{T} <: IDS{T} - var"type" :: cryostat__description_2d___thermal_shield__type{T} - var"unit" :: IDSvector{cryostat__description_2d___thermal_shield__unit{T}} + var"type"::cryostat__description_2d___thermal_shield__type{T} + var"unit"::IDSvector{cryostat__description_2d___thermal_shield__unit{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___thermal_shield} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___thermal_shield} + _parent::WeakRef end function cryostat__description_2d___thermal_shield{T}() where T @@ -92844,8 +92844,8 @@ mutable struct cryostat__description_2d___cryostat__unit___element___outline{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__unit___element___outline} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__unit___element___outline} + _parent::WeakRef end function cryostat__description_2d___cryostat__unit___element___outline{T}() where T @@ -92863,8 +92863,8 @@ mutable struct cryostat__description_2d___cryostat__unit___element___j_tor{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__unit___element___j_tor} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__unit___element___j_tor} + _parent::WeakRef end function cryostat__description_2d___cryostat__unit___element___j_tor{T}() where T @@ -92875,9 +92875,9 @@ end cryostat__description_2d___cryostat__unit___element___j_tor() = cryostat__description_2d___cryostat__unit___element___j_tor{Float64}() mutable struct cryostat__description_2d___cryostat__unit___element{T} <: IDSvectorStaticElement{T} - var"j_tor" :: cryostat__description_2d___cryostat__unit___element___j_tor{T} + var"j_tor"::cryostat__description_2d___cryostat__unit___element___j_tor{T} var"name" :: String - var"outline" :: cryostat__description_2d___cryostat__unit___element___outline{T} + var"outline"::cryostat__description_2d___cryostat__unit___element___outline{T} var"resistance" :: T var"resistance_σ" :: T var"resistivity" :: T @@ -92886,8 +92886,8 @@ mutable struct cryostat__description_2d___cryostat__unit___element{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__unit___element} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__unit___element} + _parent::WeakRef end function cryostat__description_2d___cryostat__unit___element{T}() where T @@ -92909,8 +92909,8 @@ mutable struct cryostat__description_2d___cryostat__unit___annular__outline_oute _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__unit___annular__outline_outer} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__unit___annular__outline_outer} + _parent::WeakRef end function cryostat__description_2d___cryostat__unit___annular__outline_outer{T}() where T @@ -92930,8 +92930,8 @@ mutable struct cryostat__description_2d___cryostat__unit___annular__outline_inne _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__unit___annular__outline_inner} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__unit___annular__outline_inner} + _parent::WeakRef end function cryostat__description_2d___cryostat__unit___annular__outline_inner{T}() where T @@ -92951,8 +92951,8 @@ mutable struct cryostat__description_2d___cryostat__unit___annular__centreline{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__unit___annular__centreline} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__unit___annular__centreline} + _parent::WeakRef end function cryostat__description_2d___cryostat__unit___annular__centreline{T}() where T @@ -92963,9 +92963,9 @@ end cryostat__description_2d___cryostat__unit___annular__centreline() = cryostat__description_2d___cryostat__unit___annular__centreline{Float64}() mutable struct cryostat__description_2d___cryostat__unit___annular{T} <: IDS{T} - var"centreline" :: cryostat__description_2d___cryostat__unit___annular__centreline{T} - var"outline_inner" :: cryostat__description_2d___cryostat__unit___annular__outline_inner{T} - var"outline_outer" :: cryostat__description_2d___cryostat__unit___annular__outline_outer{T} + var"centreline"::cryostat__description_2d___cryostat__unit___annular__centreline{T} + var"outline_inner"::cryostat__description_2d___cryostat__unit___annular__outline_inner{T} + var"outline_outer"::cryostat__description_2d___cryostat__unit___annular__outline_outer{T} var"resistivity" :: T var"resistivity_σ" :: T var"thickness" :: Vector{<:T} @@ -92974,8 +92974,8 @@ mutable struct cryostat__description_2d___cryostat__unit___annular{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__unit___annular} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__unit___annular} + _parent::WeakRef end function cryostat__description_2d___cryostat__unit___annular{T}() where T @@ -92989,16 +92989,16 @@ end cryostat__description_2d___cryostat__unit___annular() = cryostat__description_2d___cryostat__unit___annular{Float64}() mutable struct cryostat__description_2d___cryostat__unit{T} <: IDSvectorStaticElement{T} - var"annular" :: cryostat__description_2d___cryostat__unit___annular{T} - var"element" :: IDSvector{cryostat__description_2d___cryostat__unit___element{T}} + var"annular"::cryostat__description_2d___cryostat__unit___annular{T} + var"element"::IDSvector{cryostat__description_2d___cryostat__unit___element{T}} var"identifier" :: String var"name" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__unit} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__unit} + _parent::WeakRef end function cryostat__description_2d___cryostat__unit{T}() where T @@ -93018,8 +93018,8 @@ mutable struct cryostat__description_2d___cryostat__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat__type} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat__type} + _parent::WeakRef end function cryostat__description_2d___cryostat__type{T}() where T @@ -93030,14 +93030,14 @@ end cryostat__description_2d___cryostat__type() = cryostat__description_2d___cryostat__type{Float64}() mutable struct cryostat__description_2d___cryostat{T} <: IDS{T} - var"type" :: cryostat__description_2d___cryostat__type{T} - var"unit" :: IDSvector{cryostat__description_2d___cryostat__unit{T}} + var"type"::cryostat__description_2d___cryostat__type{T} + var"unit"::IDSvector{cryostat__description_2d___cryostat__unit{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d___cryostat} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d___cryostat} + _parent::WeakRef end function cryostat__description_2d___cryostat{T}() where T @@ -93050,14 +93050,14 @@ end cryostat__description_2d___cryostat() = cryostat__description_2d___cryostat{Float64}() mutable struct cryostat__description_2d{T} <: IDSvectorStaticElement{T} - var"cryostat" :: cryostat__description_2d___cryostat{T} - var"thermal_shield" :: cryostat__description_2d___thermal_shield{T} + var"cryostat"::cryostat__description_2d___cryostat{T} + var"thermal_shield"::cryostat__description_2d___thermal_shield{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__description_2d} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__description_2d} + _parent::WeakRef end function cryostat__description_2d{T}() where T @@ -93080,8 +93080,8 @@ mutable struct cryostat__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__code__library} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__code__library} + _parent::WeakRef end function cryostat__code__library{T}() where T @@ -93094,7 +93094,7 @@ cryostat__code__library() = cryostat__code__library{Float64}() mutable struct cryostat__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{cryostat__code__library{T}} + var"library"::IDSvector{cryostat__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -93104,8 +93104,8 @@ mutable struct cryostat__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat__code} - _parent :: WeakRef + _ref::Union{Nothing,cryostat__code} + _parent::WeakRef end function cryostat__code{T}() where T @@ -93117,16 +93117,16 @@ end cryostat__code() = cryostat__code{Float64}() mutable struct cryostat{T} <: IDStop{T} - var"code" :: cryostat__code{T} - var"description_2d" :: IDSvector{cryostat__description_2d{T}} - var"ids_properties" :: cryostat__ids_properties{T} + var"code"::cryostat__code{T} + var"description_2d"::IDSvector{cryostat__description_2d{T}} + var"ids_properties"::cryostat__ids_properties{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,cryostat} - _parent :: WeakRef + _ref::Union{Nothing,cryostat} + _parent::WeakRef end function cryostat{T}() where T @@ -93147,8 +93147,8 @@ mutable struct costing__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__version_put} + _parent::WeakRef end function costing__ids_properties__version_put{T}() where T @@ -93165,8 +93165,8 @@ mutable struct costing__ids_properties__provenance__node{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__provenance__node} + _parent::WeakRef end function costing__ids_properties__provenance__node{T}() where T @@ -93177,13 +93177,13 @@ end costing__ids_properties__provenance__node() = costing__ids_properties__provenance__node{Float64}() mutable struct costing__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{costing__ids_properties__provenance__node{T}} + var"node"::IDSvector{costing__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__provenance} + _parent::WeakRef end function costing__ids_properties__provenance{T}() where T @@ -93205,8 +93205,8 @@ mutable struct costing__ids_properties__plugins__node___readback{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__plugins__node___readback} + _parent::WeakRef end function costing__ids_properties__plugins__node___readback{T}() where T @@ -93227,8 +93227,8 @@ mutable struct costing__ids_properties__plugins__node___put_operation{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function costing__ids_properties__plugins__node___put_operation{T}() where T @@ -93249,8 +93249,8 @@ mutable struct costing__ids_properties__plugins__node___get_operation{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function costing__ids_properties__plugins__node___get_operation{T}() where T @@ -93261,16 +93261,16 @@ end costing__ids_properties__plugins__node___get_operation() = costing__ids_properties__plugins__node___get_operation{Float64}() mutable struct costing__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{costing__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{costing__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{costing__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{costing__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{costing__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{costing__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__plugins__node} + _parent::WeakRef end function costing__ids_properties__plugins__node{T}() where T @@ -93293,8 +93293,8 @@ mutable struct costing__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function costing__ids_properties__plugins__infrastructure_put{T}() where T @@ -93314,8 +93314,8 @@ mutable struct costing__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function costing__ids_properties__plugins__infrastructure_get{T}() where T @@ -93326,15 +93326,15 @@ end costing__ids_properties__plugins__infrastructure_get() = costing__ids_properties__plugins__infrastructure_get{Float64}() mutable struct costing__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: costing__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: costing__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{costing__ids_properties__plugins__node{T}} + var"infrastructure_get"::costing__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::costing__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{costing__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__plugins} + _parent::WeakRef end function costing__ids_properties__plugins{T}() where T @@ -93355,8 +93355,8 @@ mutable struct costing__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties__occurrence_type} + _parent::WeakRef end function costing__ids_properties__occurrence_type{T}() where T @@ -93372,17 +93372,17 @@ mutable struct costing__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: costing__ids_properties__occurrence_type{T} - var"plugins" :: costing__ids_properties__plugins{T} - var"provenance" :: costing__ids_properties__provenance{T} + var"occurrence_type"::costing__ids_properties__occurrence_type{T} + var"plugins"::costing__ids_properties__plugins{T} + var"provenance"::costing__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: costing__ids_properties__version_put{T} + var"version_put"::costing__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,costing__ids_properties} + _parent::WeakRef end function costing__ids_properties{T}() where T @@ -93405,8 +93405,8 @@ mutable struct costing__future__learning__hts{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__future__learning__hts} - _parent :: WeakRef + _ref::Union{Nothing,costing__future__learning__hts} + _parent::WeakRef end function costing__future__learning__hts{T}() where T @@ -93417,13 +93417,13 @@ end costing__future__learning__hts() = costing__future__learning__hts{Float64}() mutable struct costing__future__learning{T} <: IDS{T} - var"hts" :: costing__future__learning__hts{T} + var"hts"::costing__future__learning__hts{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__future__learning} - _parent :: WeakRef + _ref::Union{Nothing,costing__future__learning} + _parent::WeakRef end function costing__future__learning{T}() where T @@ -93437,13 +93437,13 @@ costing__future__learning() = costing__future__learning{Float64}() mutable struct costing__future{T} <: IDS{T} var"inflation_rate" :: T var"inflation_rate_σ" :: T - var"learning" :: costing__future__learning{T} + var"learning"::costing__future__learning{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__future} - _parent :: WeakRef + _ref::Union{Nothing,costing__future} + _parent::WeakRef end function costing__future{T}() where T @@ -93462,8 +93462,8 @@ mutable struct costing__cost_operations__system___subsystem{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_operations__system___subsystem} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_operations__system___subsystem} + _parent::WeakRef end function costing__cost_operations__system___subsystem{T}() where T @@ -93475,15 +93475,15 @@ costing__cost_operations__system___subsystem() = costing__cost_operations__syste mutable struct costing__cost_operations__system{T} <: IDSvectorStaticElement{T} var"name" :: String - var"subsystem" :: IDSvector{costing__cost_operations__system___subsystem{T}} + var"subsystem"::IDSvector{costing__cost_operations__system___subsystem{T}} var"yearly_cost" :: T var"yearly_cost_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_operations__system} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_operations__system} + _parent::WeakRef end function costing__cost_operations__system{T}() where T @@ -93495,15 +93495,15 @@ end costing__cost_operations__system() = costing__cost_operations__system{Float64}() mutable struct costing__cost_operations{T} <: IDS{T} - var"system" :: IDSvector{costing__cost_operations__system{T}} + var"system"::IDSvector{costing__cost_operations__system{T}} var"yearly_cost" :: T var"yearly_cost_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_operations} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_operations} + _parent::WeakRef end function costing__cost_operations{T}() where T @@ -93522,8 +93522,8 @@ mutable struct costing__cost_direct_capital__system___subsystem{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_direct_capital__system___subsystem} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_direct_capital__system___subsystem} + _parent::WeakRef end function costing__cost_direct_capital__system___subsystem{T}() where T @@ -93537,13 +93537,13 @@ mutable struct costing__cost_direct_capital__system{T} <: IDSvectorStaticElement var"cost" :: T var"cost_σ" :: T var"name" :: String - var"subsystem" :: IDSvector{costing__cost_direct_capital__system___subsystem{T}} + var"subsystem"::IDSvector{costing__cost_direct_capital__system___subsystem{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_direct_capital__system} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_direct_capital__system} + _parent::WeakRef end function costing__cost_direct_capital__system{T}() where T @@ -93557,13 +93557,13 @@ costing__cost_direct_capital__system() = costing__cost_direct_capital__system{Fl mutable struct costing__cost_direct_capital{T} <: IDS{T} var"cost" :: T var"cost_σ" :: T - var"system" :: IDSvector{costing__cost_direct_capital__system{T}} + var"system"::IDSvector{costing__cost_direct_capital__system{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_direct_capital} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_direct_capital} + _parent::WeakRef end function costing__cost_direct_capital{T}() where T @@ -93582,8 +93582,8 @@ mutable struct costing__cost_decommissioning__system___subsystem{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_decommissioning__system___subsystem} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_decommissioning__system___subsystem} + _parent::WeakRef end function costing__cost_decommissioning__system___subsystem{T}() where T @@ -93597,13 +93597,13 @@ mutable struct costing__cost_decommissioning__system{T} <: IDSvectorStaticElemen var"cost" :: T var"cost_σ" :: T var"name" :: String - var"subsystem" :: IDSvector{costing__cost_decommissioning__system___subsystem{T}} + var"subsystem"::IDSvector{costing__cost_decommissioning__system___subsystem{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_decommissioning__system} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_decommissioning__system} + _parent::WeakRef end function costing__cost_decommissioning__system{T}() where T @@ -93617,13 +93617,13 @@ costing__cost_decommissioning__system() = costing__cost_decommissioning__system{ mutable struct costing__cost_decommissioning{T} <: IDS{T} var"cost" :: T var"cost_σ" :: T - var"system" :: IDSvector{costing__cost_decommissioning__system{T}} + var"system"::IDSvector{costing__cost_decommissioning__system{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__cost_decommissioning} - _parent :: WeakRef + _ref::Union{Nothing,costing__cost_decommissioning} + _parent::WeakRef end function costing__cost_decommissioning{T}() where T @@ -93645,8 +93645,8 @@ mutable struct costing__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__code__library} - _parent :: WeakRef + _ref::Union{Nothing,costing__code__library} + _parent::WeakRef end function costing__code__library{T}() where T @@ -93659,7 +93659,7 @@ costing__code__library() = costing__code__library{Float64}() mutable struct costing__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{costing__code__library{T}} + var"library"::IDSvector{costing__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -93669,8 +93669,8 @@ mutable struct costing__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing__code} - _parent :: WeakRef + _ref::Union{Nothing,costing__code} + _parent::WeakRef end function costing__code{T}() where T @@ -93684,16 +93684,16 @@ costing__code() = costing__code{Float64}() mutable struct costing{T} <: IDStop{T} var"availability" :: T var"availability_σ" :: T - var"code" :: costing__code{T} + var"code"::costing__code{T} var"construction_start_year" :: T var"construction_start_year_σ" :: T - var"cost_decommissioning" :: costing__cost_decommissioning{T} - var"cost_direct_capital" :: costing__cost_direct_capital{T} + var"cost_decommissioning"::costing__cost_decommissioning{T} + var"cost_direct_capital"::costing__cost_direct_capital{T} var"cost_lifetime" :: T var"cost_lifetime_σ" :: T - var"cost_operations" :: costing__cost_operations{T} - var"future" :: costing__future{T} - var"ids_properties" :: costing__ids_properties{T} + var"cost_operations"::costing__cost_operations{T} + var"future"::costing__future{T} + var"ids_properties"::costing__ids_properties{T} var"levelized_CoE" :: T var"levelized_CoE_σ" :: T var"plant_lifetime" :: T @@ -93703,8 +93703,8 @@ mutable struct costing{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,costing} - _parent :: WeakRef + _ref::Union{Nothing,costing} + _parent::WeakRef end function costing{T}() where T @@ -93729,8 +93729,8 @@ mutable struct core_transport__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__vacuum_toroidal_field} + _parent::WeakRef end function core_transport__vacuum_toroidal_field{T}() where T @@ -93751,8 +93751,8 @@ mutable struct core_transport__model___profiles_1d___total_ion_energy{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___total_ion_energy} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___total_ion_energy} + _parent::WeakRef end function core_transport__model___profiles_1d___total_ion_energy{T}() where T @@ -93773,8 +93773,8 @@ mutable struct core_transport__model___profiles_1d___neutral___state___particles _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___neutral___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___neutral___state___particles} + _parent::WeakRef end function core_transport__model___profiles_1d___neutral___state___particles{T}() where T @@ -93795,8 +93795,8 @@ mutable struct core_transport__model___profiles_1d___neutral___state___energy{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___neutral___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___neutral___state___energy} + _parent::WeakRef end function core_transport__model___profiles_1d___neutral___state___energy{T}() where T @@ -93808,9 +93808,9 @@ core_transport__model___profiles_1d___neutral___state___energy() = core_transpor mutable struct core_transport__model___profiles_1d___neutral___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: core_transport__model___profiles_1d___neutral___state___energy{T} + var"energy"::core_transport__model___profiles_1d___neutral___state___energy{T} var"label" :: String - var"particles" :: core_transport__model___profiles_1d___neutral___state___particles{T} + var"particles"::core_transport__model___profiles_1d___neutral___state___particles{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -93818,8 +93818,8 @@ mutable struct core_transport__model___profiles_1d___neutral___state{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___neutral___state} + _parent::WeakRef end function core_transport__model___profiles_1d___neutral___state{T}() where T @@ -93842,8 +93842,8 @@ mutable struct core_transport__model___profiles_1d___neutral___particles{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___neutral___particles} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___neutral___particles} + _parent::WeakRef end function core_transport__model___profiles_1d___neutral___particles{T}() where T @@ -93864,8 +93864,8 @@ mutable struct core_transport__model___profiles_1d___neutral___energy{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___neutral___energy} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___neutral___energy} + _parent::WeakRef end function core_transport__model___profiles_1d___neutral___energy{T}() where T @@ -93885,8 +93885,8 @@ mutable struct core_transport__model___profiles_1d___neutral___element{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___neutral___element} + _parent::WeakRef end function core_transport__model___profiles_1d___neutral___element{T}() where T @@ -93897,19 +93897,19 @@ end core_transport__model___profiles_1d___neutral___element() = core_transport__model___profiles_1d___neutral___element{Float64}() mutable struct core_transport__model___profiles_1d___neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{core_transport__model___profiles_1d___neutral___element{T}} - var"energy" :: core_transport__model___profiles_1d___neutral___energy{T} + var"element"::IDSvector{core_transport__model___profiles_1d___neutral___element{T}} + var"energy"::core_transport__model___profiles_1d___neutral___energy{T} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int - var"particles" :: core_transport__model___profiles_1d___neutral___particles{T} - var"state" :: IDSvector{core_transport__model___profiles_1d___neutral___state{T}} + var"particles"::core_transport__model___profiles_1d___neutral___particles{T} + var"state"::IDSvector{core_transport__model___profiles_1d___neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___neutral} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___neutral} + _parent::WeakRef end function core_transport__model___profiles_1d___neutral{T}() where T @@ -93934,8 +93934,8 @@ mutable struct core_transport__model___profiles_1d___momentum_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___momentum_tor} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___momentum_tor} + _parent::WeakRef end function core_transport__model___profiles_1d___momentum_tor{T}() where T @@ -93956,8 +93956,8 @@ mutable struct core_transport__model___profiles_1d___ion___state___particles{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state___particles} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state___particles} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state___particles{T}() where T @@ -93980,8 +93980,8 @@ mutable struct core_transport__model___profiles_1d___ion___state___momentum__tor _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__toroidal} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__toroidal} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state___momentum__toroidal{T}() where T @@ -94004,8 +94004,8 @@ mutable struct core_transport__model___profiles_1d___ion___state___momentum__rad _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__radial} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__radial} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state___momentum__radial{T}() where T @@ -94028,8 +94028,8 @@ mutable struct core_transport__model___profiles_1d___ion___state___momentum__pol _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__poloidal} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__poloidal} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state___momentum__poloidal{T}() where T @@ -94052,8 +94052,8 @@ mutable struct core_transport__model___profiles_1d___ion___state___momentum__par _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__parallel} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__parallel} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state___momentum__parallel{T}() where T @@ -94076,8 +94076,8 @@ mutable struct core_transport__model___profiles_1d___ion___state___momentum__dia _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__diamagnetic} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum__diamagnetic} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state___momentum__diamagnetic{T}() where T @@ -94088,17 +94088,17 @@ end core_transport__model___profiles_1d___ion___state___momentum__diamagnetic() = core_transport__model___profiles_1d___ion___state___momentum__diamagnetic{Float64}() mutable struct core_transport__model___profiles_1d___ion___state___momentum{T} <: IDS{T} - var"diamagnetic" :: core_transport__model___profiles_1d___ion___state___momentum__diamagnetic{T} - var"parallel" :: core_transport__model___profiles_1d___ion___state___momentum__parallel{T} - var"poloidal" :: core_transport__model___profiles_1d___ion___state___momentum__poloidal{T} - var"radial" :: core_transport__model___profiles_1d___ion___state___momentum__radial{T} - var"toroidal" :: core_transport__model___profiles_1d___ion___state___momentum__toroidal{T} + var"diamagnetic"::core_transport__model___profiles_1d___ion___state___momentum__diamagnetic{T} + var"parallel"::core_transport__model___profiles_1d___ion___state___momentum__parallel{T} + var"poloidal"::core_transport__model___profiles_1d___ion___state___momentum__poloidal{T} + var"radial"::core_transport__model___profiles_1d___ion___state___momentum__radial{T} + var"toroidal"::core_transport__model___profiles_1d___ion___state___momentum__toroidal{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state___momentum} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state___momentum{T}() where T @@ -94124,8 +94124,8 @@ mutable struct core_transport__model___profiles_1d___ion___state___energy{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state___energy} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state___energy} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state___energy{T}() where T @@ -94137,10 +94137,10 @@ core_transport__model___profiles_1d___ion___state___energy() = core_transport__m mutable struct core_transport__model___profiles_1d___ion___state{T} <: IDSvectorStaticElement{T} var"electron_configuration" :: String - var"energy" :: core_transport__model___profiles_1d___ion___state___energy{T} + var"energy"::core_transport__model___profiles_1d___ion___state___energy{T} var"label" :: String - var"momentum" :: core_transport__model___profiles_1d___ion___state___momentum{T} - var"particles" :: core_transport__model___profiles_1d___ion___state___particles{T} + var"momentum"::core_transport__model___profiles_1d___ion___state___momentum{T} + var"particles"::core_transport__model___profiles_1d___ion___state___particles{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -94152,8 +94152,8 @@ mutable struct core_transport__model___profiles_1d___ion___state{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___state} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___state{T}() where T @@ -94177,8 +94177,8 @@ mutable struct core_transport__model___profiles_1d___ion___particles{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___particles} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___particles} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___particles{T}() where T @@ -94201,8 +94201,8 @@ mutable struct core_transport__model___profiles_1d___ion___momentum__toroidal{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___momentum__toroidal} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___momentum__toroidal} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___momentum__toroidal{T}() where T @@ -94225,8 +94225,8 @@ mutable struct core_transport__model___profiles_1d___ion___momentum__radial{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___momentum__radial} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___momentum__radial} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___momentum__radial{T}() where T @@ -94249,8 +94249,8 @@ mutable struct core_transport__model___profiles_1d___ion___momentum__poloidal{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___momentum__poloidal} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___momentum__poloidal} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___momentum__poloidal{T}() where T @@ -94273,8 +94273,8 @@ mutable struct core_transport__model___profiles_1d___ion___momentum__parallel{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___momentum__parallel} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___momentum__parallel} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___momentum__parallel{T}() where T @@ -94297,8 +94297,8 @@ mutable struct core_transport__model___profiles_1d___ion___momentum__diamagnetic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___momentum__diamagnetic} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___momentum__diamagnetic} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___momentum__diamagnetic{T}() where T @@ -94309,17 +94309,17 @@ end core_transport__model___profiles_1d___ion___momentum__diamagnetic() = core_transport__model___profiles_1d___ion___momentum__diamagnetic{Float64}() mutable struct core_transport__model___profiles_1d___ion___momentum{T} <: IDS{T} - var"diamagnetic" :: core_transport__model___profiles_1d___ion___momentum__diamagnetic{T} - var"parallel" :: core_transport__model___profiles_1d___ion___momentum__parallel{T} - var"poloidal" :: core_transport__model___profiles_1d___ion___momentum__poloidal{T} - var"radial" :: core_transport__model___profiles_1d___ion___momentum__radial{T} - var"toroidal" :: core_transport__model___profiles_1d___ion___momentum__toroidal{T} + var"diamagnetic"::core_transport__model___profiles_1d___ion___momentum__diamagnetic{T} + var"parallel"::core_transport__model___profiles_1d___ion___momentum__parallel{T} + var"poloidal"::core_transport__model___profiles_1d___ion___momentum__poloidal{T} + var"radial"::core_transport__model___profiles_1d___ion___momentum__radial{T} + var"toroidal"::core_transport__model___profiles_1d___ion___momentum__toroidal{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___momentum} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___momentum} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___momentum{T}() where T @@ -94345,8 +94345,8 @@ mutable struct core_transport__model___profiles_1d___ion___energy{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___energy} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___energy} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___energy{T}() where T @@ -94366,8 +94366,8 @@ mutable struct core_transport__model___profiles_1d___ion___element{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion___element} + _parent::WeakRef end function core_transport__model___profiles_1d___ion___element{T}() where T @@ -94378,22 +94378,22 @@ end core_transport__model___profiles_1d___ion___element() = core_transport__model___profiles_1d___ion___element{Float64}() mutable struct core_transport__model___profiles_1d___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{core_transport__model___profiles_1d___ion___element{T}} - var"energy" :: core_transport__model___profiles_1d___ion___energy{T} + var"element"::IDSvector{core_transport__model___profiles_1d___ion___element{T}} + var"energy"::core_transport__model___profiles_1d___ion___energy{T} var"label" :: String - var"momentum" :: core_transport__model___profiles_1d___ion___momentum{T} + var"momentum"::core_transport__model___profiles_1d___ion___momentum{T} var"multiple_states_flag" :: Int var"neutral_index" :: Int - var"particles" :: core_transport__model___profiles_1d___ion___particles{T} - var"state" :: IDSvector{core_transport__model___profiles_1d___ion___state{T}} + var"particles"::core_transport__model___profiles_1d___ion___particles{T} + var"state"::IDSvector{core_transport__model___profiles_1d___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___ion} + _parent::WeakRef end function core_transport__model___profiles_1d___ion{T}() where T @@ -94431,8 +94431,8 @@ mutable struct core_transport__model___profiles_1d___grid_v{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___grid_v} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___grid_v} + _parent::WeakRef end function core_transport__model___profiles_1d___grid_v{T}() where T @@ -94465,8 +94465,8 @@ mutable struct core_transport__model___profiles_1d___grid_flux{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___grid_flux} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___grid_flux} + _parent::WeakRef end function core_transport__model___profiles_1d___grid_flux{T}() where T @@ -94499,8 +94499,8 @@ mutable struct core_transport__model___profiles_1d___grid_d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___grid_d} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___grid_d} + _parent::WeakRef end function core_transport__model___profiles_1d___grid_d{T}() where T @@ -94521,8 +94521,8 @@ mutable struct core_transport__model___profiles_1d___electrons__particles{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___electrons__particles} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___electrons__particles} + _parent::WeakRef end function core_transport__model___profiles_1d___electrons__particles{T}() where T @@ -94543,8 +94543,8 @@ mutable struct core_transport__model___profiles_1d___electrons__energy{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___electrons__energy} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___electrons__energy} + _parent::WeakRef end function core_transport__model___profiles_1d___electrons__energy{T}() where T @@ -94555,14 +94555,14 @@ end core_transport__model___profiles_1d___electrons__energy() = core_transport__model___profiles_1d___electrons__energy{Float64}() mutable struct core_transport__model___profiles_1d___electrons{T} <: IDS{T} - var"energy" :: core_transport__model___profiles_1d___electrons__energy{T} - var"particles" :: core_transport__model___profiles_1d___electrons__particles{T} + var"energy"::core_transport__model___profiles_1d___electrons__energy{T} + var"particles"::core_transport__model___profiles_1d___electrons__particles{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d___electrons} + _parent::WeakRef end function core_transport__model___profiles_1d___electrons{T}() where T @@ -94579,21 +94579,21 @@ mutable struct core_transport__model___profiles_1d{T} <: IDSvectorTimeElement{T} var"conductivity_parallel_σ" :: Vector{<:T} var"e_field_radial" :: Vector{<:T} var"e_field_radial_σ" :: Vector{<:T} - var"electrons" :: core_transport__model___profiles_1d___electrons{T} - var"grid_d" :: core_transport__model___profiles_1d___grid_d{T} - var"grid_flux" :: core_transport__model___profiles_1d___grid_flux{T} - var"grid_v" :: core_transport__model___profiles_1d___grid_v{T} - var"ion" :: IDSvector{core_transport__model___profiles_1d___ion{T}} - var"momentum_tor" :: core_transport__model___profiles_1d___momentum_tor{T} - var"neutral" :: IDSvector{core_transport__model___profiles_1d___neutral{T}} + var"electrons"::core_transport__model___profiles_1d___electrons{T} + var"grid_d"::core_transport__model___profiles_1d___grid_d{T} + var"grid_flux"::core_transport__model___profiles_1d___grid_flux{T} + var"grid_v"::core_transport__model___profiles_1d___grid_v{T} + var"ion"::IDSvector{core_transport__model___profiles_1d___ion{T}} + var"momentum_tor"::core_transport__model___profiles_1d___momentum_tor{T} + var"neutral"::IDSvector{core_transport__model___profiles_1d___neutral{T}} var"time" :: Float64 - var"total_ion_energy" :: core_transport__model___profiles_1d___total_ion_energy{T} + var"total_ion_energy"::core_transport__model___profiles_1d___total_ion_energy{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___profiles_1d} + _parent::WeakRef end function core_transport__model___profiles_1d{T}() where T @@ -94619,8 +94619,8 @@ mutable struct core_transport__model___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___identifier} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___identifier} + _parent::WeakRef end function core_transport__model___identifier{T}() where T @@ -94637,8 +94637,8 @@ mutable struct core_transport__model___code__output_flag{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___code__output_flag} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___code__output_flag} + _parent::WeakRef end function core_transport__model___code__output_flag{T}() where T @@ -94652,7 +94652,7 @@ mutable struct core_transport__model___code{T} <: IDS{T} var"commit" :: String var"description" :: String var"name" :: String - var"output_flag" :: core_transport__model___code__output_flag{T} + var"output_flag"::core_transport__model___code__output_flag{T} var"parameters" :: String var"repository" :: String var"version" :: String @@ -94660,8 +94660,8 @@ mutable struct core_transport__model___code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model___code} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model___code} + _parent::WeakRef end function core_transport__model___code{T}() where T @@ -94673,18 +94673,18 @@ end core_transport__model___code() = core_transport__model___code{Float64}() mutable struct core_transport__model{T} <: IDSvectorStaticElement{T} - var"code" :: core_transport__model___code{T} + var"code"::core_transport__model___code{T} var"comment" :: String var"flux_multiplier" :: T var"flux_multiplier_σ" :: T - var"identifier" :: core_transport__model___identifier{T} - var"profiles_1d" :: IDSvector{core_transport__model___profiles_1d{T}} + var"identifier"::core_transport__model___identifier{T} + var"profiles_1d"::IDSvector{core_transport__model___profiles_1d{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__model} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__model} + _parent::WeakRef end function core_transport__model{T}() where T @@ -94705,8 +94705,8 @@ mutable struct core_transport__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__version_put} + _parent::WeakRef end function core_transport__ids_properties__version_put{T}() where T @@ -94723,8 +94723,8 @@ mutable struct core_transport__ids_properties__provenance__node{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__provenance__node} + _parent::WeakRef end function core_transport__ids_properties__provenance__node{T}() where T @@ -94735,13 +94735,13 @@ end core_transport__ids_properties__provenance__node() = core_transport__ids_properties__provenance__node{Float64}() mutable struct core_transport__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{core_transport__ids_properties__provenance__node{T}} + var"node"::IDSvector{core_transport__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__provenance} + _parent::WeakRef end function core_transport__ids_properties__provenance{T}() where T @@ -94763,8 +94763,8 @@ mutable struct core_transport__ids_properties__plugins__node___readback{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__plugins__node___readback} + _parent::WeakRef end function core_transport__ids_properties__plugins__node___readback{T}() where T @@ -94785,8 +94785,8 @@ mutable struct core_transport__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function core_transport__ids_properties__plugins__node___put_operation{T}() where T @@ -94807,8 +94807,8 @@ mutable struct core_transport__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function core_transport__ids_properties__plugins__node___get_operation{T}() where T @@ -94819,16 +94819,16 @@ end core_transport__ids_properties__plugins__node___get_operation() = core_transport__ids_properties__plugins__node___get_operation{Float64}() mutable struct core_transport__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{core_transport__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{core_transport__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{core_transport__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{core_transport__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{core_transport__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{core_transport__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__plugins__node} + _parent::WeakRef end function core_transport__ids_properties__plugins__node{T}() where T @@ -94851,8 +94851,8 @@ mutable struct core_transport__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function core_transport__ids_properties__plugins__infrastructure_put{T}() where T @@ -94872,8 +94872,8 @@ mutable struct core_transport__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function core_transport__ids_properties__plugins__infrastructure_get{T}() where T @@ -94884,15 +94884,15 @@ end core_transport__ids_properties__plugins__infrastructure_get() = core_transport__ids_properties__plugins__infrastructure_get{Float64}() mutable struct core_transport__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: core_transport__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: core_transport__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{core_transport__ids_properties__plugins__node{T}} + var"infrastructure_get"::core_transport__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::core_transport__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{core_transport__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__plugins} + _parent::WeakRef end function core_transport__ids_properties__plugins{T}() where T @@ -94913,8 +94913,8 @@ mutable struct core_transport__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties__occurrence_type} + _parent::WeakRef end function core_transport__ids_properties__occurrence_type{T}() where T @@ -94930,17 +94930,17 @@ mutable struct core_transport__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: core_transport__ids_properties__occurrence_type{T} - var"plugins" :: core_transport__ids_properties__plugins{T} - var"provenance" :: core_transport__ids_properties__provenance{T} + var"occurrence_type"::core_transport__ids_properties__occurrence_type{T} + var"plugins"::core_transport__ids_properties__plugins{T} + var"provenance"::core_transport__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: core_transport__ids_properties__version_put{T} + var"version_put"::core_transport__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__ids_properties} + _parent::WeakRef end function core_transport__ids_properties{T}() where T @@ -94965,8 +94965,8 @@ mutable struct core_transport__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__code__library} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__code__library} + _parent::WeakRef end function core_transport__code__library{T}() where T @@ -94979,7 +94979,7 @@ core_transport__code__library() = core_transport__code__library{Float64}() mutable struct core_transport__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{core_transport__code__library{T}} + var"library"::IDSvector{core_transport__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -94989,8 +94989,8 @@ mutable struct core_transport__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport__code} - _parent :: WeakRef + _ref::Union{Nothing,core_transport__code} + _parent::WeakRef end function core_transport__code{T}() where T @@ -95002,17 +95002,17 @@ end core_transport__code() = core_transport__code{Float64}() mutable struct core_transport{T} <: IDStop{T} - var"code" :: core_transport__code{T} - var"ids_properties" :: core_transport__ids_properties{T} - var"model" :: IDSvector{core_transport__model{T}} + var"code"::core_transport__code{T} + var"ids_properties"::core_transport__ids_properties{T} + var"model"::IDSvector{core_transport__model{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: core_transport__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::core_transport__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_transport} - _parent :: WeakRef + _ref::Union{Nothing,core_transport} + _parent::WeakRef end function core_transport{T}() where T @@ -95035,8 +95035,8 @@ mutable struct core_sources__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__vacuum_toroidal_field} + _parent::WeakRef end function core_sources__vacuum_toroidal_field{T}() where T @@ -95054,8 +95054,8 @@ mutable struct core_sources__source___species__type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species__type} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species__type} + _parent::WeakRef end function core_sources__source___species__type{T}() where T @@ -95073,8 +95073,8 @@ mutable struct core_sources__source___species__neutral__state__neutral_type{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species__neutral__state__neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species__neutral__state__neutral_type} + _parent::WeakRef end function core_sources__source___species__neutral__state__neutral_type{T}() where T @@ -95087,7 +95087,7 @@ core_sources__source___species__neutral__state__neutral_type() = core_sources__s mutable struct core_sources__source___species__neutral__state{T} <: IDS{T} var"electron_configuration" :: String var"label" :: String - var"neutral_type" :: core_sources__source___species__neutral__state__neutral_type{T} + var"neutral_type"::core_sources__source___species__neutral__state__neutral_type{T} var"vibrational_level" :: T var"vibrational_level_σ" :: T var"vibrational_mode" :: String @@ -95095,8 +95095,8 @@ mutable struct core_sources__source___species__neutral__state{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species__neutral__state} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species__neutral__state} + _parent::WeakRef end function core_sources__source___species__neutral__state{T}() where T @@ -95117,8 +95117,8 @@ mutable struct core_sources__source___species__neutral__element{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species__neutral__element} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species__neutral__element} + _parent::WeakRef end function core_sources__source___species__neutral__element{T}() where T @@ -95129,15 +95129,15 @@ end core_sources__source___species__neutral__element() = core_sources__source___species__neutral__element{Float64}() mutable struct core_sources__source___species__neutral{T} <: IDS{T} - var"element" :: IDSvector{core_sources__source___species__neutral__element{T}} + var"element"::IDSvector{core_sources__source___species__neutral__element{T}} var"label" :: String - var"state" :: core_sources__source___species__neutral__state{T} + var"state"::core_sources__source___species__neutral__state{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species__neutral} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species__neutral} + _parent::WeakRef end function core_sources__source___species__neutral{T}() where T @@ -95163,8 +95163,8 @@ mutable struct core_sources__source___species__ion__state{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species__ion__state} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species__ion__state} + _parent::WeakRef end function core_sources__source___species__ion__state{T}() where T @@ -95184,8 +95184,8 @@ mutable struct core_sources__source___species__ion__element{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species__ion__element} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species__ion__element} + _parent::WeakRef end function core_sources__source___species__ion__element{T}() where T @@ -95196,17 +95196,17 @@ end core_sources__source___species__ion__element() = core_sources__source___species__ion__element{Float64}() mutable struct core_sources__source___species__ion{T} <: IDS{T} - var"element" :: IDSvector{core_sources__source___species__ion__element{T}} + var"element"::IDSvector{core_sources__source___species__ion__element{T}} var"label" :: String - var"state" :: core_sources__source___species__ion__state{T} + var"state"::core_sources__source___species__ion__state{T} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species__ion} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species__ion} + _parent::WeakRef end function core_sources__source___species__ion{T}() where T @@ -95219,15 +95219,15 @@ end core_sources__source___species__ion() = core_sources__source___species__ion{Float64}() mutable struct core_sources__source___species{T} <: IDS{T} - var"ion" :: core_sources__source___species__ion{T} - var"neutral" :: core_sources__source___species__neutral{T} - var"type" :: core_sources__source___species__type{T} + var"ion"::core_sources__source___species__ion{T} + var"neutral"::core_sources__source___species__neutral{T} + var"type"::core_sources__source___species__type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___species} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___species} + _parent::WeakRef end function core_sources__source___species{T}() where T @@ -95249,8 +95249,8 @@ mutable struct core_sources__source___profiles_1d___total_ion_energy_decomposed{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___total_ion_energy_decomposed} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___total_ion_energy_decomposed} + _parent::WeakRef end function core_sources__source___profiles_1d___total_ion_energy_decomposed{T}() where T @@ -95268,8 +95268,8 @@ mutable struct core_sources__source___profiles_1d___neutral___state___neutral_ty _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___neutral___state___neutral_type} + _parent::WeakRef end function core_sources__source___profiles_1d___neutral___state___neutral_type{T}() where T @@ -95284,7 +95284,7 @@ mutable struct core_sources__source___profiles_1d___neutral___state{T} <: IDSvec var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} var"label" :: String - var"neutral_type" :: core_sources__source___profiles_1d___neutral___state___neutral_type{T} + var"neutral_type"::core_sources__source___profiles_1d___neutral___state___neutral_type{T} var"particles" :: Vector{<:T} var"particles_σ" :: Vector{<:T} var"vibrational_level" :: T @@ -95294,8 +95294,8 @@ mutable struct core_sources__source___profiles_1d___neutral___state{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___neutral___state} + _parent::WeakRef end function core_sources__source___profiles_1d___neutral___state{T}() where T @@ -95316,8 +95316,8 @@ mutable struct core_sources__source___profiles_1d___neutral___element{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___neutral___element} + _parent::WeakRef end function core_sources__source___profiles_1d___neutral___element{T}() where T @@ -95328,7 +95328,7 @@ end core_sources__source___profiles_1d___neutral___element() = core_sources__source___profiles_1d___neutral___element{Float64}() mutable struct core_sources__source___profiles_1d___neutral{T} <: IDSvectorStaticElement{T} - var"element" :: IDSvector{core_sources__source___profiles_1d___neutral___element{T}} + var"element"::IDSvector{core_sources__source___profiles_1d___neutral___element{T}} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} var"ion_index" :: Int @@ -95336,13 +95336,13 @@ mutable struct core_sources__source___profiles_1d___neutral{T} <: IDSvectorStati var"multiple_states_flag" :: Int var"particles" :: Vector{<:T} var"particles_σ" :: Vector{<:T} - var"state" :: IDSvector{core_sources__source___profiles_1d___neutral___state{T}} + var"state"::IDSvector{core_sources__source___profiles_1d___neutral___state{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___neutral} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___neutral} + _parent::WeakRef end function core_sources__source___profiles_1d___neutral{T}() where T @@ -95363,8 +95363,8 @@ mutable struct core_sources__source___profiles_1d___ion___state___particles_deco _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion___state___particles_decomposed} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion___state___particles_decomposed} + _parent::WeakRef end function core_sources__source___profiles_1d___ion___state___particles_decomposed{T}() where T @@ -95383,8 +95383,8 @@ mutable struct core_sources__source___profiles_1d___ion___state___energy_decompo _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion___state___energy_decomposed} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion___state___energy_decomposed} + _parent::WeakRef end function core_sources__source___profiles_1d___ion___state___energy_decomposed{T}() where T @@ -95398,11 +95398,11 @@ mutable struct core_sources__source___profiles_1d___ion___state{T} <: IDSvectorS var"electron_configuration" :: String var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"energy_decomposed" :: core_sources__source___profiles_1d___ion___state___energy_decomposed{T} + var"energy_decomposed"::core_sources__source___profiles_1d___ion___state___energy_decomposed{T} var"label" :: String var"particles" :: Vector{<:T} var"particles_σ" :: Vector{<:T} - var"particles_decomposed" :: core_sources__source___profiles_1d___ion___state___particles_decomposed{T} + var"particles_decomposed"::core_sources__source___profiles_1d___ion___state___particles_decomposed{T} var"particles_inside" :: Vector{<:T} var"particles_inside_σ" :: Vector{<:T} var"power_inside" :: Vector{<:T} @@ -95418,8 +95418,8 @@ mutable struct core_sources__source___profiles_1d___ion___state{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion___state} + _parent::WeakRef end function core_sources__source___profiles_1d___ion___state{T}() where T @@ -95440,8 +95440,8 @@ mutable struct core_sources__source___profiles_1d___ion___particles_decomposed{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion___particles_decomposed} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion___particles_decomposed} + _parent::WeakRef end function core_sources__source___profiles_1d___ion___particles_decomposed{T}() where T @@ -95460,8 +95460,8 @@ mutable struct core_sources__source___profiles_1d___ion___momentum__toroidal_dec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion___momentum__toroidal_decomposed} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion___momentum__toroidal_decomposed} + _parent::WeakRef end function core_sources__source___profiles_1d___ion___momentum__toroidal_decomposed{T}() where T @@ -95482,13 +95482,13 @@ mutable struct core_sources__source___profiles_1d___ion___momentum{T} <: IDS{T} var"radial_σ" :: Vector{<:T} var"toroidal" :: Vector{<:T} var"toroidal_σ" :: Vector{<:T} - var"toroidal_decomposed" :: core_sources__source___profiles_1d___ion___momentum__toroidal_decomposed{T} + var"toroidal_decomposed"::core_sources__source___profiles_1d___ion___momentum__toroidal_decomposed{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion___momentum} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion___momentum} + _parent::WeakRef end function core_sources__source___profiles_1d___ion___momentum{T}() where T @@ -95508,8 +95508,8 @@ mutable struct core_sources__source___profiles_1d___ion___energy_decomposed{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion___energy_decomposed} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion___energy_decomposed} + _parent::WeakRef end function core_sources__source___profiles_1d___ion___energy_decomposed{T}() where T @@ -95529,8 +95529,8 @@ mutable struct core_sources__source___profiles_1d___ion___element{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion___element} + _parent::WeakRef end function core_sources__source___profiles_1d___ion___element{T}() where T @@ -95541,32 +95541,32 @@ end core_sources__source___profiles_1d___ion___element() = core_sources__source___profiles_1d___ion___element{Float64}() mutable struct core_sources__source___profiles_1d___ion{T} <: IDSvectorIonElement{T} - var"element" :: IDSvector{core_sources__source___profiles_1d___ion___element{T}} + var"element"::IDSvector{core_sources__source___profiles_1d___ion___element{T}} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"energy_decomposed" :: core_sources__source___profiles_1d___ion___energy_decomposed{T} + var"energy_decomposed"::core_sources__source___profiles_1d___ion___energy_decomposed{T} var"fast_particles_energy" :: T var"fast_particles_energy_σ" :: T var"label" :: String - var"momentum" :: core_sources__source___profiles_1d___ion___momentum{T} + var"momentum"::core_sources__source___profiles_1d___ion___momentum{T} var"multiple_states_flag" :: Int var"neutral_index" :: Int var"particles" :: Vector{<:T} var"particles_σ" :: Vector{<:T} - var"particles_decomposed" :: core_sources__source___profiles_1d___ion___particles_decomposed{T} + var"particles_decomposed"::core_sources__source___profiles_1d___ion___particles_decomposed{T} var"particles_inside" :: Vector{<:T} var"particles_inside_σ" :: Vector{<:T} var"power_inside" :: Vector{<:T} var"power_inside_σ" :: Vector{<:T} - var"state" :: IDSvector{core_sources__source___profiles_1d___ion___state{T}} + var"state"::IDSvector{core_sources__source___profiles_1d___ion___state{T}} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___ion} + _parent::WeakRef end function core_sources__source___profiles_1d___ion{T}() where T @@ -95606,8 +95606,8 @@ mutable struct core_sources__source___profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___grid} + _parent::WeakRef end function core_sources__source___profiles_1d___grid{T}() where T @@ -95626,8 +95626,8 @@ mutable struct core_sources__source___profiles_1d___electrons__particles_decompo _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___electrons__particles_decomposed} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___electrons__particles_decomposed} + _parent::WeakRef end function core_sources__source___profiles_1d___electrons__particles_decomposed{T}() where T @@ -95646,8 +95646,8 @@ mutable struct core_sources__source___profiles_1d___electrons__energy_decomposed _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___electrons__energy_decomposed} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___electrons__energy_decomposed} + _parent::WeakRef end function core_sources__source___profiles_1d___electrons__energy_decomposed{T}() where T @@ -95660,10 +95660,10 @@ core_sources__source___profiles_1d___electrons__energy_decomposed() = core_sourc mutable struct core_sources__source___profiles_1d___electrons{T} <: IDS{T} var"energy" :: Vector{<:T} var"energy_σ" :: Vector{<:T} - var"energy_decomposed" :: core_sources__source___profiles_1d___electrons__energy_decomposed{T} + var"energy_decomposed"::core_sources__source___profiles_1d___electrons__energy_decomposed{T} var"particles" :: Vector{<:T} var"particles_σ" :: Vector{<:T} - var"particles_decomposed" :: core_sources__source___profiles_1d___electrons__particles_decomposed{T} + var"particles_decomposed"::core_sources__source___profiles_1d___electrons__particles_decomposed{T} var"particles_inside" :: Vector{<:T} var"particles_inside_σ" :: Vector{<:T} var"power_inside" :: Vector{<:T} @@ -95672,8 +95672,8 @@ mutable struct core_sources__source___profiles_1d___electrons{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d___electrons} + _parent::WeakRef end function core_sources__source___profiles_1d___electrons{T}() where T @@ -95690,30 +95690,30 @@ mutable struct core_sources__source___profiles_1d{T} <: IDSvectorTimeElement{T} var"conductivity_parallel_σ" :: Vector{<:T} var"current_parallel_inside" :: Vector{<:T} var"current_parallel_inside_σ" :: Vector{<:T} - var"electrons" :: core_sources__source___profiles_1d___electrons{T} - var"grid" :: core_sources__source___profiles_1d___grid{T} - var"ion" :: IDSvector{core_sources__source___profiles_1d___ion{T}} + var"electrons"::core_sources__source___profiles_1d___electrons{T} + var"grid"::core_sources__source___profiles_1d___grid{T} + var"ion"::IDSvector{core_sources__source___profiles_1d___ion{T}} var"j_parallel" :: Vector{<:T} var"j_parallel_σ" :: Vector{<:T} var"momentum_tor" :: Vector{<:T} var"momentum_tor_σ" :: Vector{<:T} var"momentum_tor_j_cross_b_field" :: Vector{<:T} var"momentum_tor_j_cross_b_field_σ" :: Vector{<:T} - var"neutral" :: IDSvector{core_sources__source___profiles_1d___neutral{T}} + var"neutral"::IDSvector{core_sources__source___profiles_1d___neutral{T}} var"time" :: Float64 var"torque_tor_inside" :: Vector{<:T} var"torque_tor_inside_σ" :: Vector{<:T} var"total_ion_energy" :: Vector{<:T} var"total_ion_energy_σ" :: Vector{<:T} - var"total_ion_energy_decomposed" :: core_sources__source___profiles_1d___total_ion_energy_decomposed{T} + var"total_ion_energy_decomposed"::core_sources__source___profiles_1d___total_ion_energy_decomposed{T} var"total_ion_power_inside" :: Vector{<:T} var"total_ion_power_inside_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___profiles_1d} + _parent::WeakRef end function core_sources__source___profiles_1d{T}() where T @@ -95736,8 +95736,8 @@ mutable struct core_sources__source___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___identifier} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___identifier} + _parent::WeakRef end function core_sources__source___identifier{T}() where T @@ -95756,8 +95756,8 @@ mutable struct core_sources__source___global_quantities___electrons{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___global_quantities___electrons} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___global_quantities___electrons} + _parent::WeakRef end function core_sources__source___global_quantities___electrons{T}() where T @@ -95770,7 +95770,7 @@ core_sources__source___global_quantities___electrons() = core_sources__source___ mutable struct core_sources__source___global_quantities{T} <: IDSvectorTimeElement{T} var"current_parallel" :: T var"current_parallel_σ" :: T - var"electrons" :: core_sources__source___global_quantities___electrons{T} + var"electrons"::core_sources__source___global_quantities___electrons{T} var"power" :: T var"power_σ" :: T var"time" :: Float64 @@ -95784,8 +95784,8 @@ mutable struct core_sources__source___global_quantities{T} <: IDSvectorTimeEleme _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___global_quantities} + _parent::WeakRef end function core_sources__source___global_quantities{T}() where T @@ -95803,8 +95803,8 @@ mutable struct core_sources__source___code__output_flag{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___code__output_flag} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___code__output_flag} + _parent::WeakRef end function core_sources__source___code__output_flag{T}() where T @@ -95818,7 +95818,7 @@ mutable struct core_sources__source___code{T} <: IDS{T} var"commit" :: String var"description" :: String var"name" :: String - var"output_flag" :: core_sources__source___code__output_flag{T} + var"output_flag"::core_sources__source___code__output_flag{T} var"parameters" :: String var"repository" :: String var"version" :: String @@ -95826,8 +95826,8 @@ mutable struct core_sources__source___code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source___code} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source___code} + _parent::WeakRef end function core_sources__source___code{T}() where T @@ -95839,17 +95839,17 @@ end core_sources__source___code() = core_sources__source___code{Float64}() mutable struct core_sources__source{T} <: IDSvectorStaticElement{T} - var"code" :: core_sources__source___code{T} - var"global_quantities" :: IDSvector{core_sources__source___global_quantities{T}} - var"identifier" :: core_sources__source___identifier{T} - var"profiles_1d" :: IDSvector{core_sources__source___profiles_1d{T}} - var"species" :: core_sources__source___species{T} + var"code"::core_sources__source___code{T} + var"global_quantities"::IDSvector{core_sources__source___global_quantities{T}} + var"identifier"::core_sources__source___identifier{T} + var"profiles_1d"::IDSvector{core_sources__source___profiles_1d{T}} + var"species"::core_sources__source___species{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__source} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__source} + _parent::WeakRef end function core_sources__source{T}() where T @@ -95872,8 +95872,8 @@ mutable struct core_sources__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__version_put} + _parent::WeakRef end function core_sources__ids_properties__version_put{T}() where T @@ -95890,8 +95890,8 @@ mutable struct core_sources__ids_properties__provenance__node{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__provenance__node} + _parent::WeakRef end function core_sources__ids_properties__provenance__node{T}() where T @@ -95902,13 +95902,13 @@ end core_sources__ids_properties__provenance__node() = core_sources__ids_properties__provenance__node{Float64}() mutable struct core_sources__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{core_sources__ids_properties__provenance__node{T}} + var"node"::IDSvector{core_sources__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__provenance} + _parent::WeakRef end function core_sources__ids_properties__provenance{T}() where T @@ -95930,8 +95930,8 @@ mutable struct core_sources__ids_properties__plugins__node___readback{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__plugins__node___readback} + _parent::WeakRef end function core_sources__ids_properties__plugins__node___readback{T}() where T @@ -95952,8 +95952,8 @@ mutable struct core_sources__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function core_sources__ids_properties__plugins__node___put_operation{T}() where T @@ -95974,8 +95974,8 @@ mutable struct core_sources__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function core_sources__ids_properties__plugins__node___get_operation{T}() where T @@ -95986,16 +95986,16 @@ end core_sources__ids_properties__plugins__node___get_operation() = core_sources__ids_properties__plugins__node___get_operation{Float64}() mutable struct core_sources__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{core_sources__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{core_sources__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{core_sources__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{core_sources__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{core_sources__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{core_sources__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__plugins__node} + _parent::WeakRef end function core_sources__ids_properties__plugins__node{T}() where T @@ -96018,8 +96018,8 @@ mutable struct core_sources__ids_properties__plugins__infrastructure_put{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function core_sources__ids_properties__plugins__infrastructure_put{T}() where T @@ -96039,8 +96039,8 @@ mutable struct core_sources__ids_properties__plugins__infrastructure_get{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function core_sources__ids_properties__plugins__infrastructure_get{T}() where T @@ -96051,15 +96051,15 @@ end core_sources__ids_properties__plugins__infrastructure_get() = core_sources__ids_properties__plugins__infrastructure_get{Float64}() mutable struct core_sources__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: core_sources__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: core_sources__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{core_sources__ids_properties__plugins__node{T}} + var"infrastructure_get"::core_sources__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::core_sources__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{core_sources__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__plugins} + _parent::WeakRef end function core_sources__ids_properties__plugins{T}() where T @@ -96080,8 +96080,8 @@ mutable struct core_sources__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties__occurrence_type} + _parent::WeakRef end function core_sources__ids_properties__occurrence_type{T}() where T @@ -96097,17 +96097,17 @@ mutable struct core_sources__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: core_sources__ids_properties__occurrence_type{T} - var"plugins" :: core_sources__ids_properties__plugins{T} - var"provenance" :: core_sources__ids_properties__provenance{T} + var"occurrence_type"::core_sources__ids_properties__occurrence_type{T} + var"plugins"::core_sources__ids_properties__plugins{T} + var"provenance"::core_sources__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: core_sources__ids_properties__version_put{T} + var"version_put"::core_sources__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__ids_properties} + _parent::WeakRef end function core_sources__ids_properties{T}() where T @@ -96132,8 +96132,8 @@ mutable struct core_sources__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__code__library} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__code__library} + _parent::WeakRef end function core_sources__code__library{T}() where T @@ -96146,7 +96146,7 @@ core_sources__code__library() = core_sources__code__library{Float64}() mutable struct core_sources__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{core_sources__code__library{T}} + var"library"::IDSvector{core_sources__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -96156,8 +96156,8 @@ mutable struct core_sources__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources__code} - _parent :: WeakRef + _ref::Union{Nothing,core_sources__code} + _parent::WeakRef end function core_sources__code{T}() where T @@ -96169,17 +96169,17 @@ end core_sources__code() = core_sources__code{Float64}() mutable struct core_sources{T} <: IDStop{T} - var"code" :: core_sources__code{T} - var"ids_properties" :: core_sources__ids_properties{T} - var"source" :: IDSvector{core_sources__source{T}} + var"code"::core_sources__code{T} + var"ids_properties"::core_sources__ids_properties{T} + var"source"::IDSvector{core_sources__source{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: core_sources__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::core_sources__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_sources} - _parent :: WeakRef + _ref::Union{Nothing,core_sources} + _parent::WeakRef end function core_sources{T}() where T @@ -96202,8 +96202,8 @@ mutable struct core_profiles__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__vacuum_toroidal_field} + _parent::WeakRef end function core_profiles__vacuum_toroidal_field{T}() where T @@ -96222,8 +96222,8 @@ mutable struct core_profiles__statistics___uq_input_2d___distribution{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__statistics___uq_input_2d___distribution} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__statistics___uq_input_2d___distribution} + _parent::WeakRef end function core_profiles__statistics___uq_input_2d___distribution{T}() where T @@ -96234,14 +96234,14 @@ end core_profiles__statistics___uq_input_2d___distribution() = core_profiles__statistics___uq_input_2d___distribution{Float64}() mutable struct core_profiles__statistics___uq_input_2d{T} <: IDSvectorStaticElement{T} - var"distribution" :: core_profiles__statistics___uq_input_2d___distribution{T} + var"distribution"::core_profiles__statistics___uq_input_2d___distribution{T} var"path" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__statistics___uq_input_2d} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__statistics___uq_input_2d} + _parent::WeakRef end function core_profiles__statistics___uq_input_2d{T}() where T @@ -96260,8 +96260,8 @@ mutable struct core_profiles__statistics___quantity_2d___statistics_type___ident _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__statistics___quantity_2d___statistics_type___identifier} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__statistics___quantity_2d___statistics_type___identifier} + _parent::WeakRef end function core_profiles__statistics___quantity_2d___statistics_type___identifier{T}() where T @@ -96274,7 +96274,7 @@ core_profiles__statistics___quantity_2d___statistics_type___identifier() = core_ mutable struct core_profiles__statistics___quantity_2d___statistics_type{T} <: IDSvectorStaticElement{T} var"grid_index" :: Int var"grid_subset_index" :: Int - var"identifier" :: core_profiles__statistics___quantity_2d___statistics_type___identifier{T} + var"identifier"::core_profiles__statistics___quantity_2d___statistics_type___identifier{T} var"uq_input_path" :: Int var"value" :: Vector{<:T} var"value_σ" :: Vector{<:T} @@ -96282,8 +96282,8 @@ mutable struct core_profiles__statistics___quantity_2d___statistics_type{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__statistics___quantity_2d___statistics_type} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__statistics___quantity_2d___statistics_type} + _parent::WeakRef end function core_profiles__statistics___quantity_2d___statistics_type{T}() where T @@ -96303,8 +96303,8 @@ mutable struct core_profiles__statistics___quantity_2d___distribution{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__statistics___quantity_2d___distribution} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__statistics___quantity_2d___distribution} + _parent::WeakRef end function core_profiles__statistics___quantity_2d___distribution{T}() where T @@ -96315,15 +96315,15 @@ end core_profiles__statistics___quantity_2d___distribution() = core_profiles__statistics___quantity_2d___distribution{Float64}() mutable struct core_profiles__statistics___quantity_2d{T} <: IDSvectorStaticElement{T} - var"distribution" :: core_profiles__statistics___quantity_2d___distribution{T} + var"distribution"::core_profiles__statistics___quantity_2d___distribution{T} var"path" :: String - var"statistics_type" :: IDSvector{core_profiles__statistics___quantity_2d___statistics_type{T}} + var"statistics_type"::IDSvector{core_profiles__statistics___quantity_2d___statistics_type{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__statistics___quantity_2d} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__statistics___quantity_2d} + _parent::WeakRef end function core_profiles__statistics___quantity_2d{T}() where T @@ -96336,17 +96336,17 @@ end core_profiles__statistics___quantity_2d() = core_profiles__statistics___quantity_2d{Float64}() mutable struct core_profiles__statistics{T} <: IDSvectorTimeElement{T} - var"quantity_2d" :: IDSvector{core_profiles__statistics___quantity_2d{T}} + var"quantity_2d"::IDSvector{core_profiles__statistics___quantity_2d{T}} var"time" :: Float64 var"time_width" :: T var"time_width_σ" :: T - var"uq_input_2d" :: IDSvector{core_profiles__statistics___uq_input_2d{T}} + var"uq_input_2d"::IDSvector{core_profiles__statistics___uq_input_2d{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__statistics} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__statistics} + _parent::WeakRef end function core_profiles__statistics{T}() where T @@ -96373,8 +96373,8 @@ mutable struct core_profiles__profiles_2d___ion___velocity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_2d___ion___velocity} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_2d___ion___velocity} + _parent::WeakRef end function core_profiles__profiles_2d___ion___velocity{T}() where T @@ -96422,8 +96422,8 @@ mutable struct core_profiles__profiles_2d___ion___state{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_2d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_2d___ion___state} + _parent::WeakRef end function core_profiles__profiles_2d___ion___state{T}() where T @@ -96443,8 +96443,8 @@ mutable struct core_profiles__profiles_2d___ion___element{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_2d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_2d___ion___element} + _parent::WeakRef end function core_profiles__profiles_2d___ion___element{T}() where T @@ -96461,7 +96461,7 @@ mutable struct core_profiles__profiles_2d___ion{T} <: IDSvectorIonElement{T} var"density_fast_σ" :: Matrix{<:T} var"density_thermal" :: Matrix{<:T} var"density_thermal_σ" :: Matrix{<:T} - var"element" :: IDSvector{core_profiles__profiles_2d___ion___element{T}} + var"element"::IDSvector{core_profiles__profiles_2d___ion___element{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int @@ -96475,18 +96475,18 @@ mutable struct core_profiles__profiles_2d___ion{T} <: IDSvectorIonElement{T} var"pressure_thermal_σ" :: Matrix{<:T} var"rotation_frequency_tor" :: Matrix{<:T} var"rotation_frequency_tor_σ" :: Matrix{<:T} - var"state" :: IDSvector{core_profiles__profiles_2d___ion___state{T}} + var"state"::IDSvector{core_profiles__profiles_2d___ion___state{T}} var"temperature" :: Matrix{<:T} var"temperature_σ" :: Matrix{<:T} - var"velocity" :: core_profiles__profiles_2d___ion___velocity{T} + var"velocity"::core_profiles__profiles_2d___ion___velocity{T} var"z_ion" :: T var"z_ion_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_2d___ion} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_2d___ion} + _parent::WeakRef end function core_profiles__profiles_2d___ion{T}() where T @@ -96507,8 +96507,8 @@ mutable struct core_profiles__profiles_2d___grid_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_2d___grid_type} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_2d___grid_type} + _parent::WeakRef end function core_profiles__profiles_2d___grid_type{T}() where T @@ -96529,8 +96529,8 @@ mutable struct core_profiles__profiles_2d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_2d___grid} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_2d___grid} + _parent::WeakRef end function core_profiles__profiles_2d___grid{T}() where T @@ -96541,9 +96541,9 @@ end core_profiles__profiles_2d___grid() = core_profiles__profiles_2d___grid{Float64}() mutable struct core_profiles__profiles_2d{T} <: IDSvectorTimeElement{T} - var"grid" :: core_profiles__profiles_2d___grid{T} - var"grid_type" :: core_profiles__profiles_2d___grid_type{T} - var"ion" :: IDSvector{core_profiles__profiles_2d___ion{T}} + var"grid"::core_profiles__profiles_2d___grid{T} + var"grid_type"::core_profiles__profiles_2d___grid_type{T} + var"ion"::IDSvector{core_profiles__profiles_2d___ion{T}} var"momentum_tor" :: Matrix{<:T} var"momentum_tor_σ" :: Matrix{<:T} var"n_i_thermal_total" :: Matrix{<:T} @@ -96567,8 +96567,8 @@ mutable struct core_profiles__profiles_2d{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_2d} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_2d} + _parent::WeakRef end function core_profiles__profiles_2d{T}() where T @@ -96589,8 +96589,8 @@ mutable struct core_profiles__profiles_1d___zeff_fit__time_measurement_slice_met _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___zeff_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___zeff_fit__time_measurement_slice_method} + _parent::WeakRef end function core_profiles__profiles_1d___zeff_fit__time_measurement_slice_method{T}() where T @@ -96614,7 +96614,7 @@ mutable struct core_profiles__profiles_1d___zeff_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_profiles__profiles_1d___zeff_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_profiles__profiles_1d___zeff_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -96623,8 +96623,8 @@ mutable struct core_profiles__profiles_1d___zeff_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___zeff_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___zeff_fit} + _parent::WeakRef end function core_profiles__profiles_1d___zeff_fit{T}() where T @@ -96643,8 +96643,8 @@ mutable struct core_profiles__profiles_1d___t_i_average_fit__time_measurement_sl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method} + _parent::WeakRef end function core_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method{T}() where T @@ -96668,7 +96668,7 @@ mutable struct core_profiles__profiles_1d___t_i_average_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_profiles__profiles_1d___t_i_average_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -96677,8 +96677,8 @@ mutable struct core_profiles__profiles_1d___t_i_average_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___t_i_average_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___t_i_average_fit} + _parent::WeakRef end function core_profiles__profiles_1d___t_i_average_fit{T}() where T @@ -96697,8 +96697,8 @@ mutable struct core_profiles__profiles_1d___neutral___state___neutral_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___neutral___state___neutral_type} + _parent::WeakRef end function core_profiles__profiles_1d___neutral___state___neutral_type{T}() where T @@ -96717,7 +96717,7 @@ mutable struct core_profiles__profiles_1d___neutral___state{T} <: IDSvectorStati var"density_thermal_σ" :: Vector{<:T} var"electron_configuration" :: String var"label" :: String - var"neutral_type" :: core_profiles__profiles_1d___neutral___state___neutral_type{T} + var"neutral_type"::core_profiles__profiles_1d___neutral___state___neutral_type{T} var"pressure" :: Vector{<:T} var"pressure_σ" :: Vector{<:T} var"pressure_fast_parallel" :: Vector{<:T} @@ -96735,8 +96735,8 @@ mutable struct core_profiles__profiles_1d___neutral___state{T} <: IDSvectorStati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___neutral___state} + _parent::WeakRef end function core_profiles__profiles_1d___neutral___state{T}() where T @@ -96757,8 +96757,8 @@ mutable struct core_profiles__profiles_1d___neutral___element{T} <: IDSvectorSta _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___neutral___element} + _parent::WeakRef end function core_profiles__profiles_1d___neutral___element{T}() where T @@ -96775,7 +96775,7 @@ mutable struct core_profiles__profiles_1d___neutral{T} <: IDSvectorStaticElement var"density_fast_σ" :: Vector{<:T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} - var"element" :: IDSvector{core_profiles__profiles_1d___neutral___element{T}} + var"element"::IDSvector{core_profiles__profiles_1d___neutral___element{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int @@ -96787,15 +96787,15 @@ mutable struct core_profiles__profiles_1d___neutral{T} <: IDSvectorStaticElement var"pressure_fast_perpendicular_σ" :: Vector{<:T} var"pressure_thermal" :: Vector{<:T} var"pressure_thermal_σ" :: Vector{<:T} - var"state" :: IDSvector{core_profiles__profiles_1d___neutral___state{T}} + var"state"::IDSvector{core_profiles__profiles_1d___neutral___state{T}} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___neutral} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___neutral} + _parent::WeakRef end function core_profiles__profiles_1d___neutral{T}() where T @@ -96822,8 +96822,8 @@ mutable struct core_profiles__profiles_1d___ion___velocity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___velocity} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___velocity} + _parent::WeakRef end function core_profiles__profiles_1d___ion___velocity{T}() where T @@ -96841,8 +96841,8 @@ mutable struct core_profiles__profiles_1d___ion___temperature_fit__time_measurem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method} + _parent::WeakRef end function core_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method{T}() where T @@ -96866,7 +96866,7 @@ mutable struct core_profiles__profiles_1d___ion___temperature_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_profiles__profiles_1d___ion___temperature_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -96875,8 +96875,8 @@ mutable struct core_profiles__profiles_1d___ion___temperature_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___temperature_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___temperature_fit} + _parent::WeakRef end function core_profiles__profiles_1d___ion___temperature_fit{T}() where T @@ -96895,8 +96895,8 @@ mutable struct core_profiles__profiles_1d___ion___state___density_fit__time_meas _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method} + _parent::WeakRef end function core_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method{T}() where T @@ -96920,7 +96920,7 @@ mutable struct core_profiles__profiles_1d___ion___state___density_fit{T} <: IDS{ var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_profiles__profiles_1d___ion___state___density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -96929,8 +96929,8 @@ mutable struct core_profiles__profiles_1d___ion___state___density_fit{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___state___density_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___state___density_fit} + _parent::WeakRef end function core_profiles__profiles_1d___ion___state___density_fit{T}() where T @@ -96946,7 +96946,7 @@ mutable struct core_profiles__profiles_1d___ion___state{T} <: IDSvectorStaticEle var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: core_profiles__profiles_1d___ion___state___density_fit{T} + var"density_fit"::core_profiles__profiles_1d___ion___state___density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"electron_configuration" :: String @@ -96984,8 +96984,8 @@ mutable struct core_profiles__profiles_1d___ion___state{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___state} + _parent::WeakRef end function core_profiles__profiles_1d___ion___state{T}() where T @@ -97006,8 +97006,8 @@ mutable struct core_profiles__profiles_1d___ion___element{T} <: IDSvectorStaticE _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___element} + _parent::WeakRef end function core_profiles__profiles_1d___ion___element{T}() where T @@ -97025,8 +97025,8 @@ mutable struct core_profiles__profiles_1d___ion___density_fit__time_measurement_ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method} + _parent::WeakRef end function core_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method{T}() where T @@ -97050,7 +97050,7 @@ mutable struct core_profiles__profiles_1d___ion___density_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_profiles__profiles_1d___ion___density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -97059,8 +97059,8 @@ mutable struct core_profiles__profiles_1d___ion___density_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion___density_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion___density_fit} + _parent::WeakRef end function core_profiles__profiles_1d___ion___density_fit{T}() where T @@ -97076,11 +97076,11 @@ mutable struct core_profiles__profiles_1d___ion{T} <: IDSvectorIonElement{T} var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: core_profiles__profiles_1d___ion___density_fit{T} + var"density_fit"::core_profiles__profiles_1d___ion___density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"density_validity" :: Int - var"element" :: IDSvector{core_profiles__profiles_1d___ion___element{T}} + var"element"::IDSvector{core_profiles__profiles_1d___ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -97094,12 +97094,12 @@ mutable struct core_profiles__profiles_1d___ion{T} <: IDSvectorIonElement{T} var"pressure_thermal_σ" :: Vector{<:T} var"rotation_frequency_tor" :: Vector{<:T} var"rotation_frequency_tor_σ" :: Vector{<:T} - var"state" :: IDSvector{core_profiles__profiles_1d___ion___state{T}} + var"state"::IDSvector{core_profiles__profiles_1d___ion___state{T}} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} - var"temperature_fit" :: core_profiles__profiles_1d___ion___temperature_fit{T} + var"temperature_fit"::core_profiles__profiles_1d___ion___temperature_fit{T} var"temperature_validity" :: Int - var"velocity" :: core_profiles__profiles_1d___ion___velocity{T} + var"velocity"::core_profiles__profiles_1d___ion___velocity{T} var"z_ion" :: T var"z_ion_σ" :: T var"z_ion_1d" :: Vector{<:T} @@ -97110,8 +97110,8 @@ mutable struct core_profiles__profiles_1d___ion{T} <: IDSvectorIonElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___ion} + _parent::WeakRef end function core_profiles__profiles_1d___ion{T}() where T @@ -97151,8 +97151,8 @@ mutable struct core_profiles__profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___grid} + _parent::WeakRef end function core_profiles__profiles_1d___grid{T}() where T @@ -97170,8 +97170,8 @@ mutable struct core_profiles__profiles_1d___electrons__temperature_fit__time_mea _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method} + _parent::WeakRef end function core_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T}() where T @@ -97195,7 +97195,7 @@ mutable struct core_profiles__profiles_1d___electrons__temperature_fit{T} <: IDS var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_profiles__profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -97204,8 +97204,8 @@ mutable struct core_profiles__profiles_1d___electrons__temperature_fit{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___electrons__temperature_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___electrons__temperature_fit} + _parent::WeakRef end function core_profiles__profiles_1d___electrons__temperature_fit{T}() where T @@ -97224,8 +97224,8 @@ mutable struct core_profiles__profiles_1d___electrons__density_fit__time_measure _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method} + _parent::WeakRef end function core_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method{T}() where T @@ -97249,7 +97249,7 @@ mutable struct core_profiles__profiles_1d___electrons__density_fit{T} <: IDS{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_profiles__profiles_1d___electrons__density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -97258,8 +97258,8 @@ mutable struct core_profiles__profiles_1d___electrons__density_fit{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___electrons__density_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___electrons__density_fit} + _parent::WeakRef end function core_profiles__profiles_1d___electrons__density_fit{T}() where T @@ -97277,7 +97277,7 @@ mutable struct core_profiles__profiles_1d___electrons{T} <: IDS{T} var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: core_profiles__profiles_1d___electrons__density_fit{T} + var"density_fit"::core_profiles__profiles_1d___electrons__density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"density_validity" :: Int @@ -97291,14 +97291,14 @@ mutable struct core_profiles__profiles_1d___electrons{T} <: IDS{T} var"pressure_thermal_σ" :: Vector{<:T} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} - var"temperature_fit" :: core_profiles__profiles_1d___electrons__temperature_fit{T} + var"temperature_fit"::core_profiles__profiles_1d___electrons__temperature_fit{T} var"temperature_validity" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___electrons} + _parent::WeakRef end function core_profiles__profiles_1d___electrons{T}() where T @@ -97325,8 +97325,8 @@ mutable struct core_profiles__profiles_1d___e_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d___e_field} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d___e_field} + _parent::WeakRef end function core_profiles__profiles_1d___e_field{T}() where T @@ -97341,10 +97341,10 @@ mutable struct core_profiles__profiles_1d{T} <: IDSvectorTimeElement{T} var"conductivity_parallel_σ" :: Vector{<:T} var"current_parallel_inside" :: Vector{<:T} var"current_parallel_inside_σ" :: Vector{<:T} - var"e_field" :: core_profiles__profiles_1d___e_field{T} - var"electrons" :: core_profiles__profiles_1d___electrons{T} - var"grid" :: core_profiles__profiles_1d___grid{T} - var"ion" :: IDSvector{core_profiles__profiles_1d___ion{T}} + var"e_field"::core_profiles__profiles_1d___e_field{T} + var"electrons"::core_profiles__profiles_1d___electrons{T} + var"grid"::core_profiles__profiles_1d___grid{T} + var"ion"::IDSvector{core_profiles__profiles_1d___ion{T}} var"j_bootstrap" :: Vector{<:T} var"j_bootstrap_σ" :: Vector{<:T} var"j_non_inductive" :: Vector{<:T} @@ -97363,7 +97363,7 @@ mutable struct core_profiles__profiles_1d{T} <: IDSvectorTimeElement{T} var"n_i_thermal_total_σ" :: Vector{<:T} var"n_i_total_over_n_e" :: Vector{<:T} var"n_i_total_over_n_e_σ" :: Vector{<:T} - var"neutral" :: IDSvector{core_profiles__profiles_1d___neutral{T}} + var"neutral"::IDSvector{core_profiles__profiles_1d___neutral{T}} var"phi_potential" :: Vector{<:T} var"phi_potential_σ" :: Vector{<:T} var"pressure" :: Vector{<:T} @@ -97382,17 +97382,17 @@ mutable struct core_profiles__profiles_1d{T} <: IDSvectorTimeElement{T} var"rotation_frequency_tor_sonic_σ" :: Vector{<:T} var"t_i_average" :: Vector{<:T} var"t_i_average_σ" :: Vector{<:T} - var"t_i_average_fit" :: core_profiles__profiles_1d___t_i_average_fit{T} + var"t_i_average_fit"::core_profiles__profiles_1d___t_i_average_fit{T} var"time" :: Float64 var"zeff" :: Vector{<:T} var"zeff_σ" :: Vector{<:T} - var"zeff_fit" :: core_profiles__profiles_1d___zeff_fit{T} + var"zeff_fit"::core_profiles__profiles_1d___zeff_fit{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__profiles_1d} + _parent::WeakRef end function core_profiles__profiles_1d{T}() where T @@ -97417,8 +97417,8 @@ mutable struct core_profiles__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__version_put} + _parent::WeakRef end function core_profiles__ids_properties__version_put{T}() where T @@ -97435,8 +97435,8 @@ mutable struct core_profiles__ids_properties__provenance__node{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__provenance__node} + _parent::WeakRef end function core_profiles__ids_properties__provenance__node{T}() where T @@ -97447,13 +97447,13 @@ end core_profiles__ids_properties__provenance__node() = core_profiles__ids_properties__provenance__node{Float64}() mutable struct core_profiles__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{core_profiles__ids_properties__provenance__node{T}} + var"node"::IDSvector{core_profiles__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__provenance} + _parent::WeakRef end function core_profiles__ids_properties__provenance{T}() where T @@ -97475,8 +97475,8 @@ mutable struct core_profiles__ids_properties__plugins__node___readback{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__plugins__node___readback} + _parent::WeakRef end function core_profiles__ids_properties__plugins__node___readback{T}() where T @@ -97497,8 +97497,8 @@ mutable struct core_profiles__ids_properties__plugins__node___put_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function core_profiles__ids_properties__plugins__node___put_operation{T}() where T @@ -97519,8 +97519,8 @@ mutable struct core_profiles__ids_properties__plugins__node___get_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function core_profiles__ids_properties__plugins__node___get_operation{T}() where T @@ -97531,16 +97531,16 @@ end core_profiles__ids_properties__plugins__node___get_operation() = core_profiles__ids_properties__plugins__node___get_operation{Float64}() mutable struct core_profiles__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{core_profiles__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{core_profiles__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{core_profiles__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{core_profiles__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{core_profiles__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{core_profiles__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__plugins__node} + _parent::WeakRef end function core_profiles__ids_properties__plugins__node{T}() where T @@ -97563,8 +97563,8 @@ mutable struct core_profiles__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function core_profiles__ids_properties__plugins__infrastructure_put{T}() where T @@ -97584,8 +97584,8 @@ mutable struct core_profiles__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function core_profiles__ids_properties__plugins__infrastructure_get{T}() where T @@ -97596,15 +97596,15 @@ end core_profiles__ids_properties__plugins__infrastructure_get() = core_profiles__ids_properties__plugins__infrastructure_get{Float64}() mutable struct core_profiles__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: core_profiles__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: core_profiles__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{core_profiles__ids_properties__plugins__node{T}} + var"infrastructure_get"::core_profiles__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::core_profiles__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{core_profiles__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__plugins} + _parent::WeakRef end function core_profiles__ids_properties__plugins{T}() where T @@ -97625,8 +97625,8 @@ mutable struct core_profiles__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties__occurrence_type} + _parent::WeakRef end function core_profiles__ids_properties__occurrence_type{T}() where T @@ -97642,17 +97642,17 @@ mutable struct core_profiles__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: core_profiles__ids_properties__occurrence_type{T} - var"plugins" :: core_profiles__ids_properties__plugins{T} - var"provenance" :: core_profiles__ids_properties__provenance{T} + var"occurrence_type"::core_profiles__ids_properties__occurrence_type{T} + var"plugins"::core_profiles__ids_properties__plugins{T} + var"provenance"::core_profiles__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: core_profiles__ids_properties__version_put{T} + var"version_put"::core_profiles__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__ids_properties} + _parent::WeakRef end function core_profiles__ids_properties{T}() where T @@ -97675,8 +97675,8 @@ mutable struct core_profiles__global_quantities__ion{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__global_quantities__ion} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__global_quantities__ion} + _parent::WeakRef end function core_profiles__global_quantities__ion{T}() where T @@ -97703,7 +97703,7 @@ mutable struct core_profiles__global_quantities{T} <: IDS{T} var"ejima_σ" :: Vector{<:T} var"energy_diamagnetic" :: Vector{<:T} var"energy_diamagnetic_σ" :: Vector{<:T} - var"ion" :: IDSvector{core_profiles__global_quantities__ion{T}} + var"ion"::IDSvector{core_profiles__global_quantities__ion{T}} var"ion_time_slice" :: T var"ion_time_slice_σ" :: T var"ip" :: Vector{<:T} @@ -97730,8 +97730,8 @@ mutable struct core_profiles__global_quantities{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__global_quantities} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__global_quantities} + _parent::WeakRef end function core_profiles__global_quantities{T}() where T @@ -97751,8 +97751,8 @@ mutable struct core_profiles__covariance{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__covariance} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__covariance} + _parent::WeakRef end function core_profiles__covariance{T}() where T @@ -97773,8 +97773,8 @@ mutable struct core_profiles__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__code__library} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__code__library} + _parent::WeakRef end function core_profiles__code__library{T}() where T @@ -97787,7 +97787,7 @@ core_profiles__code__library() = core_profiles__code__library{Float64}() mutable struct core_profiles__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{core_profiles__code__library{T}} + var"library"::IDSvector{core_profiles__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -97797,8 +97797,8 @@ mutable struct core_profiles__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles__code} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles__code} + _parent::WeakRef end function core_profiles__code{T}() where T @@ -97810,21 +97810,21 @@ end core_profiles__code() = core_profiles__code{Float64}() mutable struct core_profiles{T} <: IDStop{T} - var"code" :: core_profiles__code{T} - var"covariance" :: core_profiles__covariance{T} - var"global_quantities" :: core_profiles__global_quantities{T} - var"ids_properties" :: core_profiles__ids_properties{T} - var"profiles_1d" :: IDSvector{core_profiles__profiles_1d{T}} - var"profiles_2d" :: IDSvector{core_profiles__profiles_2d{T}} - var"statistics" :: IDSvector{core_profiles__statistics{T}} + var"code"::core_profiles__code{T} + var"covariance"::core_profiles__covariance{T} + var"global_quantities"::core_profiles__global_quantities{T} + var"ids_properties"::core_profiles__ids_properties{T} + var"profiles_1d"::IDSvector{core_profiles__profiles_1d{T}} + var"profiles_2d"::IDSvector{core_profiles__profiles_2d{T}} + var"statistics"::IDSvector{core_profiles__statistics{T}} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: core_profiles__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::core_profiles__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_profiles} - _parent :: WeakRef + _ref::Union{Nothing,core_profiles} + _parent::WeakRef end function core_profiles{T}() where T @@ -97851,8 +97851,8 @@ mutable struct core_instant_changes__vacuum_toroidal_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__vacuum_toroidal_field} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__vacuum_toroidal_field} + _parent::WeakRef end function core_instant_changes__vacuum_toroidal_field{T}() where T @@ -97870,8 +97870,8 @@ mutable struct core_instant_changes__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__version_put} + _parent::WeakRef end function core_instant_changes__ids_properties__version_put{T}() where T @@ -97888,8 +97888,8 @@ mutable struct core_instant_changes__ids_properties__provenance__node{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__provenance__node} + _parent::WeakRef end function core_instant_changes__ids_properties__provenance__node{T}() where T @@ -97900,13 +97900,13 @@ end core_instant_changes__ids_properties__provenance__node() = core_instant_changes__ids_properties__provenance__node{Float64}() mutable struct core_instant_changes__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{core_instant_changes__ids_properties__provenance__node{T}} + var"node"::IDSvector{core_instant_changes__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__provenance} + _parent::WeakRef end function core_instant_changes__ids_properties__provenance{T}() where T @@ -97928,8 +97928,8 @@ mutable struct core_instant_changes__ids_properties__plugins__node___readback{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__plugins__node___readback} + _parent::WeakRef end function core_instant_changes__ids_properties__plugins__node___readback{T}() where T @@ -97950,8 +97950,8 @@ mutable struct core_instant_changes__ids_properties__plugins__node___put_operati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function core_instant_changes__ids_properties__plugins__node___put_operation{T}() where T @@ -97972,8 +97972,8 @@ mutable struct core_instant_changes__ids_properties__plugins__node___get_operati _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function core_instant_changes__ids_properties__plugins__node___get_operation{T}() where T @@ -97984,16 +97984,16 @@ end core_instant_changes__ids_properties__plugins__node___get_operation() = core_instant_changes__ids_properties__plugins__node___get_operation{Float64}() mutable struct core_instant_changes__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{core_instant_changes__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{core_instant_changes__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{core_instant_changes__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{core_instant_changes__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{core_instant_changes__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{core_instant_changes__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__plugins__node} + _parent::WeakRef end function core_instant_changes__ids_properties__plugins__node{T}() where T @@ -98016,8 +98016,8 @@ mutable struct core_instant_changes__ids_properties__plugins__infrastructure_put _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function core_instant_changes__ids_properties__plugins__infrastructure_put{T}() where T @@ -98037,8 +98037,8 @@ mutable struct core_instant_changes__ids_properties__plugins__infrastructure_get _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function core_instant_changes__ids_properties__plugins__infrastructure_get{T}() where T @@ -98049,15 +98049,15 @@ end core_instant_changes__ids_properties__plugins__infrastructure_get() = core_instant_changes__ids_properties__plugins__infrastructure_get{Float64}() mutable struct core_instant_changes__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: core_instant_changes__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: core_instant_changes__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{core_instant_changes__ids_properties__plugins__node{T}} + var"infrastructure_get"::core_instant_changes__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::core_instant_changes__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{core_instant_changes__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__plugins} + _parent::WeakRef end function core_instant_changes__ids_properties__plugins{T}() where T @@ -98078,8 +98078,8 @@ mutable struct core_instant_changes__ids_properties__occurrence_type{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties__occurrence_type} + _parent::WeakRef end function core_instant_changes__ids_properties__occurrence_type{T}() where T @@ -98095,17 +98095,17 @@ mutable struct core_instant_changes__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: core_instant_changes__ids_properties__occurrence_type{T} - var"plugins" :: core_instant_changes__ids_properties__plugins{T} - var"provenance" :: core_instant_changes__ids_properties__provenance{T} + var"occurrence_type"::core_instant_changes__ids_properties__occurrence_type{T} + var"plugins"::core_instant_changes__ids_properties__plugins{T} + var"provenance"::core_instant_changes__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: core_instant_changes__ids_properties__version_put{T} + var"version_put"::core_instant_changes__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__ids_properties} + _parent::WeakRef end function core_instant_changes__ids_properties{T}() where T @@ -98130,8 +98130,8 @@ mutable struct core_instant_changes__code__library{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__code__library} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__code__library} + _parent::WeakRef end function core_instant_changes__code__library{T}() where T @@ -98144,7 +98144,7 @@ core_instant_changes__code__library() = core_instant_changes__code__library{Floa mutable struct core_instant_changes__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{core_instant_changes__code__library{T}} + var"library"::IDSvector{core_instant_changes__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -98154,8 +98154,8 @@ mutable struct core_instant_changes__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__code} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__code} + _parent::WeakRef end function core_instant_changes__code{T}() where T @@ -98174,8 +98174,8 @@ mutable struct core_instant_changes__change___profiles_1d___zeff_fit__time_measu _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___zeff_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___zeff_fit__time_measurement_slice_method} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___zeff_fit__time_measurement_slice_method{T}() where T @@ -98199,7 +98199,7 @@ mutable struct core_instant_changes__change___profiles_1d___zeff_fit{T} <: IDS{T var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_instant_changes__change___profiles_1d___zeff_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_instant_changes__change___profiles_1d___zeff_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -98208,8 +98208,8 @@ mutable struct core_instant_changes__change___profiles_1d___zeff_fit{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___zeff_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___zeff_fit} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___zeff_fit{T}() where T @@ -98228,8 +98228,8 @@ mutable struct core_instant_changes__change___profiles_1d___t_i_average_fit__tim _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___t_i_average_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___t_i_average_fit__time_measurement_slice_method} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___t_i_average_fit__time_measurement_slice_method{T}() where T @@ -98253,7 +98253,7 @@ mutable struct core_instant_changes__change___profiles_1d___t_i_average_fit{T} < var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_instant_changes__change___profiles_1d___t_i_average_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_instant_changes__change___profiles_1d___t_i_average_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -98262,8 +98262,8 @@ mutable struct core_instant_changes__change___profiles_1d___t_i_average_fit{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___t_i_average_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___t_i_average_fit} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___t_i_average_fit{T}() where T @@ -98282,8 +98282,8 @@ mutable struct core_instant_changes__change___profiles_1d___neutral___state___ne _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___neutral___state___neutral_type} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___neutral___state___neutral_type} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___neutral___state___neutral_type{T}() where T @@ -98302,7 +98302,7 @@ mutable struct core_instant_changes__change___profiles_1d___neutral___state{T} < var"density_thermal_σ" :: Vector{<:T} var"electron_configuration" :: String var"label" :: String - var"neutral_type" :: core_instant_changes__change___profiles_1d___neutral___state___neutral_type{T} + var"neutral_type"::core_instant_changes__change___profiles_1d___neutral___state___neutral_type{T} var"pressure" :: Vector{<:T} var"pressure_σ" :: Vector{<:T} var"pressure_fast_parallel" :: Vector{<:T} @@ -98320,8 +98320,8 @@ mutable struct core_instant_changes__change___profiles_1d___neutral___state{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___neutral___state} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___neutral___state} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___neutral___state{T}() where T @@ -98342,8 +98342,8 @@ mutable struct core_instant_changes__change___profiles_1d___neutral___element{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___neutral___element} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___neutral___element} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___neutral___element{T}() where T @@ -98360,7 +98360,7 @@ mutable struct core_instant_changes__change___profiles_1d___neutral{T} <: IDSvec var"density_fast_σ" :: Vector{<:T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} - var"element" :: IDSvector{core_instant_changes__change___profiles_1d___neutral___element{T}} + var"element"::IDSvector{core_instant_changes__change___profiles_1d___neutral___element{T}} var"ion_index" :: Int var"label" :: String var"multiple_states_flag" :: Int @@ -98372,15 +98372,15 @@ mutable struct core_instant_changes__change___profiles_1d___neutral{T} <: IDSvec var"pressure_fast_perpendicular_σ" :: Vector{<:T} var"pressure_thermal" :: Vector{<:T} var"pressure_thermal_σ" :: Vector{<:T} - var"state" :: IDSvector{core_instant_changes__change___profiles_1d___neutral___state{T}} + var"state"::IDSvector{core_instant_changes__change___profiles_1d___neutral___state{T}} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___neutral} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___neutral} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___neutral{T}() where T @@ -98407,8 +98407,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___velocity{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___velocity} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___velocity} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___velocity{T}() where T @@ -98426,8 +98426,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___temperature_fi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___temperature_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___temperature_fit__time_measurement_slice_method} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___temperature_fit__time_measurement_slice_method{T}() where T @@ -98451,7 +98451,7 @@ mutable struct core_instant_changes__change___profiles_1d___ion___temperature_fi var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_instant_changes__change___profiles_1d___ion___temperature_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_instant_changes__change___profiles_1d___ion___temperature_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -98460,8 +98460,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___temperature_fi _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___temperature_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___temperature_fit} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___temperature_fit{T}() where T @@ -98480,8 +98480,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___state___densit _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___state___density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___state___density_fit__time_measurement_slice_method} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___state___density_fit__time_measurement_slice_method{T}() where T @@ -98505,7 +98505,7 @@ mutable struct core_instant_changes__change___profiles_1d___ion___state___densit var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_instant_changes__change___profiles_1d___ion___state___density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_instant_changes__change___profiles_1d___ion___state___density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -98514,8 +98514,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___state___densit _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___state___density_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___state___density_fit} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___state___density_fit{T}() where T @@ -98531,7 +98531,7 @@ mutable struct core_instant_changes__change___profiles_1d___ion___state{T} <: ID var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: core_instant_changes__change___profiles_1d___ion___state___density_fit{T} + var"density_fit"::core_instant_changes__change___profiles_1d___ion___state___density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"electron_configuration" :: String @@ -98569,8 +98569,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___state{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___state} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___state} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___state{T}() where T @@ -98591,8 +98591,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___element{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___element} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___element} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___element{T}() where T @@ -98610,8 +98610,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___density_fit__t _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___density_fit__time_measurement_slice_method} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___density_fit__time_measurement_slice_method{T}() where T @@ -98635,7 +98635,7 @@ mutable struct core_instant_changes__change___profiles_1d___ion___density_fit{T} var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_instant_changes__change___profiles_1d___ion___density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_instant_changes__change___profiles_1d___ion___density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -98644,8 +98644,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion___density_fit{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion___density_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion___density_fit} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion___density_fit{T}() where T @@ -98661,11 +98661,11 @@ mutable struct core_instant_changes__change___profiles_1d___ion{T} <: IDSvectorI var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: core_instant_changes__change___profiles_1d___ion___density_fit{T} + var"density_fit"::core_instant_changes__change___profiles_1d___ion___density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"density_validity" :: Int - var"element" :: IDSvector{core_instant_changes__change___profiles_1d___ion___element{T}} + var"element"::IDSvector{core_instant_changes__change___profiles_1d___ion___element{T}} var"label" :: String var"multiple_states_flag" :: Int var"neutral_index" :: Int @@ -98679,12 +98679,12 @@ mutable struct core_instant_changes__change___profiles_1d___ion{T} <: IDSvectorI var"pressure_thermal_σ" :: Vector{<:T} var"rotation_frequency_tor" :: Vector{<:T} var"rotation_frequency_tor_σ" :: Vector{<:T} - var"state" :: IDSvector{core_instant_changes__change___profiles_1d___ion___state{T}} + var"state"::IDSvector{core_instant_changes__change___profiles_1d___ion___state{T}} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} - var"temperature_fit" :: core_instant_changes__change___profiles_1d___ion___temperature_fit{T} + var"temperature_fit"::core_instant_changes__change___profiles_1d___ion___temperature_fit{T} var"temperature_validity" :: Int - var"velocity" :: core_instant_changes__change___profiles_1d___ion___velocity{T} + var"velocity"::core_instant_changes__change___profiles_1d___ion___velocity{T} var"z_ion" :: T var"z_ion_σ" :: T var"z_ion_1d" :: Vector{<:T} @@ -98695,8 +98695,8 @@ mutable struct core_instant_changes__change___profiles_1d___ion{T} <: IDSvectorI _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___ion} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___ion} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___ion{T}() where T @@ -98734,8 +98734,8 @@ mutable struct core_instant_changes__change___profiles_1d___grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___grid} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___grid} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___grid{T}() where T @@ -98753,8 +98753,8 @@ mutable struct core_instant_changes__change___profiles_1d___electrons__temperatu _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___electrons__temperature_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___electrons__temperature_fit__time_measurement_slice_method} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T}() where T @@ -98778,7 +98778,7 @@ mutable struct core_instant_changes__change___profiles_1d___electrons__temperatu var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_instant_changes__change___profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_instant_changes__change___profiles_1d___electrons__temperature_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -98787,8 +98787,8 @@ mutable struct core_instant_changes__change___profiles_1d___electrons__temperatu _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___electrons__temperature_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___electrons__temperature_fit} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___electrons__temperature_fit{T}() where T @@ -98807,8 +98807,8 @@ mutable struct core_instant_changes__change___profiles_1d___electrons__density_f _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___electrons__density_fit__time_measurement_slice_method} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___electrons__density_fit__time_measurement_slice_method} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___electrons__density_fit__time_measurement_slice_method{T}() where T @@ -98832,7 +98832,7 @@ mutable struct core_instant_changes__change___profiles_1d___electrons__density_f var"source" :: Vector{String} var"time_measurement" :: Vector{<:T} var"time_measurement_σ" :: Vector{<:T} - var"time_measurement_slice_method" :: core_instant_changes__change___profiles_1d___electrons__density_fit__time_measurement_slice_method{T} + var"time_measurement_slice_method"::core_instant_changes__change___profiles_1d___electrons__density_fit__time_measurement_slice_method{T} var"time_measurement_width" :: Vector{<:T} var"time_measurement_width_σ" :: Vector{<:T} var"weight" :: Vector{<:T} @@ -98841,8 +98841,8 @@ mutable struct core_instant_changes__change___profiles_1d___electrons__density_f _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___electrons__density_fit} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___electrons__density_fit} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___electrons__density_fit{T}() where T @@ -98860,7 +98860,7 @@ mutable struct core_instant_changes__change___profiles_1d___electrons{T} <: IDS{ var"density_σ" :: Vector{<:T} var"density_fast" :: Vector{<:T} var"density_fast_σ" :: Vector{<:T} - var"density_fit" :: core_instant_changes__change___profiles_1d___electrons__density_fit{T} + var"density_fit"::core_instant_changes__change___profiles_1d___electrons__density_fit{T} var"density_thermal" :: Vector{<:T} var"density_thermal_σ" :: Vector{<:T} var"density_validity" :: Int @@ -98874,14 +98874,14 @@ mutable struct core_instant_changes__change___profiles_1d___electrons{T} <: IDS{ var"pressure_thermal_σ" :: Vector{<:T} var"temperature" :: Vector{<:T} var"temperature_σ" :: Vector{<:T} - var"temperature_fit" :: core_instant_changes__change___profiles_1d___electrons__temperature_fit{T} + var"temperature_fit"::core_instant_changes__change___profiles_1d___electrons__temperature_fit{T} var"temperature_validity" :: Int _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___electrons} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___electrons} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___electrons{T}() where T @@ -98908,8 +98908,8 @@ mutable struct core_instant_changes__change___profiles_1d___e_field{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d___e_field} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d___e_field} + _parent::WeakRef end function core_instant_changes__change___profiles_1d___e_field{T}() where T @@ -98924,10 +98924,10 @@ mutable struct core_instant_changes__change___profiles_1d{T} <: IDSvectorTimeEle var"conductivity_parallel_σ" :: Vector{<:T} var"current_parallel_inside" :: Vector{<:T} var"current_parallel_inside_σ" :: Vector{<:T} - var"e_field" :: core_instant_changes__change___profiles_1d___e_field{T} - var"electrons" :: core_instant_changes__change___profiles_1d___electrons{T} - var"grid" :: core_instant_changes__change___profiles_1d___grid{T} - var"ion" :: IDSvector{core_instant_changes__change___profiles_1d___ion{T}} + var"e_field"::core_instant_changes__change___profiles_1d___e_field{T} + var"electrons"::core_instant_changes__change___profiles_1d___electrons{T} + var"grid"::core_instant_changes__change___profiles_1d___grid{T} + var"ion"::IDSvector{core_instant_changes__change___profiles_1d___ion{T}} var"j_bootstrap" :: Vector{<:T} var"j_bootstrap_σ" :: Vector{<:T} var"j_non_inductive" :: Vector{<:T} @@ -98946,7 +98946,7 @@ mutable struct core_instant_changes__change___profiles_1d{T} <: IDSvectorTimeEle var"n_i_thermal_total_σ" :: Vector{<:T} var"n_i_total_over_n_e" :: Vector{<:T} var"n_i_total_over_n_e_σ" :: Vector{<:T} - var"neutral" :: IDSvector{core_instant_changes__change___profiles_1d___neutral{T}} + var"neutral"::IDSvector{core_instant_changes__change___profiles_1d___neutral{T}} var"phi_potential" :: Vector{<:T} var"phi_potential_σ" :: Vector{<:T} var"pressure_ion_total" :: Vector{<:T} @@ -98963,17 +98963,17 @@ mutable struct core_instant_changes__change___profiles_1d{T} <: IDSvectorTimeEle var"rotation_frequency_tor_sonic_σ" :: Vector{<:T} var"t_i_average" :: Vector{<:T} var"t_i_average_σ" :: Vector{<:T} - var"t_i_average_fit" :: core_instant_changes__change___profiles_1d___t_i_average_fit{T} + var"t_i_average_fit"::core_instant_changes__change___profiles_1d___t_i_average_fit{T} var"time" :: Float64 var"zeff" :: Vector{<:T} var"zeff_σ" :: Vector{<:T} - var"zeff_fit" :: core_instant_changes__change___profiles_1d___zeff_fit{T} + var"zeff_fit"::core_instant_changes__change___profiles_1d___zeff_fit{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___profiles_1d} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___profiles_1d} + _parent::WeakRef end function core_instant_changes__change___profiles_1d{T}() where T @@ -98998,8 +98998,8 @@ mutable struct core_instant_changes__change___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change___identifier} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change___identifier} + _parent::WeakRef end function core_instant_changes__change___identifier{T}() where T @@ -99010,14 +99010,14 @@ end core_instant_changes__change___identifier() = core_instant_changes__change___identifier{Float64}() mutable struct core_instant_changes__change{T} <: IDSvectorStaticElement{T} - var"identifier" :: core_instant_changes__change___identifier{T} - var"profiles_1d" :: IDSvector{core_instant_changes__change___profiles_1d{T}} + var"identifier"::core_instant_changes__change___identifier{T} + var"profiles_1d"::IDSvector{core_instant_changes__change___profiles_1d{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes__change} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes__change} + _parent::WeakRef end function core_instant_changes__change{T}() where T @@ -99030,17 +99030,17 @@ end core_instant_changes__change() = core_instant_changes__change{Float64}() mutable struct core_instant_changes{T} <: IDStop{T} - var"change" :: IDSvector{core_instant_changes__change{T}} - var"code" :: core_instant_changes__code{T} - var"ids_properties" :: core_instant_changes__ids_properties{T} + var"change"::IDSvector{core_instant_changes__change{T}} + var"code"::core_instant_changes__code{T} + var"ids_properties"::core_instant_changes__ids_properties{T} var"time" :: Vector{Float64} - var"vacuum_toroidal_field" :: core_instant_changes__vacuum_toroidal_field{T} + var"vacuum_toroidal_field"::core_instant_changes__vacuum_toroidal_field{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,core_instant_changes} - _parent :: WeakRef + _ref::Union{Nothing,core_instant_changes} + _parent::WeakRef end function core_instant_changes{T}() where T @@ -99062,8 +99062,8 @@ mutable struct controllers__nonlinear_controller___outputs{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__nonlinear_controller___outputs} - _parent :: WeakRef + _ref::Union{Nothing,controllers__nonlinear_controller___outputs} + _parent::WeakRef end function controllers__nonlinear_controller___outputs{T}() where T @@ -99081,8 +99081,8 @@ mutable struct controllers__nonlinear_controller___inputs{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__nonlinear_controller___inputs} - _parent :: WeakRef + _ref::Union{Nothing,controllers__nonlinear_controller___inputs} + _parent::WeakRef end function controllers__nonlinear_controller___inputs{T}() where T @@ -99097,16 +99097,16 @@ mutable struct controllers__nonlinear_controller{T} <: IDSvectorStaticElement{T} var"description" :: String var"function" :: String var"input_names" :: Vector{String} - var"inputs" :: controllers__nonlinear_controller___inputs{T} + var"inputs"::controllers__nonlinear_controller___inputs{T} var"name" :: String var"output_names" :: Vector{String} - var"outputs" :: controllers__nonlinear_controller___outputs{T} + var"outputs"::controllers__nonlinear_controller___outputs{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__nonlinear_controller} - _parent :: WeakRef + _ref::Union{Nothing,controllers__nonlinear_controller} + _parent::WeakRef end function controllers__nonlinear_controller{T}() where T @@ -99126,8 +99126,8 @@ mutable struct controllers__linear_controller___statespace__deltat{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___statespace__deltat} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___statespace__deltat} + _parent::WeakRef end function controllers__linear_controller___statespace__deltat{T}() where T @@ -99145,8 +99145,8 @@ mutable struct controllers__linear_controller___statespace__d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___statespace__d} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___statespace__d} + _parent::WeakRef end function controllers__linear_controller___statespace__d{T}() where T @@ -99164,8 +99164,8 @@ mutable struct controllers__linear_controller___statespace__c{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___statespace__c} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___statespace__c} + _parent::WeakRef end function controllers__linear_controller___statespace__c{T}() where T @@ -99183,8 +99183,8 @@ mutable struct controllers__linear_controller___statespace__b{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___statespace__b} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___statespace__b} + _parent::WeakRef end function controllers__linear_controller___statespace__b{T}() where T @@ -99202,8 +99202,8 @@ mutable struct controllers__linear_controller___statespace__a{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___statespace__a} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___statespace__a} + _parent::WeakRef end function controllers__linear_controller___statespace__a{T}() where T @@ -99214,18 +99214,18 @@ end controllers__linear_controller___statespace__a() = controllers__linear_controller___statespace__a{Float64}() mutable struct controllers__linear_controller___statespace{T} <: IDS{T} - var"a" :: controllers__linear_controller___statespace__a{T} - var"b" :: controllers__linear_controller___statespace__b{T} - var"c" :: controllers__linear_controller___statespace__c{T} - var"d" :: controllers__linear_controller___statespace__d{T} - var"deltat" :: controllers__linear_controller___statespace__deltat{T} + var"a"::controllers__linear_controller___statespace__a{T} + var"b"::controllers__linear_controller___statespace__b{T} + var"c"::controllers__linear_controller___statespace__c{T} + var"d"::controllers__linear_controller___statespace__d{T} + var"deltat"::controllers__linear_controller___statespace__deltat{T} var"state_names" :: Vector{String} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___statespace} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___statespace} + _parent::WeakRef end function controllers__linear_controller___statespace{T}() where T @@ -99248,8 +99248,8 @@ mutable struct controllers__linear_controller___pid__tau{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___pid__tau} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___pid__tau} + _parent::WeakRef end function controllers__linear_controller___pid__tau{T}() where T @@ -99267,8 +99267,8 @@ mutable struct controllers__linear_controller___pid__p{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___pid__p} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___pid__p} + _parent::WeakRef end function controllers__linear_controller___pid__p{T}() where T @@ -99286,8 +99286,8 @@ mutable struct controllers__linear_controller___pid__i{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___pid__i} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___pid__i} + _parent::WeakRef end function controllers__linear_controller___pid__i{T}() where T @@ -99305,8 +99305,8 @@ mutable struct controllers__linear_controller___pid__d{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___pid__d} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___pid__d} + _parent::WeakRef end function controllers__linear_controller___pid__d{T}() where T @@ -99317,16 +99317,16 @@ end controllers__linear_controller___pid__d() = controllers__linear_controller___pid__d{Float64}() mutable struct controllers__linear_controller___pid{T} <: IDS{T} - var"d" :: controllers__linear_controller___pid__d{T} - var"i" :: controllers__linear_controller___pid__i{T} - var"p" :: controllers__linear_controller___pid__p{T} - var"tau" :: controllers__linear_controller___pid__tau{T} + var"d"::controllers__linear_controller___pid__d{T} + var"i"::controllers__linear_controller___pid__i{T} + var"p"::controllers__linear_controller___pid__p{T} + var"tau"::controllers__linear_controller___pid__tau{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___pid} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___pid} + _parent::WeakRef end function controllers__linear_controller___pid{T}() where T @@ -99348,8 +99348,8 @@ mutable struct controllers__linear_controller___outputs{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___outputs} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___outputs} + _parent::WeakRef end function controllers__linear_controller___outputs{T}() where T @@ -99367,8 +99367,8 @@ mutable struct controllers__linear_controller___inputs{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller___inputs} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller___inputs} + _parent::WeakRef end function controllers__linear_controller___inputs{T}() where T @@ -99382,18 +99382,18 @@ mutable struct controllers__linear_controller{T} <: IDSvectorStaticElement{T} var"controller_class" :: String var"description" :: String var"input_names" :: Vector{String} - var"inputs" :: controllers__linear_controller___inputs{T} + var"inputs"::controllers__linear_controller___inputs{T} var"name" :: String var"output_names" :: Vector{String} - var"outputs" :: controllers__linear_controller___outputs{T} - var"pid" :: controllers__linear_controller___pid{T} - var"statespace" :: controllers__linear_controller___statespace{T} + var"outputs"::controllers__linear_controller___outputs{T} + var"pid"::controllers__linear_controller___pid{T} + var"statespace"::controllers__linear_controller___statespace{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__linear_controller} - _parent :: WeakRef + _ref::Union{Nothing,controllers__linear_controller} + _parent::WeakRef end function controllers__linear_controller{T}() where T @@ -99415,8 +99415,8 @@ mutable struct controllers__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__version_put} + _parent::WeakRef end function controllers__ids_properties__version_put{T}() where T @@ -99433,8 +99433,8 @@ mutable struct controllers__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__provenance__node} + _parent::WeakRef end function controllers__ids_properties__provenance__node{T}() where T @@ -99445,13 +99445,13 @@ end controllers__ids_properties__provenance__node() = controllers__ids_properties__provenance__node{Float64}() mutable struct controllers__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{controllers__ids_properties__provenance__node{T}} + var"node"::IDSvector{controllers__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__provenance} + _parent::WeakRef end function controllers__ids_properties__provenance{T}() where T @@ -99473,8 +99473,8 @@ mutable struct controllers__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__plugins__node___readback} + _parent::WeakRef end function controllers__ids_properties__plugins__node___readback{T}() where T @@ -99495,8 +99495,8 @@ mutable struct controllers__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function controllers__ids_properties__plugins__node___put_operation{T}() where T @@ -99517,8 +99517,8 @@ mutable struct controllers__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function controllers__ids_properties__plugins__node___get_operation{T}() where T @@ -99529,16 +99529,16 @@ end controllers__ids_properties__plugins__node___get_operation() = controllers__ids_properties__plugins__node___get_operation{Float64}() mutable struct controllers__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{controllers__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{controllers__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{controllers__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{controllers__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{controllers__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{controllers__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__plugins__node} + _parent::WeakRef end function controllers__ids_properties__plugins__node{T}() where T @@ -99561,8 +99561,8 @@ mutable struct controllers__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function controllers__ids_properties__plugins__infrastructure_put{T}() where T @@ -99582,8 +99582,8 @@ mutable struct controllers__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function controllers__ids_properties__plugins__infrastructure_get{T}() where T @@ -99594,15 +99594,15 @@ end controllers__ids_properties__plugins__infrastructure_get() = controllers__ids_properties__plugins__infrastructure_get{Float64}() mutable struct controllers__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: controllers__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: controllers__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{controllers__ids_properties__plugins__node{T}} + var"infrastructure_get"::controllers__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::controllers__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{controllers__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__plugins} + _parent::WeakRef end function controllers__ids_properties__plugins{T}() where T @@ -99623,8 +99623,8 @@ mutable struct controllers__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties__occurrence_type} + _parent::WeakRef end function controllers__ids_properties__occurrence_type{T}() where T @@ -99640,17 +99640,17 @@ mutable struct controllers__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: controllers__ids_properties__occurrence_type{T} - var"plugins" :: controllers__ids_properties__plugins{T} - var"provenance" :: controllers__ids_properties__provenance{T} + var"occurrence_type"::controllers__ids_properties__occurrence_type{T} + var"plugins"::controllers__ids_properties__plugins{T} + var"provenance"::controllers__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: controllers__ids_properties__version_put{T} + var"version_put"::controllers__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,controllers__ids_properties} + _parent::WeakRef end function controllers__ids_properties{T}() where T @@ -99672,8 +99672,8 @@ mutable struct controllers__controllability_metrics___identifier{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__controllability_metrics___identifier} - _parent :: WeakRef + _ref::Union{Nothing,controllers__controllability_metrics___identifier} + _parent::WeakRef end function controllers__controllability_metrics___identifier{T}() where T @@ -99686,14 +99686,14 @@ controllers__controllability_metrics___identifier() = controllers__controllabili mutable struct controllers__controllability_metrics{T} <: IDSvectorStaticElement{T} var"data" :: Vector{<:T} var"data_σ" :: Vector{<:T} - var"identifier" :: controllers__controllability_metrics___identifier{T} + var"identifier"::controllers__controllability_metrics___identifier{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__controllability_metrics} - _parent :: WeakRef + _ref::Union{Nothing,controllers__controllability_metrics} + _parent::WeakRef end function controllers__controllability_metrics{T}() where T @@ -99715,8 +99715,8 @@ mutable struct controllers__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__code__library} - _parent :: WeakRef + _ref::Union{Nothing,controllers__code__library} + _parent::WeakRef end function controllers__code__library{T}() where T @@ -99729,7 +99729,7 @@ controllers__code__library() = controllers__code__library{Float64}() mutable struct controllers__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{controllers__code__library{T}} + var"library"::IDSvector{controllers__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -99739,8 +99739,8 @@ mutable struct controllers__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers__code} - _parent :: WeakRef + _ref::Union{Nothing,controllers__code} + _parent::WeakRef end function controllers__code{T}() where T @@ -99752,18 +99752,18 @@ end controllers__code() = controllers__code{Float64}() mutable struct controllers{T} <: IDStop{T} - var"code" :: controllers__code{T} - var"controllability_metrics" :: IDSvector{controllers__controllability_metrics{T}} - var"ids_properties" :: controllers__ids_properties{T} - var"linear_controller" :: IDSvector{controllers__linear_controller{T}} - var"nonlinear_controller" :: IDSvector{controllers__nonlinear_controller{T}} + var"code"::controllers__code{T} + var"controllability_metrics"::IDSvector{controllers__controllability_metrics{T}} + var"ids_properties"::controllers__ids_properties{T} + var"linear_controller"::IDSvector{controllers__linear_controller{T}} + var"nonlinear_controller"::IDSvector{controllers__nonlinear_controller{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,controllers} - _parent :: WeakRef + _ref::Union{Nothing,controllers} + _parent::WeakRef end function controllers{T}() where T @@ -99786,8 +99786,8 @@ mutable struct coils_non_axisymmetric__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__version_put} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__version_put{T}() where T @@ -99804,8 +99804,8 @@ mutable struct coils_non_axisymmetric__ids_properties__provenance__node{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__provenance__node} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__provenance__node{T}() where T @@ -99816,13 +99816,13 @@ end coils_non_axisymmetric__ids_properties__provenance__node() = coils_non_axisymmetric__ids_properties__provenance__node{Float64}() mutable struct coils_non_axisymmetric__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{coils_non_axisymmetric__ids_properties__provenance__node{T}} + var"node"::IDSvector{coils_non_axisymmetric__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__provenance} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__provenance{T}() where T @@ -99844,8 +99844,8 @@ mutable struct coils_non_axisymmetric__ids_properties__plugins__node___readback{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__node___readback} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__plugins__node___readback{T}() where T @@ -99866,8 +99866,8 @@ mutable struct coils_non_axisymmetric__ids_properties__plugins__node___put_opera _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__plugins__node___put_operation{T}() where T @@ -99888,8 +99888,8 @@ mutable struct coils_non_axisymmetric__ids_properties__plugins__node___get_opera _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__plugins__node___get_operation{T}() where T @@ -99900,16 +99900,16 @@ end coils_non_axisymmetric__ids_properties__plugins__node___get_operation() = coils_non_axisymmetric__ids_properties__plugins__node___get_operation{Float64}() mutable struct coils_non_axisymmetric__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{coils_non_axisymmetric__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{coils_non_axisymmetric__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{coils_non_axisymmetric__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{coils_non_axisymmetric__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{coils_non_axisymmetric__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{coils_non_axisymmetric__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__node} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__plugins__node{T}() where T @@ -99932,8 +99932,8 @@ mutable struct coils_non_axisymmetric__ids_properties__plugins__infrastructure_p _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__plugins__infrastructure_put{T}() where T @@ -99953,8 +99953,8 @@ mutable struct coils_non_axisymmetric__ids_properties__plugins__infrastructure_g _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__plugins__infrastructure_get{T}() where T @@ -99965,15 +99965,15 @@ end coils_non_axisymmetric__ids_properties__plugins__infrastructure_get() = coils_non_axisymmetric__ids_properties__plugins__infrastructure_get{Float64}() mutable struct coils_non_axisymmetric__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: coils_non_axisymmetric__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: coils_non_axisymmetric__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{coils_non_axisymmetric__ids_properties__plugins__node{T}} + var"infrastructure_get"::coils_non_axisymmetric__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::coils_non_axisymmetric__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{coils_non_axisymmetric__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__plugins} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__plugins{T}() where T @@ -99994,8 +99994,8 @@ mutable struct coils_non_axisymmetric__ids_properties__occurrence_type{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties__occurrence_type} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties__occurrence_type{T}() where T @@ -100011,17 +100011,17 @@ mutable struct coils_non_axisymmetric__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: coils_non_axisymmetric__ids_properties__occurrence_type{T} - var"plugins" :: coils_non_axisymmetric__ids_properties__plugins{T} - var"provenance" :: coils_non_axisymmetric__ids_properties__provenance{T} + var"occurrence_type"::coils_non_axisymmetric__ids_properties__occurrence_type{T} + var"plugins"::coils_non_axisymmetric__ids_properties__plugins{T} + var"provenance"::coils_non_axisymmetric__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: coils_non_axisymmetric__ids_properties__version_put{T} + var"version_put"::coils_non_axisymmetric__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__ids_properties} + _parent::WeakRef end function coils_non_axisymmetric__ids_properties{T}() where T @@ -100043,8 +100043,8 @@ mutable struct coils_non_axisymmetric__coil___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___voltage} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___voltage} + _parent::WeakRef end function coils_non_axisymmetric__coil___voltage{T}() where T @@ -100062,8 +100062,8 @@ mutable struct coils_non_axisymmetric__coil___current{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___current} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___current} + _parent::WeakRef end function coils_non_axisymmetric__coil___current{T}() where T @@ -100081,8 +100081,8 @@ mutable struct coils_non_axisymmetric__coil___conductor___voltage{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___voltage} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___voltage} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___voltage{T}() where T @@ -100103,8 +100103,8 @@ mutable struct coils_non_axisymmetric__coil___conductor___elements__start_points _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___elements__start_points} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___elements__start_points} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___elements__start_points{T}() where T @@ -100125,8 +100125,8 @@ mutable struct coils_non_axisymmetric__coil___conductor___elements__intermediate _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___elements__intermediate_points} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___elements__intermediate_points} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___elements__intermediate_points{T}() where T @@ -100147,8 +100147,8 @@ mutable struct coils_non_axisymmetric__coil___conductor___elements__end_points{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___elements__end_points} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___elements__end_points} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___elements__end_points{T}() where T @@ -100169,8 +100169,8 @@ mutable struct coils_non_axisymmetric__coil___conductor___elements__centres{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___elements__centres} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___elements__centres} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___elements__centres{T}() where T @@ -100181,17 +100181,17 @@ end coils_non_axisymmetric__coil___conductor___elements__centres() = coils_non_axisymmetric__coil___conductor___elements__centres{Float64}() mutable struct coils_non_axisymmetric__coil___conductor___elements{T} <: IDS{T} - var"centres" :: coils_non_axisymmetric__coil___conductor___elements__centres{T} - var"end_points" :: coils_non_axisymmetric__coil___conductor___elements__end_points{T} - var"intermediate_points" :: coils_non_axisymmetric__coil___conductor___elements__intermediate_points{T} - var"start_points" :: coils_non_axisymmetric__coil___conductor___elements__start_points{T} + var"centres"::coils_non_axisymmetric__coil___conductor___elements__centres{T} + var"end_points"::coils_non_axisymmetric__coil___conductor___elements__end_points{T} + var"intermediate_points"::coils_non_axisymmetric__coil___conductor___elements__intermediate_points{T} + var"start_points"::coils_non_axisymmetric__coil___conductor___elements__start_points{T} var"types" :: Vector{Int} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___elements} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___elements} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___elements{T}() where T @@ -100214,8 +100214,8 @@ mutable struct coils_non_axisymmetric__coil___conductor___cross_section___outlin _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___cross_section___outline} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___cross_section___outline} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___cross_section___outline{T}() where T @@ -100233,8 +100233,8 @@ mutable struct coils_non_axisymmetric__coil___conductor___cross_section___geomet _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___cross_section___geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___cross_section___geometry_type} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___cross_section___geometry_type{T}() where T @@ -100247,10 +100247,10 @@ coils_non_axisymmetric__coil___conductor___cross_section___geometry_type() = coi mutable struct coils_non_axisymmetric__coil___conductor___cross_section{T} <: IDSvectorStaticElement{T} var"area" :: T var"area_σ" :: T - var"geometry_type" :: coils_non_axisymmetric__coil___conductor___cross_section___geometry_type{T} + var"geometry_type"::coils_non_axisymmetric__coil___conductor___cross_section___geometry_type{T} var"height" :: T var"height_σ" :: T - var"outline" :: coils_non_axisymmetric__coil___conductor___cross_section___outline{T} + var"outline"::coils_non_axisymmetric__coil___conductor___cross_section___outline{T} var"radius_inner" :: T var"radius_inner_σ" :: T var"width" :: T @@ -100259,8 +100259,8 @@ mutable struct coils_non_axisymmetric__coil___conductor___cross_section{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor___cross_section} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor___cross_section} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor___cross_section{T}() where T @@ -100273,17 +100273,17 @@ end coils_non_axisymmetric__coil___conductor___cross_section() = coils_non_axisymmetric__coil___conductor___cross_section{Float64}() mutable struct coils_non_axisymmetric__coil___conductor{T} <: IDSvectorStaticElement{T} - var"cross_section" :: IDSvector{coils_non_axisymmetric__coil___conductor___cross_section{T}} - var"elements" :: coils_non_axisymmetric__coil___conductor___elements{T} + var"cross_section"::IDSvector{coils_non_axisymmetric__coil___conductor___cross_section{T}} + var"elements"::coils_non_axisymmetric__coil___conductor___elements{T} var"resistance" :: T var"resistance_σ" :: T - var"voltage" :: coils_non_axisymmetric__coil___conductor___voltage{T} + var"voltage"::coils_non_axisymmetric__coil___conductor___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil___conductor} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil___conductor} + _parent::WeakRef end function coils_non_axisymmetric__coil___conductor{T}() where T @@ -100297,21 +100297,21 @@ end coils_non_axisymmetric__coil___conductor() = coils_non_axisymmetric__coil___conductor{Float64}() mutable struct coils_non_axisymmetric__coil{T} <: IDSvectorStaticElement{T} - var"conductor" :: IDSvector{coils_non_axisymmetric__coil___conductor{T}} - var"current" :: coils_non_axisymmetric__coil___current{T} + var"conductor"::IDSvector{coils_non_axisymmetric__coil___conductor{T}} + var"current"::coils_non_axisymmetric__coil___current{T} var"identifier" :: String var"name" :: String var"resistance" :: T var"resistance_σ" :: T var"turns" :: T var"turns_σ" :: T - var"voltage" :: coils_non_axisymmetric__coil___voltage{T} + var"voltage"::coils_non_axisymmetric__coil___voltage{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__coil} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__coil} + _parent::WeakRef end function coils_non_axisymmetric__coil{T}() where T @@ -100335,8 +100335,8 @@ mutable struct coils_non_axisymmetric__code__library{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__code__library} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__code__library} + _parent::WeakRef end function coils_non_axisymmetric__code__library{T}() where T @@ -100349,7 +100349,7 @@ coils_non_axisymmetric__code__library() = coils_non_axisymmetric__code__library{ mutable struct coils_non_axisymmetric__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{coils_non_axisymmetric__code__library{T}} + var"library"::IDSvector{coils_non_axisymmetric__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -100359,8 +100359,8 @@ mutable struct coils_non_axisymmetric__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric__code} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric__code} + _parent::WeakRef end function coils_non_axisymmetric__code{T}() where T @@ -100372,9 +100372,9 @@ end coils_non_axisymmetric__code() = coils_non_axisymmetric__code{Float64}() mutable struct coils_non_axisymmetric{T} <: IDStop{T} - var"code" :: coils_non_axisymmetric__code{T} - var"coil" :: IDSvector{coils_non_axisymmetric__coil{T}} - var"ids_properties" :: coils_non_axisymmetric__ids_properties{T} + var"code"::coils_non_axisymmetric__code{T} + var"coil"::IDSvector{coils_non_axisymmetric__coil{T}} + var"ids_properties"::coils_non_axisymmetric__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -100382,8 +100382,8 @@ mutable struct coils_non_axisymmetric{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,coils_non_axisymmetric} - _parent :: WeakRef + _ref::Union{Nothing,coils_non_axisymmetric} + _parent::WeakRef end function coils_non_axisymmetric{T}() where T @@ -100404,8 +100404,8 @@ mutable struct charge_exchange__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__version_put} + _parent::WeakRef end function charge_exchange__ids_properties__version_put{T}() where T @@ -100422,8 +100422,8 @@ mutable struct charge_exchange__ids_properties__provenance__node{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__provenance__node} + _parent::WeakRef end function charge_exchange__ids_properties__provenance__node{T}() where T @@ -100434,13 +100434,13 @@ end charge_exchange__ids_properties__provenance__node() = charge_exchange__ids_properties__provenance__node{Float64}() mutable struct charge_exchange__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{charge_exchange__ids_properties__provenance__node{T}} + var"node"::IDSvector{charge_exchange__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__provenance} + _parent::WeakRef end function charge_exchange__ids_properties__provenance{T}() where T @@ -100462,8 +100462,8 @@ mutable struct charge_exchange__ids_properties__plugins__node___readback{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__plugins__node___readback} + _parent::WeakRef end function charge_exchange__ids_properties__plugins__node___readback{T}() where T @@ -100484,8 +100484,8 @@ mutable struct charge_exchange__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function charge_exchange__ids_properties__plugins__node___put_operation{T}() where T @@ -100506,8 +100506,8 @@ mutable struct charge_exchange__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function charge_exchange__ids_properties__plugins__node___get_operation{T}() where T @@ -100518,16 +100518,16 @@ end charge_exchange__ids_properties__plugins__node___get_operation() = charge_exchange__ids_properties__plugins__node___get_operation{Float64}() mutable struct charge_exchange__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{charge_exchange__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{charge_exchange__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{charge_exchange__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{charge_exchange__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{charge_exchange__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{charge_exchange__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__plugins__node} + _parent::WeakRef end function charge_exchange__ids_properties__plugins__node{T}() where T @@ -100550,8 +100550,8 @@ mutable struct charge_exchange__ids_properties__plugins__infrastructure_put{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function charge_exchange__ids_properties__plugins__infrastructure_put{T}() where T @@ -100571,8 +100571,8 @@ mutable struct charge_exchange__ids_properties__plugins__infrastructure_get{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function charge_exchange__ids_properties__plugins__infrastructure_get{T}() where T @@ -100583,15 +100583,15 @@ end charge_exchange__ids_properties__plugins__infrastructure_get() = charge_exchange__ids_properties__plugins__infrastructure_get{Float64}() mutable struct charge_exchange__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: charge_exchange__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: charge_exchange__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{charge_exchange__ids_properties__plugins__node{T}} + var"infrastructure_get"::charge_exchange__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::charge_exchange__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{charge_exchange__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__plugins} + _parent::WeakRef end function charge_exchange__ids_properties__plugins{T}() where T @@ -100612,8 +100612,8 @@ mutable struct charge_exchange__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties__occurrence_type} + _parent::WeakRef end function charge_exchange__ids_properties__occurrence_type{T}() where T @@ -100629,17 +100629,17 @@ mutable struct charge_exchange__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: charge_exchange__ids_properties__occurrence_type{T} - var"plugins" :: charge_exchange__ids_properties__plugins{T} - var"provenance" :: charge_exchange__ids_properties__provenance{T} + var"occurrence_type"::charge_exchange__ids_properties__occurrence_type{T} + var"plugins"::charge_exchange__ids_properties__plugins{T} + var"provenance"::charge_exchange__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: charge_exchange__ids_properties__version_put{T} + var"version_put"::charge_exchange__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__ids_properties} + _parent::WeakRef end function charge_exchange__ids_properties{T}() where T @@ -100661,8 +100661,8 @@ mutable struct charge_exchange__etendue_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__etendue_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__etendue_method} + _parent::WeakRef end function charge_exchange__etendue_method{T}() where T @@ -100683,8 +100683,8 @@ mutable struct charge_exchange__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__code__library} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__code__library} + _parent::WeakRef end function charge_exchange__code__library{T}() where T @@ -100697,7 +100697,7 @@ charge_exchange__code__library() = charge_exchange__code__library{Float64}() mutable struct charge_exchange__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{charge_exchange__code__library{T}} + var"library"::IDSvector{charge_exchange__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -100707,8 +100707,8 @@ mutable struct charge_exchange__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__code} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__code} + _parent::WeakRef end function charge_exchange__code{T}() where T @@ -100727,8 +100727,8 @@ mutable struct charge_exchange__channel___zeff_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___zeff_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___zeff_method} + _parent::WeakRef end function charge_exchange__channel___zeff_method{T}() where T @@ -100746,8 +100746,8 @@ mutable struct charge_exchange__channel___zeff_line_average_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___zeff_line_average_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___zeff_line_average_method} + _parent::WeakRef end function charge_exchange__channel___zeff_line_average_method{T}() where T @@ -100765,8 +100765,8 @@ mutable struct charge_exchange__channel___zeff_line_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___zeff_line_average} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___zeff_line_average} + _parent::WeakRef end function charge_exchange__channel___zeff_line_average{T}() where T @@ -100784,8 +100784,8 @@ mutable struct charge_exchange__channel___zeff{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___zeff} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___zeff} + _parent::WeakRef end function charge_exchange__channel___zeff{T}() where T @@ -100803,8 +100803,8 @@ mutable struct charge_exchange__channel___t_i_average_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___t_i_average_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___t_i_average_method} + _parent::WeakRef end function charge_exchange__channel___t_i_average_method{T}() where T @@ -100822,8 +100822,8 @@ mutable struct charge_exchange__channel___t_i_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___t_i_average} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___t_i_average} + _parent::WeakRef end function charge_exchange__channel___t_i_average{T}() where T @@ -100841,8 +100841,8 @@ mutable struct charge_exchange__channel___spectrum___radiance_spectral{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum___radiance_spectral} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum___radiance_spectral} + _parent::WeakRef end function charge_exchange__channel___spectrum___radiance_spectral{T}() where T @@ -100860,8 +100860,8 @@ mutable struct charge_exchange__channel___spectrum___radiance_continuum{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum___radiance_continuum} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum___radiance_continuum} + _parent::WeakRef end function charge_exchange__channel___spectrum___radiance_continuum{T}() where T @@ -100879,8 +100879,8 @@ mutable struct charge_exchange__channel___spectrum___processed_line___width{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum___processed_line___width} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum___processed_line___width} + _parent::WeakRef end function charge_exchange__channel___spectrum___processed_line___width{T}() where T @@ -100898,8 +100898,8 @@ mutable struct charge_exchange__channel___spectrum___processed_line___shift{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum___processed_line___shift} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum___processed_line___shift} + _parent::WeakRef end function charge_exchange__channel___spectrum___processed_line___shift{T}() where T @@ -100917,8 +100917,8 @@ mutable struct charge_exchange__channel___spectrum___processed_line___radiance{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum___processed_line___radiance} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum___processed_line___radiance} + _parent::WeakRef end function charge_exchange__channel___spectrum___processed_line___radiance{T}() where T @@ -100936,8 +100936,8 @@ mutable struct charge_exchange__channel___spectrum___processed_line___intensity{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum___processed_line___intensity} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum___processed_line___intensity} + _parent::WeakRef end function charge_exchange__channel___spectrum___processed_line___intensity{T}() where T @@ -100948,19 +100948,19 @@ end charge_exchange__channel___spectrum___processed_line___intensity() = charge_exchange__channel___spectrum___processed_line___intensity{Float64}() mutable struct charge_exchange__channel___spectrum___processed_line{T} <: IDSvectorStaticElement{T} - var"intensity" :: charge_exchange__channel___spectrum___processed_line___intensity{T} + var"intensity"::charge_exchange__channel___spectrum___processed_line___intensity{T} var"label" :: String - var"radiance" :: charge_exchange__channel___spectrum___processed_line___radiance{T} - var"shift" :: charge_exchange__channel___spectrum___processed_line___shift{T} + var"radiance"::charge_exchange__channel___spectrum___processed_line___radiance{T} + var"shift"::charge_exchange__channel___spectrum___processed_line___shift{T} var"wavelength_central" :: T var"wavelength_central_σ" :: T - var"width" :: charge_exchange__channel___spectrum___processed_line___width{T} + var"width"::charge_exchange__channel___spectrum___processed_line___width{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum___processed_line} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum___processed_line} + _parent::WeakRef end function charge_exchange__channel___spectrum___processed_line{T}() where T @@ -100982,8 +100982,8 @@ mutable struct charge_exchange__channel___spectrum___intensity_spectrum{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum___intensity_spectrum} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum___intensity_spectrum} + _parent::WeakRef end function charge_exchange__channel___spectrum___intensity_spectrum{T}() where T @@ -101000,13 +101000,13 @@ mutable struct charge_exchange__channel___spectrum{T} <: IDSvectorStaticElement{ var"grating_σ" :: T var"instrument_function" :: Matrix{<:T} var"instrument_function_σ" :: Matrix{<:T} - var"intensity_spectrum" :: charge_exchange__channel___spectrum___intensity_spectrum{T} - var"processed_line" :: IDSvector{charge_exchange__channel___spectrum___processed_line{T}} + var"intensity_spectrum"::charge_exchange__channel___spectrum___intensity_spectrum{T} + var"processed_line"::IDSvector{charge_exchange__channel___spectrum___processed_line{T}} var"radiance_calibration" :: Vector{<:T} var"radiance_calibration_σ" :: Vector{<:T} var"radiance_calibration_date" :: String - var"radiance_continuum" :: charge_exchange__channel___spectrum___radiance_continuum{T} - var"radiance_spectral" :: charge_exchange__channel___spectrum___radiance_spectral{T} + var"radiance_continuum"::charge_exchange__channel___spectrum___radiance_continuum{T} + var"radiance_spectral"::charge_exchange__channel___spectrum___radiance_spectral{T} var"slit_width" :: T var"slit_width_σ" :: T var"wavelength_calibration_date" :: String @@ -101016,8 +101016,8 @@ mutable struct charge_exchange__channel___spectrum{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___spectrum} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___spectrum} + _parent::WeakRef end function charge_exchange__channel___spectrum{T}() where T @@ -101039,8 +101039,8 @@ mutable struct charge_exchange__channel___position__z{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___position__z} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___position__z} + _parent::WeakRef end function charge_exchange__channel___position__z{T}() where T @@ -101058,8 +101058,8 @@ mutable struct charge_exchange__channel___position__r{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___position__r} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___position__r} + _parent::WeakRef end function charge_exchange__channel___position__r{T}() where T @@ -101077,8 +101077,8 @@ mutable struct charge_exchange__channel___position__phi{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___position__phi} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___position__phi} + _parent::WeakRef end function charge_exchange__channel___position__phi{T}() where T @@ -101089,15 +101089,15 @@ end charge_exchange__channel___position__phi() = charge_exchange__channel___position__phi{Float64}() mutable struct charge_exchange__channel___position{T} <: IDS{T} - var"phi" :: charge_exchange__channel___position__phi{T} - var"r" :: charge_exchange__channel___position__r{T} - var"z" :: charge_exchange__channel___position__z{T} + var"phi"::charge_exchange__channel___position__phi{T} + var"r"::charge_exchange__channel___position__r{T} + var"z"::charge_exchange__channel___position__z{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___position} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___position} + _parent::WeakRef end function charge_exchange__channel___position{T}() where T @@ -101118,8 +101118,8 @@ mutable struct charge_exchange__channel___momentum_tor_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___momentum_tor_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___momentum_tor_method} + _parent::WeakRef end function charge_exchange__channel___momentum_tor_method{T}() where T @@ -101137,8 +101137,8 @@ mutable struct charge_exchange__channel___momentum_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___momentum_tor} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___momentum_tor} + _parent::WeakRef end function charge_exchange__channel___momentum_tor{T}() where T @@ -101156,8 +101156,8 @@ mutable struct charge_exchange__channel___ion_fast___radiance_spectral_method{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion_fast___radiance_spectral_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion_fast___radiance_spectral_method} + _parent::WeakRef end function charge_exchange__channel___ion_fast___radiance_spectral_method{T}() where T @@ -101175,8 +101175,8 @@ mutable struct charge_exchange__channel___ion_fast___radiance{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion_fast___radiance} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion_fast___radiance} + _parent::WeakRef end function charge_exchange__channel___ion_fast___radiance{T}() where T @@ -101190,8 +101190,8 @@ mutable struct charge_exchange__channel___ion_fast{T} <: IDSvectorStaticElement{ var"a" :: T var"a_σ" :: T var"label" :: String - var"radiance" :: charge_exchange__channel___ion_fast___radiance{T} - var"radiance_spectral_method" :: charge_exchange__channel___ion_fast___radiance_spectral_method{T} + var"radiance"::charge_exchange__channel___ion_fast___radiance{T} + var"radiance_spectral_method"::charge_exchange__channel___ion_fast___radiance_spectral_method{T} var"transition_wavelength" :: T var"transition_wavelength_σ" :: T var"z_ion" :: T @@ -101202,8 +101202,8 @@ mutable struct charge_exchange__channel___ion_fast{T} <: IDSvectorStaticElement{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion_fast} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion_fast} + _parent::WeakRef end function charge_exchange__channel___ion_fast{T}() where T @@ -101223,8 +101223,8 @@ mutable struct charge_exchange__channel___ion___velocity_tor_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion___velocity_tor_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion___velocity_tor_method} + _parent::WeakRef end function charge_exchange__channel___ion___velocity_tor_method{T}() where T @@ -101242,8 +101242,8 @@ mutable struct charge_exchange__channel___ion___velocity_tor{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion___velocity_tor} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion___velocity_tor} + _parent::WeakRef end function charge_exchange__channel___ion___velocity_tor{T}() where T @@ -101261,8 +101261,8 @@ mutable struct charge_exchange__channel___ion___velocity_pol_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion___velocity_pol_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion___velocity_pol_method} + _parent::WeakRef end function charge_exchange__channel___ion___velocity_pol_method{T}() where T @@ -101280,8 +101280,8 @@ mutable struct charge_exchange__channel___ion___velocity_pol{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion___velocity_pol} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion___velocity_pol} + _parent::WeakRef end function charge_exchange__channel___ion___velocity_pol{T}() where T @@ -101299,8 +101299,8 @@ mutable struct charge_exchange__channel___ion___t_i_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion___t_i_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion___t_i_method} + _parent::WeakRef end function charge_exchange__channel___ion___t_i_method{T}() where T @@ -101318,8 +101318,8 @@ mutable struct charge_exchange__channel___ion___t_i{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion___t_i} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion___t_i} + _parent::WeakRef end function charge_exchange__channel___ion___t_i{T}() where T @@ -101337,8 +101337,8 @@ mutable struct charge_exchange__channel___ion___n_i_over_n_e_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion___n_i_over_n_e_method} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion___n_i_over_n_e_method} + _parent::WeakRef end function charge_exchange__channel___ion___n_i_over_n_e_method{T}() where T @@ -101356,8 +101356,8 @@ mutable struct charge_exchange__channel___ion___n_i_over_n_e{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion___n_i_over_n_e} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion___n_i_over_n_e} + _parent::WeakRef end function charge_exchange__channel___ion___n_i_over_n_e{T}() where T @@ -101371,14 +101371,14 @@ mutable struct charge_exchange__channel___ion{T} <: IDSvectorIonElement{T} var"a" :: T var"a_σ" :: T var"label" :: String - var"n_i_over_n_e" :: charge_exchange__channel___ion___n_i_over_n_e{T} - var"n_i_over_n_e_method" :: charge_exchange__channel___ion___n_i_over_n_e_method{T} - var"t_i" :: charge_exchange__channel___ion___t_i{T} - var"t_i_method" :: charge_exchange__channel___ion___t_i_method{T} - var"velocity_pol" :: charge_exchange__channel___ion___velocity_pol{T} - var"velocity_pol_method" :: charge_exchange__channel___ion___velocity_pol_method{T} - var"velocity_tor" :: charge_exchange__channel___ion___velocity_tor{T} - var"velocity_tor_method" :: charge_exchange__channel___ion___velocity_tor_method{T} + var"n_i_over_n_e"::charge_exchange__channel___ion___n_i_over_n_e{T} + var"n_i_over_n_e_method"::charge_exchange__channel___ion___n_i_over_n_e_method{T} + var"t_i"::charge_exchange__channel___ion___t_i{T} + var"t_i_method"::charge_exchange__channel___ion___t_i_method{T} + var"velocity_pol"::charge_exchange__channel___ion___velocity_pol{T} + var"velocity_pol_method"::charge_exchange__channel___ion___velocity_pol_method{T} + var"velocity_tor"::charge_exchange__channel___ion___velocity_tor{T} + var"velocity_tor_method"::charge_exchange__channel___ion___velocity_tor_method{T} var"z_ion" :: T var"z_ion_σ" :: T var"z_n" :: T @@ -101387,8 +101387,8 @@ mutable struct charge_exchange__channel___ion{T} <: IDSvectorIonElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___ion} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___ion} + _parent::WeakRef end function charge_exchange__channel___ion{T}() where T @@ -101414,8 +101414,8 @@ mutable struct charge_exchange__channel___bes__radiances{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___bes__radiances} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___bes__radiances} + _parent::WeakRef end function charge_exchange__channel___bes__radiances{T}() where T @@ -101433,8 +101433,8 @@ mutable struct charge_exchange__channel___bes__lorentz_shift{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___bes__lorentz_shift} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___bes__lorentz_shift} + _parent::WeakRef end function charge_exchange__channel___bes__lorentz_shift{T}() where T @@ -101452,8 +101452,8 @@ mutable struct charge_exchange__channel___bes__doppler_shift{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___bes__doppler_shift} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___bes__doppler_shift} + _parent::WeakRef end function charge_exchange__channel___bes__doppler_shift{T}() where T @@ -101466,10 +101466,10 @@ charge_exchange__channel___bes__doppler_shift() = charge_exchange__channel___bes mutable struct charge_exchange__channel___bes{T} <: IDS{T} var"a" :: T var"a_σ" :: T - var"doppler_shift" :: charge_exchange__channel___bes__doppler_shift{T} + var"doppler_shift"::charge_exchange__channel___bes__doppler_shift{T} var"label" :: String - var"lorentz_shift" :: charge_exchange__channel___bes__lorentz_shift{T} - var"radiances" :: charge_exchange__channel___bes__radiances{T} + var"lorentz_shift"::charge_exchange__channel___bes__lorentz_shift{T} + var"radiances"::charge_exchange__channel___bes__radiances{T} var"transition_wavelength" :: T var"transition_wavelength_σ" :: T var"z_ion" :: T @@ -101480,8 +101480,8 @@ mutable struct charge_exchange__channel___bes{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel___bes} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel___bes} + _parent::WeakRef end function charge_exchange__channel___bes{T}() where T @@ -101495,27 +101495,27 @@ end charge_exchange__channel___bes() = charge_exchange__channel___bes{Float64}() mutable struct charge_exchange__channel{T} <: IDSvectorStaticElement{T} - var"bes" :: charge_exchange__channel___bes{T} + var"bes"::charge_exchange__channel___bes{T} var"identifier" :: String - var"ion" :: IDSvector{charge_exchange__channel___ion{T}} - var"ion_fast" :: IDSvector{charge_exchange__channel___ion_fast{T}} - var"momentum_tor" :: charge_exchange__channel___momentum_tor{T} - var"momentum_tor_method" :: charge_exchange__channel___momentum_tor_method{T} + var"ion"::IDSvector{charge_exchange__channel___ion{T}} + var"ion_fast"::IDSvector{charge_exchange__channel___ion_fast{T}} + var"momentum_tor"::charge_exchange__channel___momentum_tor{T} + var"momentum_tor_method"::charge_exchange__channel___momentum_tor_method{T} var"name" :: String - var"position" :: charge_exchange__channel___position{T} - var"spectrum" :: IDSvector{charge_exchange__channel___spectrum{T}} - var"t_i_average" :: charge_exchange__channel___t_i_average{T} - var"t_i_average_method" :: charge_exchange__channel___t_i_average_method{T} - var"zeff" :: charge_exchange__channel___zeff{T} - var"zeff_line_average" :: charge_exchange__channel___zeff_line_average{T} - var"zeff_line_average_method" :: charge_exchange__channel___zeff_line_average_method{T} - var"zeff_method" :: charge_exchange__channel___zeff_method{T} + var"position"::charge_exchange__channel___position{T} + var"spectrum"::IDSvector{charge_exchange__channel___spectrum{T}} + var"t_i_average"::charge_exchange__channel___t_i_average{T} + var"t_i_average_method"::charge_exchange__channel___t_i_average_method{T} + var"zeff"::charge_exchange__channel___zeff{T} + var"zeff_line_average"::charge_exchange__channel___zeff_line_average{T} + var"zeff_line_average_method"::charge_exchange__channel___zeff_line_average_method{T} + var"zeff_method"::charge_exchange__channel___zeff_method{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__channel} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__channel} + _parent::WeakRef end function charge_exchange__channel{T}() where T @@ -101549,8 +101549,8 @@ mutable struct charge_exchange__aperture__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__aperture__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__aperture__x3_unit_vector} + _parent::WeakRef end function charge_exchange__aperture__x3_unit_vector{T}() where T @@ -101571,8 +101571,8 @@ mutable struct charge_exchange__aperture__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__aperture__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__aperture__x2_unit_vector} + _parent::WeakRef end function charge_exchange__aperture__x2_unit_vector{T}() where T @@ -101593,8 +101593,8 @@ mutable struct charge_exchange__aperture__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__aperture__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__aperture__x1_unit_vector} + _parent::WeakRef end function charge_exchange__aperture__x1_unit_vector{T}() where T @@ -101613,8 +101613,8 @@ mutable struct charge_exchange__aperture__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__aperture__outline} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__aperture__outline} + _parent::WeakRef end function charge_exchange__aperture__outline{T}() where T @@ -101635,8 +101635,8 @@ mutable struct charge_exchange__aperture__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__aperture__centre} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__aperture__centre} + _parent::WeakRef end function charge_exchange__aperture__centre{T}() where T @@ -101647,26 +101647,26 @@ end charge_exchange__aperture__centre() = charge_exchange__aperture__centre{Float64}() mutable struct charge_exchange__aperture{T} <: IDS{T} - var"centre" :: charge_exchange__aperture__centre{T} + var"centre"::charge_exchange__aperture__centre{T} var"geometry_type" :: Int - var"outline" :: charge_exchange__aperture__outline{T} + var"outline"::charge_exchange__aperture__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: charge_exchange__aperture__x1_unit_vector{T} + var"x1_unit_vector"::charge_exchange__aperture__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: charge_exchange__aperture__x2_unit_vector{T} + var"x2_unit_vector"::charge_exchange__aperture__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: charge_exchange__aperture__x3_unit_vector{T} + var"x3_unit_vector"::charge_exchange__aperture__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange__aperture} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange__aperture} + _parent::WeakRef end function charge_exchange__aperture{T}() where T @@ -101682,13 +101682,13 @@ end charge_exchange__aperture() = charge_exchange__aperture{Float64}() mutable struct charge_exchange{T} <: IDStop{T} - var"aperture" :: charge_exchange__aperture{T} - var"channel" :: IDSvector{charge_exchange__channel{T}} - var"code" :: charge_exchange__code{T} + var"aperture"::charge_exchange__aperture{T} + var"channel"::IDSvector{charge_exchange__channel{T}} + var"code"::charge_exchange__code{T} var"etendue" :: T var"etendue_σ" :: T - var"etendue_method" :: charge_exchange__etendue_method{T} - var"ids_properties" :: charge_exchange__ids_properties{T} + var"etendue_method"::charge_exchange__etendue_method{T} + var"ids_properties"::charge_exchange__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -101696,8 +101696,8 @@ mutable struct charge_exchange{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,charge_exchange} - _parent :: WeakRef + _ref::Union{Nothing,charge_exchange} + _parent::WeakRef end function charge_exchange{T}() where T @@ -101720,8 +101720,8 @@ mutable struct camera_x_rays__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__version_put} + _parent::WeakRef end function camera_x_rays__ids_properties__version_put{T}() where T @@ -101738,8 +101738,8 @@ mutable struct camera_x_rays__ids_properties__provenance__node{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__provenance__node} + _parent::WeakRef end function camera_x_rays__ids_properties__provenance__node{T}() where T @@ -101750,13 +101750,13 @@ end camera_x_rays__ids_properties__provenance__node() = camera_x_rays__ids_properties__provenance__node{Float64}() mutable struct camera_x_rays__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{camera_x_rays__ids_properties__provenance__node{T}} + var"node"::IDSvector{camera_x_rays__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__provenance} + _parent::WeakRef end function camera_x_rays__ids_properties__provenance{T}() where T @@ -101778,8 +101778,8 @@ mutable struct camera_x_rays__ids_properties__plugins__node___readback{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__plugins__node___readback} + _parent::WeakRef end function camera_x_rays__ids_properties__plugins__node___readback{T}() where T @@ -101800,8 +101800,8 @@ mutable struct camera_x_rays__ids_properties__plugins__node___put_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function camera_x_rays__ids_properties__plugins__node___put_operation{T}() where T @@ -101822,8 +101822,8 @@ mutable struct camera_x_rays__ids_properties__plugins__node___get_operation{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function camera_x_rays__ids_properties__plugins__node___get_operation{T}() where T @@ -101834,16 +101834,16 @@ end camera_x_rays__ids_properties__plugins__node___get_operation() = camera_x_rays__ids_properties__plugins__node___get_operation{Float64}() mutable struct camera_x_rays__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{camera_x_rays__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{camera_x_rays__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{camera_x_rays__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{camera_x_rays__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{camera_x_rays__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{camera_x_rays__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__plugins__node} + _parent::WeakRef end function camera_x_rays__ids_properties__plugins__node{T}() where T @@ -101866,8 +101866,8 @@ mutable struct camera_x_rays__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function camera_x_rays__ids_properties__plugins__infrastructure_put{T}() where T @@ -101887,8 +101887,8 @@ mutable struct camera_x_rays__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function camera_x_rays__ids_properties__plugins__infrastructure_get{T}() where T @@ -101899,15 +101899,15 @@ end camera_x_rays__ids_properties__plugins__infrastructure_get() = camera_x_rays__ids_properties__plugins__infrastructure_get{Float64}() mutable struct camera_x_rays__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: camera_x_rays__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: camera_x_rays__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{camera_x_rays__ids_properties__plugins__node{T}} + var"infrastructure_get"::camera_x_rays__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::camera_x_rays__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{camera_x_rays__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__plugins} + _parent::WeakRef end function camera_x_rays__ids_properties__plugins{T}() where T @@ -101928,8 +101928,8 @@ mutable struct camera_x_rays__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties__occurrence_type} + _parent::WeakRef end function camera_x_rays__ids_properties__occurrence_type{T}() where T @@ -101945,17 +101945,17 @@ mutable struct camera_x_rays__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: camera_x_rays__ids_properties__occurrence_type{T} - var"plugins" :: camera_x_rays__ids_properties__plugins{T} - var"provenance" :: camera_x_rays__ids_properties__provenance{T} + var"occurrence_type"::camera_x_rays__ids_properties__occurrence_type{T} + var"plugins"::camera_x_rays__ids_properties__plugins{T} + var"provenance"::camera_x_rays__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: camera_x_rays__ids_properties__version_put{T} + var"version_put"::camera_x_rays__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__ids_properties} + _parent::WeakRef end function camera_x_rays__ids_properties{T}() where T @@ -101976,8 +101976,8 @@ mutable struct camera_x_rays__frame{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__frame} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__frame} + _parent::WeakRef end function camera_x_rays__frame{T}() where T @@ -101998,8 +101998,8 @@ mutable struct camera_x_rays__filter_window__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window__x3_unit_vector} + _parent::WeakRef end function camera_x_rays__filter_window__x3_unit_vector{T}() where T @@ -102020,8 +102020,8 @@ mutable struct camera_x_rays__filter_window__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window__x2_unit_vector} + _parent::WeakRef end function camera_x_rays__filter_window__x2_unit_vector{T}() where T @@ -102042,8 +102042,8 @@ mutable struct camera_x_rays__filter_window__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window__x1_unit_vector} + _parent::WeakRef end function camera_x_rays__filter_window__x1_unit_vector{T}() where T @@ -102062,8 +102062,8 @@ mutable struct camera_x_rays__filter_window__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window__outline} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window__outline} + _parent::WeakRef end function camera_x_rays__filter_window__outline{T}() where T @@ -102081,8 +102081,8 @@ mutable struct camera_x_rays__filter_window__material{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window__material} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window__material} + _parent::WeakRef end function camera_x_rays__filter_window__material{T}() where T @@ -102100,8 +102100,8 @@ mutable struct camera_x_rays__filter_window__geometry_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window__geometry_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window__geometry_type} + _parent::WeakRef end function camera_x_rays__filter_window__geometry_type{T}() where T @@ -102119,8 +102119,8 @@ mutable struct camera_x_rays__filter_window__curvature_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window__curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window__curvature_type} + _parent::WeakRef end function camera_x_rays__filter_window__curvature_type{T}() where T @@ -102141,8 +102141,8 @@ mutable struct camera_x_rays__filter_window__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window__centre} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window__centre} + _parent::WeakRef end function camera_x_rays__filter_window__centre{T}() where T @@ -102153,12 +102153,12 @@ end camera_x_rays__filter_window__centre() = camera_x_rays__filter_window__centre{Float64}() mutable struct camera_x_rays__filter_window{T} <: IDS{T} - var"centre" :: camera_x_rays__filter_window__centre{T} - var"curvature_type" :: camera_x_rays__filter_window__curvature_type{T} - var"geometry_type" :: camera_x_rays__filter_window__geometry_type{T} + var"centre"::camera_x_rays__filter_window__centre{T} + var"curvature_type"::camera_x_rays__filter_window__curvature_type{T} + var"geometry_type"::camera_x_rays__filter_window__geometry_type{T} var"identifier" :: String - var"material" :: camera_x_rays__filter_window__material{T} - var"outline" :: camera_x_rays__filter_window__outline{T} + var"material"::camera_x_rays__filter_window__material{T} + var"outline"::camera_x_rays__filter_window__outline{T} var"photon_absorption" :: Vector{<:T} var"photon_absorption_σ" :: Vector{<:T} var"radius" :: T @@ -102175,21 +102175,21 @@ mutable struct camera_x_rays__filter_window{T} <: IDS{T} var"wavelengths_σ" :: Vector{<:T} var"x1_curvature" :: T var"x1_curvature_σ" :: T - var"x1_unit_vector" :: camera_x_rays__filter_window__x1_unit_vector{T} + var"x1_unit_vector"::camera_x_rays__filter_window__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T var"x2_curvature" :: T var"x2_curvature_σ" :: T - var"x2_unit_vector" :: camera_x_rays__filter_window__x2_unit_vector{T} + var"x2_unit_vector"::camera_x_rays__filter_window__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: camera_x_rays__filter_window__x3_unit_vector{T} + var"x3_unit_vector"::camera_x_rays__filter_window__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__filter_window} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__filter_window} + _parent::WeakRef end function camera_x_rays__filter_window{T}() where T @@ -102215,8 +102215,8 @@ mutable struct camera_x_rays__detector_temperature{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__detector_temperature} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__detector_temperature} + _parent::WeakRef end function camera_x_rays__detector_temperature{T}() where T @@ -102234,8 +102234,8 @@ mutable struct camera_x_rays__detector_humidity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__detector_humidity} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__detector_humidity} + _parent::WeakRef end function camera_x_rays__detector_humidity{T}() where T @@ -102256,8 +102256,8 @@ mutable struct camera_x_rays__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__code__library} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__code__library} + _parent::WeakRef end function camera_x_rays__code__library{T}() where T @@ -102270,7 +102270,7 @@ camera_x_rays__code__library() = camera_x_rays__code__library{Float64}() mutable struct camera_x_rays__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{camera_x_rays__code__library{T}} + var"library"::IDSvector{camera_x_rays__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -102280,8 +102280,8 @@ mutable struct camera_x_rays__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__code} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__code} + _parent::WeakRef end function camera_x_rays__code{T}() where T @@ -102303,8 +102303,8 @@ mutable struct camera_x_rays__camera__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera__x3_unit_vector} + _parent::WeakRef end function camera_x_rays__camera__x3_unit_vector{T}() where T @@ -102325,8 +102325,8 @@ mutable struct camera_x_rays__camera__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera__x2_unit_vector} + _parent::WeakRef end function camera_x_rays__camera__x2_unit_vector{T}() where T @@ -102347,8 +102347,8 @@ mutable struct camera_x_rays__camera__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera__x1_unit_vector} + _parent::WeakRef end function camera_x_rays__camera__x1_unit_vector{T}() where T @@ -102369,8 +102369,8 @@ mutable struct camera_x_rays__camera__pixel_position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera__pixel_position} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera__pixel_position} + _parent::WeakRef end function camera_x_rays__camera__pixel_position{T}() where T @@ -102391,8 +102391,8 @@ mutable struct camera_x_rays__camera__line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera__line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera__line_of_sight__second_point} + _parent::WeakRef end function camera_x_rays__camera__line_of_sight__second_point{T}() where T @@ -102413,8 +102413,8 @@ mutable struct camera_x_rays__camera__line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera__line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera__line_of_sight__first_point} + _parent::WeakRef end function camera_x_rays__camera__line_of_sight__first_point{T}() where T @@ -102425,14 +102425,14 @@ end camera_x_rays__camera__line_of_sight__first_point() = camera_x_rays__camera__line_of_sight__first_point{Float64}() mutable struct camera_x_rays__camera__line_of_sight{T} <: IDS{T} - var"first_point" :: camera_x_rays__camera__line_of_sight__first_point{T} - var"second_point" :: camera_x_rays__camera__line_of_sight__second_point{T} + var"first_point"::camera_x_rays__camera__line_of_sight__first_point{T} + var"second_point"::camera_x_rays__camera__line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera__line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera__line_of_sight} + _parent::WeakRef end function camera_x_rays__camera__line_of_sight{T}() where T @@ -102455,8 +102455,8 @@ mutable struct camera_x_rays__camera__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera__centre} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera__centre} + _parent::WeakRef end function camera_x_rays__camera__centre{T}() where T @@ -102469,22 +102469,22 @@ camera_x_rays__camera__centre() = camera_x_rays__camera__centre{Float64}() mutable struct camera_x_rays__camera{T} <: IDS{T} var"camera_dimensions" :: Vector{<:T} var"camera_dimensions_σ" :: Vector{<:T} - var"centre" :: camera_x_rays__camera__centre{T} + var"centre"::camera_x_rays__camera__centre{T} var"identifier" :: String - var"line_of_sight" :: camera_x_rays__camera__line_of_sight{T} + var"line_of_sight"::camera_x_rays__camera__line_of_sight{T} var"pixel_dimensions" :: Vector{<:T} var"pixel_dimensions_σ" :: Vector{<:T} - var"pixel_position" :: camera_x_rays__camera__pixel_position{T} + var"pixel_position"::camera_x_rays__camera__pixel_position{T} var"pixels_n" :: Vector{Int} - var"x1_unit_vector" :: camera_x_rays__camera__x1_unit_vector{T} - var"x2_unit_vector" :: camera_x_rays__camera__x2_unit_vector{T} - var"x3_unit_vector" :: camera_x_rays__camera__x3_unit_vector{T} + var"x1_unit_vector"::camera_x_rays__camera__x1_unit_vector{T} + var"x2_unit_vector"::camera_x_rays__camera__x2_unit_vector{T} + var"x3_unit_vector"::camera_x_rays__camera__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__camera} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__camera} + _parent::WeakRef end function camera_x_rays__camera{T}() where T @@ -102511,8 +102511,8 @@ mutable struct camera_x_rays__aperture__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__aperture__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__aperture__x3_unit_vector} + _parent::WeakRef end function camera_x_rays__aperture__x3_unit_vector{T}() where T @@ -102533,8 +102533,8 @@ mutable struct camera_x_rays__aperture__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__aperture__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__aperture__x2_unit_vector} + _parent::WeakRef end function camera_x_rays__aperture__x2_unit_vector{T}() where T @@ -102555,8 +102555,8 @@ mutable struct camera_x_rays__aperture__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__aperture__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__aperture__x1_unit_vector} + _parent::WeakRef end function camera_x_rays__aperture__x1_unit_vector{T}() where T @@ -102575,8 +102575,8 @@ mutable struct camera_x_rays__aperture__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__aperture__outline} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__aperture__outline} + _parent::WeakRef end function camera_x_rays__aperture__outline{T}() where T @@ -102597,8 +102597,8 @@ mutable struct camera_x_rays__aperture__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__aperture__centre} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__aperture__centre} + _parent::WeakRef end function camera_x_rays__aperture__centre{T}() where T @@ -102609,26 +102609,26 @@ end camera_x_rays__aperture__centre() = camera_x_rays__aperture__centre{Float64}() mutable struct camera_x_rays__aperture{T} <: IDS{T} - var"centre" :: camera_x_rays__aperture__centre{T} + var"centre"::camera_x_rays__aperture__centre{T} var"geometry_type" :: Int - var"outline" :: camera_x_rays__aperture__outline{T} + var"outline"::camera_x_rays__aperture__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: camera_x_rays__aperture__x1_unit_vector{T} + var"x1_unit_vector"::camera_x_rays__aperture__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: camera_x_rays__aperture__x2_unit_vector{T} + var"x2_unit_vector"::camera_x_rays__aperture__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: camera_x_rays__aperture__x3_unit_vector{T} + var"x3_unit_vector"::camera_x_rays__aperture__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays__aperture} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays__aperture} + _parent::WeakRef end function camera_x_rays__aperture{T}() where T @@ -102644,19 +102644,19 @@ end camera_x_rays__aperture() = camera_x_rays__aperture{Float64}() mutable struct camera_x_rays{T} <: IDStop{T} - var"aperture" :: camera_x_rays__aperture{T} - var"camera" :: camera_x_rays__camera{T} - var"code" :: camera_x_rays__code{T} - var"detector_humidity" :: camera_x_rays__detector_humidity{T} - var"detector_temperature" :: camera_x_rays__detector_temperature{T} + var"aperture"::camera_x_rays__aperture{T} + var"camera"::camera_x_rays__camera{T} + var"code"::camera_x_rays__code{T} + var"detector_humidity"::camera_x_rays__detector_humidity{T} + var"detector_temperature"::camera_x_rays__detector_temperature{T} var"energy_configuration_name" :: String var"energy_threshold_lower" :: Matrix{<:T} var"energy_threshold_lower_σ" :: Matrix{<:T} var"exposure_time" :: T var"exposure_time_σ" :: T - var"filter_window" :: camera_x_rays__filter_window{T} - var"frame" :: IDSvector{camera_x_rays__frame{T}} - var"ids_properties" :: camera_x_rays__ids_properties{T} + var"filter_window"::camera_x_rays__filter_window{T} + var"frame"::IDSvector{camera_x_rays__frame{T}} + var"ids_properties"::camera_x_rays__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"name" :: String @@ -102672,8 +102672,8 @@ mutable struct camera_x_rays{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_x_rays} - _parent :: WeakRef + _ref::Union{Nothing,camera_x_rays} + _parent::WeakRef end function camera_x_rays{T}() where T @@ -102699,8 +102699,8 @@ mutable struct camera_visible__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__version_put} + _parent::WeakRef end function camera_visible__ids_properties__version_put{T}() where T @@ -102717,8 +102717,8 @@ mutable struct camera_visible__ids_properties__provenance__node{T} <: IDSvectorS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__provenance__node} + _parent::WeakRef end function camera_visible__ids_properties__provenance__node{T}() where T @@ -102729,13 +102729,13 @@ end camera_visible__ids_properties__provenance__node() = camera_visible__ids_properties__provenance__node{Float64}() mutable struct camera_visible__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{camera_visible__ids_properties__provenance__node{T}} + var"node"::IDSvector{camera_visible__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__provenance} + _parent::WeakRef end function camera_visible__ids_properties__provenance{T}() where T @@ -102757,8 +102757,8 @@ mutable struct camera_visible__ids_properties__plugins__node___readback{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__plugins__node___readback} + _parent::WeakRef end function camera_visible__ids_properties__plugins__node___readback{T}() where T @@ -102779,8 +102779,8 @@ mutable struct camera_visible__ids_properties__plugins__node___put_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function camera_visible__ids_properties__plugins__node___put_operation{T}() where T @@ -102801,8 +102801,8 @@ mutable struct camera_visible__ids_properties__plugins__node___get_operation{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function camera_visible__ids_properties__plugins__node___get_operation{T}() where T @@ -102813,16 +102813,16 @@ end camera_visible__ids_properties__plugins__node___get_operation() = camera_visible__ids_properties__plugins__node___get_operation{Float64}() mutable struct camera_visible__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{camera_visible__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{camera_visible__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{camera_visible__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{camera_visible__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{camera_visible__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{camera_visible__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__plugins__node} + _parent::WeakRef end function camera_visible__ids_properties__plugins__node{T}() where T @@ -102845,8 +102845,8 @@ mutable struct camera_visible__ids_properties__plugins__infrastructure_put{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function camera_visible__ids_properties__plugins__infrastructure_put{T}() where T @@ -102866,8 +102866,8 @@ mutable struct camera_visible__ids_properties__plugins__infrastructure_get{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function camera_visible__ids_properties__plugins__infrastructure_get{T}() where T @@ -102878,15 +102878,15 @@ end camera_visible__ids_properties__plugins__infrastructure_get() = camera_visible__ids_properties__plugins__infrastructure_get{Float64}() mutable struct camera_visible__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: camera_visible__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: camera_visible__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{camera_visible__ids_properties__plugins__node{T}} + var"infrastructure_get"::camera_visible__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::camera_visible__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{camera_visible__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__plugins} + _parent::WeakRef end function camera_visible__ids_properties__plugins{T}() where T @@ -102907,8 +102907,8 @@ mutable struct camera_visible__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties__occurrence_type} + _parent::WeakRef end function camera_visible__ids_properties__occurrence_type{T}() where T @@ -102924,17 +102924,17 @@ mutable struct camera_visible__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: camera_visible__ids_properties__occurrence_type{T} - var"plugins" :: camera_visible__ids_properties__plugins{T} - var"provenance" :: camera_visible__ids_properties__provenance{T} + var"occurrence_type"::camera_visible__ids_properties__occurrence_type{T} + var"plugins"::camera_visible__ids_properties__plugins{T} + var"provenance"::camera_visible__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: camera_visible__ids_properties__version_put{T} + var"version_put"::camera_visible__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__ids_properties} + _parent::WeakRef end function camera_visible__ids_properties{T}() where T @@ -102959,8 +102959,8 @@ mutable struct camera_visible__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__code__library} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__code__library} + _parent::WeakRef end function camera_visible__code__library{T}() where T @@ -102973,7 +102973,7 @@ camera_visible__code__library() = camera_visible__code__library{Float64}() mutable struct camera_visible__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{camera_visible__code__library{T}} + var"library"::IDSvector{camera_visible__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -102983,8 +102983,8 @@ mutable struct camera_visible__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__code} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__code} + _parent::WeakRef end function camera_visible__code{T}() where T @@ -103003,8 +103003,8 @@ mutable struct camera_visible__channel___optical_element___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___type} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___type} + _parent::WeakRef end function camera_visible__channel___optical_element___type{T}() where T @@ -103022,8 +103022,8 @@ mutable struct camera_visible__channel___optical_element___material_properties__ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___material_properties__type} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___material_properties__type} + _parent::WeakRef end function camera_visible__channel___optical_element___material_properties__type{T}() where T @@ -103042,15 +103042,15 @@ mutable struct camera_visible__channel___optical_element___material_properties{T var"roughness_σ" :: Vector{<:T} var"transmission_coefficient" :: Vector{<:T} var"transmission_coefficient_σ" :: Vector{<:T} - var"type" :: camera_visible__channel___optical_element___material_properties__type{T} + var"type"::camera_visible__channel___optical_element___material_properties__type{T} var"wavelengths" :: Vector{<:T} var"wavelengths_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___material_properties} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___material_properties} + _parent::WeakRef end function camera_visible__channel___optical_element___material_properties{T}() where T @@ -103072,8 +103072,8 @@ mutable struct camera_visible__channel___optical_element___geometry__x3_unit_vec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___geometry__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___geometry__x3_unit_vector} + _parent::WeakRef end function camera_visible__channel___optical_element___geometry__x3_unit_vector{T}() where T @@ -103094,8 +103094,8 @@ mutable struct camera_visible__channel___optical_element___geometry__x2_unit_vec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___geometry__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___geometry__x2_unit_vector} + _parent::WeakRef end function camera_visible__channel___optical_element___geometry__x2_unit_vector{T}() where T @@ -103116,8 +103116,8 @@ mutable struct camera_visible__channel___optical_element___geometry__x1_unit_vec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___geometry__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___geometry__x1_unit_vector} + _parent::WeakRef end function camera_visible__channel___optical_element___geometry__x1_unit_vector{T}() where T @@ -103136,8 +103136,8 @@ mutable struct camera_visible__channel___optical_element___geometry__outline{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___geometry__outline} + _parent::WeakRef end function camera_visible__channel___optical_element___geometry__outline{T}() where T @@ -103158,8 +103158,8 @@ mutable struct camera_visible__channel___optical_element___geometry__centre{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___geometry__centre} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___geometry__centre} + _parent::WeakRef end function camera_visible__channel___optical_element___geometry__centre{T}() where T @@ -103170,26 +103170,26 @@ end camera_visible__channel___optical_element___geometry__centre() = camera_visible__channel___optical_element___geometry__centre{Float64}() mutable struct camera_visible__channel___optical_element___geometry{T} <: IDS{T} - var"centre" :: camera_visible__channel___optical_element___geometry__centre{T} + var"centre"::camera_visible__channel___optical_element___geometry__centre{T} var"geometry_type" :: Int - var"outline" :: camera_visible__channel___optical_element___geometry__outline{T} + var"outline"::camera_visible__channel___optical_element___geometry__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: camera_visible__channel___optical_element___geometry__x1_unit_vector{T} + var"x1_unit_vector"::camera_visible__channel___optical_element___geometry__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: camera_visible__channel___optical_element___geometry__x2_unit_vector{T} + var"x2_unit_vector"::camera_visible__channel___optical_element___geometry__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: camera_visible__channel___optical_element___geometry__x3_unit_vector{T} + var"x3_unit_vector"::camera_visible__channel___optical_element___geometry__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___geometry} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___geometry} + _parent::WeakRef end function camera_visible__channel___optical_element___geometry{T}() where T @@ -103212,8 +103212,8 @@ mutable struct camera_visible__channel___optical_element___front_surface__curvat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___front_surface__curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___front_surface__curvature_type} + _parent::WeakRef end function camera_visible__channel___optical_element___front_surface__curvature_type{T}() where T @@ -103224,7 +103224,7 @@ end camera_visible__channel___optical_element___front_surface__curvature_type() = camera_visible__channel___optical_element___front_surface__curvature_type{Float64}() mutable struct camera_visible__channel___optical_element___front_surface{T} <: IDS{T} - var"curvature_type" :: camera_visible__channel___optical_element___front_surface__curvature_type{T} + var"curvature_type"::camera_visible__channel___optical_element___front_surface__curvature_type{T} var"x1_curvature" :: T var"x1_curvature_σ" :: T var"x2_curvature" :: T @@ -103233,8 +103233,8 @@ mutable struct camera_visible__channel___optical_element___front_surface{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___front_surface} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___front_surface} + _parent::WeakRef end function camera_visible__channel___optical_element___front_surface{T}() where T @@ -103253,8 +103253,8 @@ mutable struct camera_visible__channel___optical_element___back_surface__curvatu _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___back_surface__curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___back_surface__curvature_type} + _parent::WeakRef end function camera_visible__channel___optical_element___back_surface__curvature_type{T}() where T @@ -103265,7 +103265,7 @@ end camera_visible__channel___optical_element___back_surface__curvature_type() = camera_visible__channel___optical_element___back_surface__curvature_type{Float64}() mutable struct camera_visible__channel___optical_element___back_surface{T} <: IDS{T} - var"curvature_type" :: camera_visible__channel___optical_element___back_surface__curvature_type{T} + var"curvature_type"::camera_visible__channel___optical_element___back_surface__curvature_type{T} var"x1_curvature" :: T var"x1_curvature_σ" :: T var"x2_curvature" :: T @@ -103274,8 +103274,8 @@ mutable struct camera_visible__channel___optical_element___back_surface{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element___back_surface} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element___back_surface} + _parent::WeakRef end function camera_visible__channel___optical_element___back_surface{T}() where T @@ -103287,19 +103287,19 @@ end camera_visible__channel___optical_element___back_surface() = camera_visible__channel___optical_element___back_surface{Float64}() mutable struct camera_visible__channel___optical_element{T} <: IDSvectorStaticElement{T} - var"back_surface" :: camera_visible__channel___optical_element___back_surface{T} - var"front_surface" :: camera_visible__channel___optical_element___front_surface{T} - var"geometry" :: camera_visible__channel___optical_element___geometry{T} - var"material_properties" :: camera_visible__channel___optical_element___material_properties{T} + var"back_surface"::camera_visible__channel___optical_element___back_surface{T} + var"front_surface"::camera_visible__channel___optical_element___front_surface{T} + var"geometry"::camera_visible__channel___optical_element___geometry{T} + var"material_properties"::camera_visible__channel___optical_element___material_properties{T} var"thickness" :: T var"thickness_σ" :: T - var"type" :: camera_visible__channel___optical_element___type{T} + var"type"::camera_visible__channel___optical_element___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___optical_element} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___optical_element} + _parent::WeakRef end function camera_visible__channel___optical_element{T}() where T @@ -103325,8 +103325,8 @@ mutable struct camera_visible__channel___fibre_bundle__geometry__x3_unit_vector{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___fibre_bundle__geometry__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___fibre_bundle__geometry__x3_unit_vector} + _parent::WeakRef end function camera_visible__channel___fibre_bundle__geometry__x3_unit_vector{T}() where T @@ -103347,8 +103347,8 @@ mutable struct camera_visible__channel___fibre_bundle__geometry__x2_unit_vector{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___fibre_bundle__geometry__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___fibre_bundle__geometry__x2_unit_vector} + _parent::WeakRef end function camera_visible__channel___fibre_bundle__geometry__x2_unit_vector{T}() where T @@ -103369,8 +103369,8 @@ mutable struct camera_visible__channel___fibre_bundle__geometry__x1_unit_vector{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___fibre_bundle__geometry__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___fibre_bundle__geometry__x1_unit_vector} + _parent::WeakRef end function camera_visible__channel___fibre_bundle__geometry__x1_unit_vector{T}() where T @@ -103389,8 +103389,8 @@ mutable struct camera_visible__channel___fibre_bundle__geometry__outline{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___fibre_bundle__geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___fibre_bundle__geometry__outline} + _parent::WeakRef end function camera_visible__channel___fibre_bundle__geometry__outline{T}() where T @@ -103411,8 +103411,8 @@ mutable struct camera_visible__channel___fibre_bundle__geometry__centre{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___fibre_bundle__geometry__centre} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___fibre_bundle__geometry__centre} + _parent::WeakRef end function camera_visible__channel___fibre_bundle__geometry__centre{T}() where T @@ -103423,26 +103423,26 @@ end camera_visible__channel___fibre_bundle__geometry__centre() = camera_visible__channel___fibre_bundle__geometry__centre{Float64}() mutable struct camera_visible__channel___fibre_bundle__geometry{T} <: IDS{T} - var"centre" :: camera_visible__channel___fibre_bundle__geometry__centre{T} + var"centre"::camera_visible__channel___fibre_bundle__geometry__centre{T} var"geometry_type" :: Int - var"outline" :: camera_visible__channel___fibre_bundle__geometry__outline{T} + var"outline"::camera_visible__channel___fibre_bundle__geometry__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: camera_visible__channel___fibre_bundle__geometry__x1_unit_vector{T} + var"x1_unit_vector"::camera_visible__channel___fibre_bundle__geometry__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: camera_visible__channel___fibre_bundle__geometry__x2_unit_vector{T} + var"x2_unit_vector"::camera_visible__channel___fibre_bundle__geometry__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: camera_visible__channel___fibre_bundle__geometry__x3_unit_vector{T} + var"x3_unit_vector"::camera_visible__channel___fibre_bundle__geometry__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___fibre_bundle__geometry} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___fibre_bundle__geometry} + _parent::WeakRef end function camera_visible__channel___fibre_bundle__geometry{T}() where T @@ -103466,8 +103466,8 @@ mutable struct camera_visible__channel___fibre_bundle__fibre_positions{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___fibre_bundle__fibre_positions} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___fibre_bundle__fibre_positions} + _parent::WeakRef end function camera_visible__channel___fibre_bundle__fibre_positions{T}() where T @@ -103478,16 +103478,16 @@ end camera_visible__channel___fibre_bundle__fibre_positions() = camera_visible__channel___fibre_bundle__fibre_positions{Float64}() mutable struct camera_visible__channel___fibre_bundle{T} <: IDS{T} - var"fibre_positions" :: camera_visible__channel___fibre_bundle__fibre_positions{T} + var"fibre_positions"::camera_visible__channel___fibre_bundle__fibre_positions{T} var"fibre_radius" :: T var"fibre_radius_σ" :: T - var"geometry" :: camera_visible__channel___fibre_bundle__geometry{T} + var"geometry"::camera_visible__channel___fibre_bundle__geometry{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___fibre_bundle} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___fibre_bundle} + _parent::WeakRef end function camera_visible__channel___fibre_bundle{T}() where T @@ -103508,8 +103508,8 @@ mutable struct camera_visible__channel___detector___geometry_matrix__without_ref _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___detector___geometry_matrix__without_reflections} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___detector___geometry_matrix__without_reflections} + _parent::WeakRef end function camera_visible__channel___detector___geometry_matrix__without_reflections{T}() where T @@ -103528,8 +103528,8 @@ mutable struct camera_visible__channel___detector___geometry_matrix__with_reflec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___detector___geometry_matrix__with_reflections} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___detector___geometry_matrix__with_reflections} + _parent::WeakRef end function camera_visible__channel___detector___geometry_matrix__with_reflections{T}() where T @@ -103552,8 +103552,8 @@ mutable struct camera_visible__channel___detector___geometry_matrix__interpolate _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___detector___geometry_matrix__interpolated} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___detector___geometry_matrix__interpolated} + _parent::WeakRef end function camera_visible__channel___detector___geometry_matrix__interpolated{T}() where T @@ -103571,8 +103571,8 @@ mutable struct camera_visible__channel___detector___geometry_matrix__emission_gr _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___detector___geometry_matrix__emission_grid__grid_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___detector___geometry_matrix__emission_grid__grid_type} + _parent::WeakRef end function camera_visible__channel___detector___geometry_matrix__emission_grid__grid_type{T}() where T @@ -103589,13 +103589,13 @@ mutable struct camera_visible__channel___detector___geometry_matrix__emission_gr var"dim2_σ" :: Vector{<:T} var"dim3" :: Vector{<:T} var"dim3_σ" :: Vector{<:T} - var"grid_type" :: camera_visible__channel___detector___geometry_matrix__emission_grid__grid_type{T} + var"grid_type"::camera_visible__channel___detector___geometry_matrix__emission_grid__grid_type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___detector___geometry_matrix__emission_grid} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___detector___geometry_matrix__emission_grid} + _parent::WeakRef end function camera_visible__channel___detector___geometry_matrix__emission_grid{T}() where T @@ -103607,18 +103607,18 @@ end camera_visible__channel___detector___geometry_matrix__emission_grid() = camera_visible__channel___detector___geometry_matrix__emission_grid{Float64}() mutable struct camera_visible__channel___detector___geometry_matrix{T} <: IDS{T} - var"emission_grid" :: camera_visible__channel___detector___geometry_matrix__emission_grid{T} - var"interpolated" :: camera_visible__channel___detector___geometry_matrix__interpolated{T} + var"emission_grid"::camera_visible__channel___detector___geometry_matrix__emission_grid{T} + var"interpolated"::camera_visible__channel___detector___geometry_matrix__interpolated{T} var"voxel_map" :: Array{Int, 3} var"voxels_n" :: Int - var"with_reflections" :: camera_visible__channel___detector___geometry_matrix__with_reflections{T} - var"without_reflections" :: camera_visible__channel___detector___geometry_matrix__without_reflections{T} + var"with_reflections"::camera_visible__channel___detector___geometry_matrix__with_reflections{T} + var"without_reflections"::camera_visible__channel___detector___geometry_matrix__without_reflections{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___detector___geometry_matrix} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___detector___geometry_matrix} + _parent::WeakRef end function camera_visible__channel___detector___geometry_matrix{T}() where T @@ -103641,8 +103641,8 @@ mutable struct camera_visible__channel___detector___frame{T} <: IDSvectorTimeEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___detector___frame} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___detector___frame} + _parent::WeakRef end function camera_visible__channel___detector___frame{T}() where T @@ -103658,8 +103658,8 @@ mutable struct camera_visible__channel___detector{T} <: IDSvectorStaticElement{T var"counts_to_radiance_σ" :: Matrix{<:T} var"exposure_time" :: T var"exposure_time_σ" :: T - var"frame" :: IDSvector{camera_visible__channel___detector___frame{T}} - var"geometry_matrix" :: camera_visible__channel___detector___geometry_matrix{T} + var"frame"::IDSvector{camera_visible__channel___detector___frame{T}} + var"geometry_matrix"::camera_visible__channel___detector___geometry_matrix{T} var"lines_n" :: Int var"noise" :: T var"noise_σ" :: T @@ -103675,8 +103675,8 @@ mutable struct camera_visible__channel___detector{T} <: IDSvectorStaticElement{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___detector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___detector} + _parent::WeakRef end function camera_visible__channel___detector{T}() where T @@ -103699,8 +103699,8 @@ mutable struct camera_visible__channel___aperture___x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___aperture___x3_unit_vector} + _parent::WeakRef end function camera_visible__channel___aperture___x3_unit_vector{T}() where T @@ -103721,8 +103721,8 @@ mutable struct camera_visible__channel___aperture___x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___aperture___x2_unit_vector} + _parent::WeakRef end function camera_visible__channel___aperture___x2_unit_vector{T}() where T @@ -103743,8 +103743,8 @@ mutable struct camera_visible__channel___aperture___x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___aperture___x1_unit_vector} + _parent::WeakRef end function camera_visible__channel___aperture___x1_unit_vector{T}() where T @@ -103763,8 +103763,8 @@ mutable struct camera_visible__channel___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___aperture___outline} + _parent::WeakRef end function camera_visible__channel___aperture___outline{T}() where T @@ -103785,8 +103785,8 @@ mutable struct camera_visible__channel___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___aperture___centre} + _parent::WeakRef end function camera_visible__channel___aperture___centre{T}() where T @@ -103797,26 +103797,26 @@ end camera_visible__channel___aperture___centre() = camera_visible__channel___aperture___centre{Float64}() mutable struct camera_visible__channel___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: camera_visible__channel___aperture___centre{T} + var"centre"::camera_visible__channel___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: camera_visible__channel___aperture___outline{T} + var"outline"::camera_visible__channel___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: camera_visible__channel___aperture___x1_unit_vector{T} + var"x1_unit_vector"::camera_visible__channel___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: camera_visible__channel___aperture___x2_unit_vector{T} + var"x2_unit_vector"::camera_visible__channel___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: camera_visible__channel___aperture___x3_unit_vector{T} + var"x3_unit_vector"::camera_visible__channel___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel___aperture} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel___aperture} + _parent::WeakRef end function camera_visible__channel___aperture{T}() where T @@ -103832,11 +103832,11 @@ end camera_visible__channel___aperture() = camera_visible__channel___aperture{Float64}() mutable struct camera_visible__channel{T} <: IDSvectorStaticElement{T} - var"aperture" :: IDSvector{camera_visible__channel___aperture{T}} - var"detector" :: IDSvector{camera_visible__channel___detector{T}} - var"fibre_bundle" :: camera_visible__channel___fibre_bundle{T} + var"aperture"::IDSvector{camera_visible__channel___aperture{T}} + var"detector"::IDSvector{camera_visible__channel___detector{T}} + var"fibre_bundle"::camera_visible__channel___fibre_bundle{T} var"name" :: String - var"optical_element" :: IDSvector{camera_visible__channel___optical_element{T}} + var"optical_element"::IDSvector{camera_visible__channel___optical_element{T}} var"viewing_angle_alpha_bounds" :: Vector{<:T} var"viewing_angle_alpha_bounds_σ" :: Vector{<:T} var"viewing_angle_beta_bounds" :: Vector{<:T} @@ -103845,8 +103845,8 @@ mutable struct camera_visible__channel{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible__channel} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible__channel} + _parent::WeakRef end function camera_visible__channel{T}() where T @@ -103861,9 +103861,9 @@ end camera_visible__channel() = camera_visible__channel{Float64}() mutable struct camera_visible{T} <: IDStop{T} - var"channel" :: IDSvector{camera_visible__channel{T}} - var"code" :: camera_visible__code{T} - var"ids_properties" :: camera_visible__ids_properties{T} + var"channel"::IDSvector{camera_visible__channel{T}} + var"code"::camera_visible__code{T} + var"ids_properties"::camera_visible__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"name" :: String @@ -103872,8 +103872,8 @@ mutable struct camera_visible{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_visible} - _parent :: WeakRef + _ref::Union{Nothing,camera_visible} + _parent::WeakRef end function camera_visible{T}() where T @@ -103894,8 +103894,8 @@ mutable struct camera_ir__optical_element___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___type} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___type} + _parent::WeakRef end function camera_ir__optical_element___type{T}() where T @@ -103913,8 +103913,8 @@ mutable struct camera_ir__optical_element___material_properties__type{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___material_properties__type} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___material_properties__type} + _parent::WeakRef end function camera_ir__optical_element___material_properties__type{T}() where T @@ -103933,15 +103933,15 @@ mutable struct camera_ir__optical_element___material_properties{T} <: IDS{T} var"roughness_σ" :: Vector{<:T} var"transmission_coefficient" :: Vector{<:T} var"transmission_coefficient_σ" :: Vector{<:T} - var"type" :: camera_ir__optical_element___material_properties__type{T} + var"type"::camera_ir__optical_element___material_properties__type{T} var"wavelengths" :: Vector{<:T} var"wavelengths_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___material_properties} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___material_properties} + _parent::WeakRef end function camera_ir__optical_element___material_properties{T}() where T @@ -103963,8 +103963,8 @@ mutable struct camera_ir__optical_element___geometry__x3_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___geometry__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___geometry__x3_unit_vector} + _parent::WeakRef end function camera_ir__optical_element___geometry__x3_unit_vector{T}() where T @@ -103985,8 +103985,8 @@ mutable struct camera_ir__optical_element___geometry__x2_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___geometry__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___geometry__x2_unit_vector} + _parent::WeakRef end function camera_ir__optical_element___geometry__x2_unit_vector{T}() where T @@ -104007,8 +104007,8 @@ mutable struct camera_ir__optical_element___geometry__x1_unit_vector{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___geometry__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___geometry__x1_unit_vector} + _parent::WeakRef end function camera_ir__optical_element___geometry__x1_unit_vector{T}() where T @@ -104027,8 +104027,8 @@ mutable struct camera_ir__optical_element___geometry__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___geometry__outline} + _parent::WeakRef end function camera_ir__optical_element___geometry__outline{T}() where T @@ -104049,8 +104049,8 @@ mutable struct camera_ir__optical_element___geometry__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___geometry__centre} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___geometry__centre} + _parent::WeakRef end function camera_ir__optical_element___geometry__centre{T}() where T @@ -104061,26 +104061,26 @@ end camera_ir__optical_element___geometry__centre() = camera_ir__optical_element___geometry__centre{Float64}() mutable struct camera_ir__optical_element___geometry{T} <: IDS{T} - var"centre" :: camera_ir__optical_element___geometry__centre{T} + var"centre"::camera_ir__optical_element___geometry__centre{T} var"geometry_type" :: Int - var"outline" :: camera_ir__optical_element___geometry__outline{T} + var"outline"::camera_ir__optical_element___geometry__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: camera_ir__optical_element___geometry__x1_unit_vector{T} + var"x1_unit_vector"::camera_ir__optical_element___geometry__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: camera_ir__optical_element___geometry__x2_unit_vector{T} + var"x2_unit_vector"::camera_ir__optical_element___geometry__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: camera_ir__optical_element___geometry__x3_unit_vector{T} + var"x3_unit_vector"::camera_ir__optical_element___geometry__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___geometry} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___geometry} + _parent::WeakRef end function camera_ir__optical_element___geometry{T}() where T @@ -104103,8 +104103,8 @@ mutable struct camera_ir__optical_element___front_surface__curvature_type{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___front_surface__curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___front_surface__curvature_type} + _parent::WeakRef end function camera_ir__optical_element___front_surface__curvature_type{T}() where T @@ -104115,7 +104115,7 @@ end camera_ir__optical_element___front_surface__curvature_type() = camera_ir__optical_element___front_surface__curvature_type{Float64}() mutable struct camera_ir__optical_element___front_surface{T} <: IDS{T} - var"curvature_type" :: camera_ir__optical_element___front_surface__curvature_type{T} + var"curvature_type"::camera_ir__optical_element___front_surface__curvature_type{T} var"x1_curvature" :: T var"x1_curvature_σ" :: T var"x2_curvature" :: T @@ -104124,8 +104124,8 @@ mutable struct camera_ir__optical_element___front_surface{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___front_surface} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___front_surface} + _parent::WeakRef end function camera_ir__optical_element___front_surface{T}() where T @@ -104144,8 +104144,8 @@ mutable struct camera_ir__optical_element___back_surface__curvature_type{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___back_surface__curvature_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___back_surface__curvature_type} + _parent::WeakRef end function camera_ir__optical_element___back_surface__curvature_type{T}() where T @@ -104156,7 +104156,7 @@ end camera_ir__optical_element___back_surface__curvature_type() = camera_ir__optical_element___back_surface__curvature_type{Float64}() mutable struct camera_ir__optical_element___back_surface{T} <: IDS{T} - var"curvature_type" :: camera_ir__optical_element___back_surface__curvature_type{T} + var"curvature_type"::camera_ir__optical_element___back_surface__curvature_type{T} var"x1_curvature" :: T var"x1_curvature_σ" :: T var"x2_curvature" :: T @@ -104165,8 +104165,8 @@ mutable struct camera_ir__optical_element___back_surface{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element___back_surface} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element___back_surface} + _parent::WeakRef end function camera_ir__optical_element___back_surface{T}() where T @@ -104178,19 +104178,19 @@ end camera_ir__optical_element___back_surface() = camera_ir__optical_element___back_surface{Float64}() mutable struct camera_ir__optical_element{T} <: IDSvectorStaticElement{T} - var"back_surface" :: camera_ir__optical_element___back_surface{T} - var"front_surface" :: camera_ir__optical_element___front_surface{T} - var"geometry" :: camera_ir__optical_element___geometry{T} - var"material_properties" :: camera_ir__optical_element___material_properties{T} + var"back_surface"::camera_ir__optical_element___back_surface{T} + var"front_surface"::camera_ir__optical_element___front_surface{T} + var"geometry"::camera_ir__optical_element___geometry{T} + var"material_properties"::camera_ir__optical_element___material_properties{T} var"thickness" :: T var"thickness_σ" :: T - var"type" :: camera_ir__optical_element___type{T} + var"type"::camera_ir__optical_element___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__optical_element} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__optical_element} + _parent::WeakRef end function camera_ir__optical_element{T}() where T @@ -104213,8 +104213,8 @@ mutable struct camera_ir__midplane{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__midplane} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__midplane} + _parent::WeakRef end function camera_ir__midplane{T}() where T @@ -104232,8 +104232,8 @@ mutable struct camera_ir__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__version_put} + _parent::WeakRef end function camera_ir__ids_properties__version_put{T}() where T @@ -104250,8 +104250,8 @@ mutable struct camera_ir__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__provenance__node} + _parent::WeakRef end function camera_ir__ids_properties__provenance__node{T}() where T @@ -104262,13 +104262,13 @@ end camera_ir__ids_properties__provenance__node() = camera_ir__ids_properties__provenance__node{Float64}() mutable struct camera_ir__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{camera_ir__ids_properties__provenance__node{T}} + var"node"::IDSvector{camera_ir__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__provenance} + _parent::WeakRef end function camera_ir__ids_properties__provenance{T}() where T @@ -104290,8 +104290,8 @@ mutable struct camera_ir__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__plugins__node___readback} + _parent::WeakRef end function camera_ir__ids_properties__plugins__node___readback{T}() where T @@ -104312,8 +104312,8 @@ mutable struct camera_ir__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function camera_ir__ids_properties__plugins__node___put_operation{T}() where T @@ -104334,8 +104334,8 @@ mutable struct camera_ir__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function camera_ir__ids_properties__plugins__node___get_operation{T}() where T @@ -104346,16 +104346,16 @@ end camera_ir__ids_properties__plugins__node___get_operation() = camera_ir__ids_properties__plugins__node___get_operation{Float64}() mutable struct camera_ir__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{camera_ir__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{camera_ir__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{camera_ir__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{camera_ir__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{camera_ir__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{camera_ir__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__plugins__node} + _parent::WeakRef end function camera_ir__ids_properties__plugins__node{T}() where T @@ -104378,8 +104378,8 @@ mutable struct camera_ir__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function camera_ir__ids_properties__plugins__infrastructure_put{T}() where T @@ -104399,8 +104399,8 @@ mutable struct camera_ir__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function camera_ir__ids_properties__plugins__infrastructure_get{T}() where T @@ -104411,15 +104411,15 @@ end camera_ir__ids_properties__plugins__infrastructure_get() = camera_ir__ids_properties__plugins__infrastructure_get{Float64}() mutable struct camera_ir__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: camera_ir__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: camera_ir__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{camera_ir__ids_properties__plugins__node{T}} + var"infrastructure_get"::camera_ir__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::camera_ir__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{camera_ir__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__plugins} + _parent::WeakRef end function camera_ir__ids_properties__plugins{T}() where T @@ -104440,8 +104440,8 @@ mutable struct camera_ir__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties__occurrence_type} + _parent::WeakRef end function camera_ir__ids_properties__occurrence_type{T}() where T @@ -104457,17 +104457,17 @@ mutable struct camera_ir__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: camera_ir__ids_properties__occurrence_type{T} - var"plugins" :: camera_ir__ids_properties__plugins{T} - var"provenance" :: camera_ir__ids_properties__provenance{T} + var"occurrence_type"::camera_ir__ids_properties__occurrence_type{T} + var"plugins"::camera_ir__ids_properties__plugins{T} + var"provenance"::camera_ir__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: camera_ir__ids_properties__version_put{T} + var"version_put"::camera_ir__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__ids_properties} + _parent::WeakRef end function camera_ir__ids_properties{T}() where T @@ -104493,8 +104493,8 @@ mutable struct camera_ir__frame_analysis{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__frame_analysis} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__frame_analysis} + _parent::WeakRef end function camera_ir__frame_analysis{T}() where T @@ -104512,8 +104512,8 @@ mutable struct camera_ir__frame{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__frame} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__frame} + _parent::WeakRef end function camera_ir__frame{T}() where T @@ -104534,8 +104534,8 @@ mutable struct camera_ir__fibre_bundle__geometry__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__fibre_bundle__geometry__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__fibre_bundle__geometry__x3_unit_vector} + _parent::WeakRef end function camera_ir__fibre_bundle__geometry__x3_unit_vector{T}() where T @@ -104556,8 +104556,8 @@ mutable struct camera_ir__fibre_bundle__geometry__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__fibre_bundle__geometry__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__fibre_bundle__geometry__x2_unit_vector} + _parent::WeakRef end function camera_ir__fibre_bundle__geometry__x2_unit_vector{T}() where T @@ -104578,8 +104578,8 @@ mutable struct camera_ir__fibre_bundle__geometry__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__fibre_bundle__geometry__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__fibre_bundle__geometry__x1_unit_vector} + _parent::WeakRef end function camera_ir__fibre_bundle__geometry__x1_unit_vector{T}() where T @@ -104598,8 +104598,8 @@ mutable struct camera_ir__fibre_bundle__geometry__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__fibre_bundle__geometry__outline} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__fibre_bundle__geometry__outline} + _parent::WeakRef end function camera_ir__fibre_bundle__geometry__outline{T}() where T @@ -104620,8 +104620,8 @@ mutable struct camera_ir__fibre_bundle__geometry__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__fibre_bundle__geometry__centre} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__fibre_bundle__geometry__centre} + _parent::WeakRef end function camera_ir__fibre_bundle__geometry__centre{T}() where T @@ -104632,26 +104632,26 @@ end camera_ir__fibre_bundle__geometry__centre() = camera_ir__fibre_bundle__geometry__centre{Float64}() mutable struct camera_ir__fibre_bundle__geometry{T} <: IDS{T} - var"centre" :: camera_ir__fibre_bundle__geometry__centre{T} + var"centre"::camera_ir__fibre_bundle__geometry__centre{T} var"geometry_type" :: Int - var"outline" :: camera_ir__fibre_bundle__geometry__outline{T} + var"outline"::camera_ir__fibre_bundle__geometry__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: camera_ir__fibre_bundle__geometry__x1_unit_vector{T} + var"x1_unit_vector"::camera_ir__fibre_bundle__geometry__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: camera_ir__fibre_bundle__geometry__x2_unit_vector{T} + var"x2_unit_vector"::camera_ir__fibre_bundle__geometry__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: camera_ir__fibre_bundle__geometry__x3_unit_vector{T} + var"x3_unit_vector"::camera_ir__fibre_bundle__geometry__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__fibre_bundle__geometry} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__fibre_bundle__geometry} + _parent::WeakRef end function camera_ir__fibre_bundle__geometry{T}() where T @@ -104675,8 +104675,8 @@ mutable struct camera_ir__fibre_bundle__fibre_positions{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__fibre_bundle__fibre_positions} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__fibre_bundle__fibre_positions} + _parent::WeakRef end function camera_ir__fibre_bundle__fibre_positions{T}() where T @@ -104687,16 +104687,16 @@ end camera_ir__fibre_bundle__fibre_positions() = camera_ir__fibre_bundle__fibre_positions{Float64}() mutable struct camera_ir__fibre_bundle{T} <: IDS{T} - var"fibre_positions" :: camera_ir__fibre_bundle__fibre_positions{T} + var"fibre_positions"::camera_ir__fibre_bundle__fibre_positions{T} var"fibre_radius" :: T var"fibre_radius_σ" :: T - var"geometry" :: camera_ir__fibre_bundle__geometry{T} + var"geometry"::camera_ir__fibre_bundle__geometry{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__fibre_bundle} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__fibre_bundle} + _parent::WeakRef end function camera_ir__fibre_bundle{T}() where T @@ -104719,8 +104719,8 @@ mutable struct camera_ir__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__code__library} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__code__library} + _parent::WeakRef end function camera_ir__code__library{T}() where T @@ -104733,7 +104733,7 @@ camera_ir__code__library() = camera_ir__code__library{Float64}() mutable struct camera_ir__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{camera_ir__code__library{T}} + var"library"::IDSvector{camera_ir__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -104743,8 +104743,8 @@ mutable struct camera_ir__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__code} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__code} + _parent::WeakRef end function camera_ir__code{T}() where T @@ -104765,8 +104765,8 @@ mutable struct camera_ir__calibration{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir__calibration} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir__calibration} + _parent::WeakRef end function camera_ir__calibration{T}() where T @@ -104777,24 +104777,24 @@ end camera_ir__calibration() = camera_ir__calibration{Float64}() mutable struct camera_ir{T} <: IDStop{T} - var"calibration" :: camera_ir__calibration{T} - var"code" :: camera_ir__code{T} - var"fibre_bundle" :: camera_ir__fibre_bundle{T} - var"frame" :: IDSvector{camera_ir__frame{T}} - var"frame_analysis" :: IDSvector{camera_ir__frame_analysis{T}} - var"ids_properties" :: camera_ir__ids_properties{T} + var"calibration"::camera_ir__calibration{T} + var"code"::camera_ir__code{T} + var"fibre_bundle"::camera_ir__fibre_bundle{T} + var"frame"::IDSvector{camera_ir__frame{T}} + var"frame_analysis"::IDSvector{camera_ir__frame_analysis{T}} + var"ids_properties"::camera_ir__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"midplane" :: camera_ir__midplane{T} + var"midplane"::camera_ir__midplane{T} var"name" :: String - var"optical_element" :: IDSvector{camera_ir__optical_element{T}} + var"optical_element"::IDSvector{camera_ir__optical_element{T}} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,camera_ir} - _parent :: WeakRef + _ref::Union{Nothing,camera_ir} + _parent::WeakRef end function camera_ir{T}() where T @@ -104820,8 +104820,8 @@ mutable struct calorimetry__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__version_put} + _parent::WeakRef end function calorimetry__ids_properties__version_put{T}() where T @@ -104838,8 +104838,8 @@ mutable struct calorimetry__ids_properties__provenance__node{T} <: IDSvectorStat _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__provenance__node} + _parent::WeakRef end function calorimetry__ids_properties__provenance__node{T}() where T @@ -104850,13 +104850,13 @@ end calorimetry__ids_properties__provenance__node() = calorimetry__ids_properties__provenance__node{Float64}() mutable struct calorimetry__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{calorimetry__ids_properties__provenance__node{T}} + var"node"::IDSvector{calorimetry__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__provenance} + _parent::WeakRef end function calorimetry__ids_properties__provenance{T}() where T @@ -104878,8 +104878,8 @@ mutable struct calorimetry__ids_properties__plugins__node___readback{T} <: IDSve _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__plugins__node___readback} + _parent::WeakRef end function calorimetry__ids_properties__plugins__node___readback{T}() where T @@ -104900,8 +104900,8 @@ mutable struct calorimetry__ids_properties__plugins__node___put_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function calorimetry__ids_properties__plugins__node___put_operation{T}() where T @@ -104922,8 +104922,8 @@ mutable struct calorimetry__ids_properties__plugins__node___get_operation{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function calorimetry__ids_properties__plugins__node___get_operation{T}() where T @@ -104934,16 +104934,16 @@ end calorimetry__ids_properties__plugins__node___get_operation() = calorimetry__ids_properties__plugins__node___get_operation{Float64}() mutable struct calorimetry__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{calorimetry__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{calorimetry__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{calorimetry__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{calorimetry__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{calorimetry__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{calorimetry__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__plugins__node} + _parent::WeakRef end function calorimetry__ids_properties__plugins__node{T}() where T @@ -104966,8 +104966,8 @@ mutable struct calorimetry__ids_properties__plugins__infrastructure_put{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function calorimetry__ids_properties__plugins__infrastructure_put{T}() where T @@ -104987,8 +104987,8 @@ mutable struct calorimetry__ids_properties__plugins__infrastructure_get{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function calorimetry__ids_properties__plugins__infrastructure_get{T}() where T @@ -104999,15 +104999,15 @@ end calorimetry__ids_properties__plugins__infrastructure_get() = calorimetry__ids_properties__plugins__infrastructure_get{Float64}() mutable struct calorimetry__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: calorimetry__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: calorimetry__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{calorimetry__ids_properties__plugins__node{T}} + var"infrastructure_get"::calorimetry__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::calorimetry__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{calorimetry__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__plugins} + _parent::WeakRef end function calorimetry__ids_properties__plugins{T}() where T @@ -105028,8 +105028,8 @@ mutable struct calorimetry__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties__occurrence_type} + _parent::WeakRef end function calorimetry__ids_properties__occurrence_type{T}() where T @@ -105045,17 +105045,17 @@ mutable struct calorimetry__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: calorimetry__ids_properties__occurrence_type{T} - var"plugins" :: calorimetry__ids_properties__plugins{T} - var"provenance" :: calorimetry__ids_properties__provenance{T} + var"occurrence_type"::calorimetry__ids_properties__occurrence_type{T} + var"plugins"::calorimetry__ids_properties__plugins{T} + var"provenance"::calorimetry__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: calorimetry__ids_properties__version_put{T} + var"version_put"::calorimetry__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__ids_properties} + _parent::WeakRef end function calorimetry__ids_properties{T}() where T @@ -105079,8 +105079,8 @@ mutable struct calorimetry__group___component___transit_time{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group___component___transit_time} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group___component___transit_time} + _parent::WeakRef end function calorimetry__group___component___transit_time{T}() where T @@ -105100,8 +105100,8 @@ mutable struct calorimetry__group___component___temperature_out{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group___component___temperature_out} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group___component___temperature_out} + _parent::WeakRef end function calorimetry__group___component___temperature_out{T}() where T @@ -105121,8 +105121,8 @@ mutable struct calorimetry__group___component___temperature_in{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group___component___temperature_in} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group___component___temperature_in} + _parent::WeakRef end function calorimetry__group___component___temperature_in{T}() where T @@ -105142,8 +105142,8 @@ mutable struct calorimetry__group___component___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group___component___power} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group___component___power} + _parent::WeakRef end function calorimetry__group___component___power{T}() where T @@ -105163,8 +105163,8 @@ mutable struct calorimetry__group___component___mass_flow{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group___component___mass_flow} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group___component___mass_flow} + _parent::WeakRef end function calorimetry__group___component___mass_flow{T}() where T @@ -105182,8 +105182,8 @@ mutable struct calorimetry__group___component___energy_total{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group___component___energy_total} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group___component___energy_total} + _parent::WeakRef end function calorimetry__group___component___energy_total{T}() where T @@ -105203,8 +105203,8 @@ mutable struct calorimetry__group___component___energy_cumulated{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group___component___energy_cumulated} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group___component___energy_cumulated} + _parent::WeakRef end function calorimetry__group___component___energy_cumulated{T}() where T @@ -105215,21 +105215,21 @@ end calorimetry__group___component___energy_cumulated() = calorimetry__group___component___energy_cumulated{Float64}() mutable struct calorimetry__group___component{T} <: IDSvectorStaticElement{T} - var"energy_cumulated" :: calorimetry__group___component___energy_cumulated{T} - var"energy_total" :: calorimetry__group___component___energy_total{T} + var"energy_cumulated"::calorimetry__group___component___energy_cumulated{T} + var"energy_total"::calorimetry__group___component___energy_total{T} var"identifier" :: String - var"mass_flow" :: calorimetry__group___component___mass_flow{T} + var"mass_flow"::calorimetry__group___component___mass_flow{T} var"name" :: String - var"power" :: calorimetry__group___component___power{T} - var"temperature_in" :: calorimetry__group___component___temperature_in{T} - var"temperature_out" :: calorimetry__group___component___temperature_out{T} - var"transit_time" :: calorimetry__group___component___transit_time{T} + var"power"::calorimetry__group___component___power{T} + var"temperature_in"::calorimetry__group___component___temperature_in{T} + var"temperature_out"::calorimetry__group___component___temperature_out{T} + var"transit_time"::calorimetry__group___component___transit_time{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group___component} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group___component} + _parent::WeakRef end function calorimetry__group___component{T}() where T @@ -105247,15 +105247,15 @@ end calorimetry__group___component() = calorimetry__group___component{Float64}() mutable struct calorimetry__group{T} <: IDSvectorStaticElement{T} - var"component" :: IDSvector{calorimetry__group___component{T}} + var"component"::IDSvector{calorimetry__group___component{T}} var"identifier" :: String var"name" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__group} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__group} + _parent::WeakRef end function calorimetry__group{T}() where T @@ -105276,8 +105276,8 @@ mutable struct calorimetry__cooling_loop___temperature_out{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__cooling_loop___temperature_out} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__cooling_loop___temperature_out} + _parent::WeakRef end function calorimetry__cooling_loop___temperature_out{T}() where T @@ -105297,8 +105297,8 @@ mutable struct calorimetry__cooling_loop___temperature_in{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__cooling_loop___temperature_in} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__cooling_loop___temperature_in} + _parent::WeakRef end function calorimetry__cooling_loop___temperature_in{T}() where T @@ -105318,8 +105318,8 @@ mutable struct calorimetry__cooling_loop___mass_flow{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__cooling_loop___mass_flow} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__cooling_loop___mass_flow} + _parent::WeakRef end function calorimetry__cooling_loop___mass_flow{T}() where T @@ -105331,16 +105331,16 @@ calorimetry__cooling_loop___mass_flow() = calorimetry__cooling_loop___mass_flow{ mutable struct calorimetry__cooling_loop{T} <: IDSvectorStaticElement{T} var"identifier" :: String - var"mass_flow" :: calorimetry__cooling_loop___mass_flow{T} + var"mass_flow"::calorimetry__cooling_loop___mass_flow{T} var"name" :: String - var"temperature_in" :: calorimetry__cooling_loop___temperature_in{T} - var"temperature_out" :: calorimetry__cooling_loop___temperature_out{T} + var"temperature_in"::calorimetry__cooling_loop___temperature_in{T} + var"temperature_out"::calorimetry__cooling_loop___temperature_out{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__cooling_loop} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__cooling_loop} + _parent::WeakRef end function calorimetry__cooling_loop{T}() where T @@ -105364,8 +105364,8 @@ mutable struct calorimetry__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__code__library} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__code__library} + _parent::WeakRef end function calorimetry__code__library{T}() where T @@ -105378,7 +105378,7 @@ calorimetry__code__library() = calorimetry__code__library{Float64}() mutable struct calorimetry__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{calorimetry__code__library{T}} + var"library"::IDSvector{calorimetry__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -105388,8 +105388,8 @@ mutable struct calorimetry__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry__code} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry__code} + _parent::WeakRef end function calorimetry__code{T}() where T @@ -105401,10 +105401,10 @@ end calorimetry__code() = calorimetry__code{Float64}() mutable struct calorimetry{T} <: IDStop{T} - var"code" :: calorimetry__code{T} - var"cooling_loop" :: IDSvector{calorimetry__cooling_loop{T}} - var"group" :: IDSvector{calorimetry__group{T}} - var"ids_properties" :: calorimetry__ids_properties{T} + var"code"::calorimetry__code{T} + var"cooling_loop"::IDSvector{calorimetry__cooling_loop{T}} + var"group"::IDSvector{calorimetry__group{T}} + var"ids_properties"::calorimetry__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -105412,8 +105412,8 @@ mutable struct calorimetry{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,calorimetry} - _parent :: WeakRef + _ref::Union{Nothing,calorimetry} + _parent::WeakRef end function calorimetry{T}() where T @@ -105445,8 +105445,8 @@ mutable struct build__tf__technology{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__tf__technology} - _parent :: WeakRef + _ref::Union{Nothing,build__tf__technology} + _parent::WeakRef end function build__tf__technology{T}() where T @@ -105470,15 +105470,15 @@ mutable struct build__tf{T} <: IDS{T} var"nose_hfs_fraction_σ" :: T var"ripple" :: T var"ripple_σ" :: T - var"technology" :: build__tf__technology{T} + var"technology"::build__tf__technology{T} var"wedge_thickness" :: T var"wedge_thickness_σ" :: T _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__tf} - _parent :: WeakRef + _ref::Union{Nothing,build__tf} + _parent::WeakRef end function build__tf{T}() where T @@ -105498,8 +105498,8 @@ mutable struct build__structure___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__structure___outline} - _parent :: WeakRef + _ref::Union{Nothing,build__structure___outline} + _parent::WeakRef end function build__structure___outline{T}() where T @@ -105515,7 +105515,7 @@ mutable struct build__structure{T} <: IDSvectorStaticElement{T} var"identifier" :: String var"material" :: String var"name" :: String - var"outline" :: build__structure___outline{T} + var"outline"::build__structure___outline{T} var"toroidal_angles" :: Vector{<:T} var"toroidal_angles_σ" :: Vector{<:T} var"toroidal_extent" :: T @@ -105527,8 +105527,8 @@ mutable struct build__structure{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__structure} - _parent :: WeakRef + _ref::Union{Nothing,build__structure} + _parent::WeakRef end function build__structure{T}() where T @@ -105557,8 +105557,8 @@ mutable struct build__pf_active__technology{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__pf_active__technology} - _parent :: WeakRef + _ref::Union{Nothing,build__pf_active__technology} + _parent::WeakRef end function build__pf_active__technology{T}() where T @@ -105579,8 +105579,8 @@ mutable struct build__pf_active__rail___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__pf_active__rail___outline} - _parent :: WeakRef + _ref::Union{Nothing,build__pf_active__rail___outline} + _parent::WeakRef end function build__pf_active__rail___outline{T}() where T @@ -105595,13 +105595,13 @@ mutable struct build__pf_active__rail{T} <: IDSvectorStaticElement{T} var"coils_cleareance_σ" :: T var"coils_number" :: Int var"name" :: String - var"outline" :: build__pf_active__rail___outline{T} + var"outline"::build__pf_active__rail___outline{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__pf_active__rail} - _parent :: WeakRef + _ref::Union{Nothing,build__pf_active__rail} + _parent::WeakRef end function build__pf_active__rail{T}() where T @@ -105613,14 +105613,14 @@ end build__pf_active__rail() = build__pf_active__rail{Float64}() mutable struct build__pf_active{T} <: IDS{T} - var"rail" :: IDSvector{build__pf_active__rail{T}} - var"technology" :: build__pf_active__technology{T} + var"rail"::IDSvector{build__pf_active__rail{T}} + var"technology"::build__pf_active__technology{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__pf_active} - _parent :: WeakRef + _ref::Union{Nothing,build__pf_active} + _parent::WeakRef end function build__pf_active{T}() where T @@ -105650,8 +105650,8 @@ mutable struct build__oh__technology{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__oh__technology} - _parent :: WeakRef + _ref::Union{Nothing,build__oh__technology} + _parent::WeakRef end function build__oh__technology{T}() where T @@ -105672,13 +105672,13 @@ mutable struct build__oh{T} <: IDS{T} var"max_b_field_σ" :: T var"max_j" :: T var"max_j_σ" :: T - var"technology" :: build__oh__technology{T} + var"technology"::build__oh__technology{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__oh} - _parent :: WeakRef + _ref::Union{Nothing,build__oh} + _parent::WeakRef end function build__oh{T}() where T @@ -105698,8 +105698,8 @@ mutable struct build__layer___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__layer___outline} - _parent :: WeakRef + _ref::Union{Nothing,build__layer___outline} + _parent::WeakRef end function build__layer___outline{T}() where T @@ -105718,7 +105718,7 @@ mutable struct build__layer{T} <: IDSvectorStaticElement{T} var"identifier" :: Int var"material" :: String var"name" :: String - var"outline" :: build__layer___outline{T} + var"outline"::build__layer___outline{T} var"shape" :: Int var"shape_parameters" :: Vector{<:T} var"shape_parameters_σ" :: Vector{<:T} @@ -105736,8 +105736,8 @@ mutable struct build__layer{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__layer} - _parent :: WeakRef + _ref::Union{Nothing,build__layer} + _parent::WeakRef end function build__layer{T}() where T @@ -105756,8 +105756,8 @@ mutable struct build__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__version_put} + _parent::WeakRef end function build__ids_properties__version_put{T}() where T @@ -105774,8 +105774,8 @@ mutable struct build__ids_properties__provenance__node{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__provenance__node} + _parent::WeakRef end function build__ids_properties__provenance__node{T}() where T @@ -105786,13 +105786,13 @@ end build__ids_properties__provenance__node() = build__ids_properties__provenance__node{Float64}() mutable struct build__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{build__ids_properties__provenance__node{T}} + var"node"::IDSvector{build__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__provenance} + _parent::WeakRef end function build__ids_properties__provenance{T}() where T @@ -105814,8 +105814,8 @@ mutable struct build__ids_properties__plugins__node___readback{T} <: IDSvectorSt _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__plugins__node___readback} + _parent::WeakRef end function build__ids_properties__plugins__node___readback{T}() where T @@ -105836,8 +105836,8 @@ mutable struct build__ids_properties__plugins__node___put_operation{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function build__ids_properties__plugins__node___put_operation{T}() where T @@ -105858,8 +105858,8 @@ mutable struct build__ids_properties__plugins__node___get_operation{T} <: IDSvec _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function build__ids_properties__plugins__node___get_operation{T}() where T @@ -105870,16 +105870,16 @@ end build__ids_properties__plugins__node___get_operation() = build__ids_properties__plugins__node___get_operation{Float64}() mutable struct build__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{build__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{build__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{build__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{build__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{build__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{build__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__plugins__node} + _parent::WeakRef end function build__ids_properties__plugins__node{T}() where T @@ -105902,8 +105902,8 @@ mutable struct build__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function build__ids_properties__plugins__infrastructure_put{T}() where T @@ -105923,8 +105923,8 @@ mutable struct build__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function build__ids_properties__plugins__infrastructure_get{T}() where T @@ -105935,15 +105935,15 @@ end build__ids_properties__plugins__infrastructure_get() = build__ids_properties__plugins__infrastructure_get{Float64}() mutable struct build__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: build__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: build__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{build__ids_properties__plugins__node{T}} + var"infrastructure_get"::build__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::build__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{build__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__plugins} + _parent::WeakRef end function build__ids_properties__plugins{T}() where T @@ -105964,8 +105964,8 @@ mutable struct build__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties__occurrence_type} + _parent::WeakRef end function build__ids_properties__occurrence_type{T}() where T @@ -105981,17 +105981,17 @@ mutable struct build__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: build__ids_properties__occurrence_type{T} - var"plugins" :: build__ids_properties__plugins{T} - var"provenance" :: build__ids_properties__provenance{T} + var"occurrence_type"::build__ids_properties__occurrence_type{T} + var"plugins"::build__ids_properties__plugins{T} + var"provenance"::build__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: build__ids_properties__version_put{T} + var"version_put"::build__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,build__ids_properties} + _parent::WeakRef end function build__ids_properties{T}() where T @@ -106016,8 +106016,8 @@ mutable struct build__flux_swing{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__flux_swing} - _parent :: WeakRef + _ref::Union{Nothing,build__flux_swing} + _parent::WeakRef end function build__flux_swing{T}() where T @@ -106033,8 +106033,8 @@ mutable struct build__divertors__upper{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__divertors__upper} - _parent :: WeakRef + _ref::Union{Nothing,build__divertors__upper} + _parent::WeakRef end function build__divertors__upper{T}() where T @@ -106050,8 +106050,8 @@ mutable struct build__divertors__lower{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__divertors__lower} - _parent :: WeakRef + _ref::Union{Nothing,build__divertors__lower} + _parent::WeakRef end function build__divertors__lower{T}() where T @@ -106062,14 +106062,14 @@ end build__divertors__lower() = build__divertors__lower{Float64}() mutable struct build__divertors{T} <: IDS{T} - var"lower" :: build__divertors__lower{T} - var"upper" :: build__divertors__upper{T} + var"lower"::build__divertors__lower{T} + var"upper"::build__divertors__upper{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__divertors} - _parent :: WeakRef + _ref::Union{Nothing,build__divertors} + _parent::WeakRef end function build__divertors{T}() where T @@ -106092,8 +106092,8 @@ mutable struct build__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__code__library} - _parent :: WeakRef + _ref::Union{Nothing,build__code__library} + _parent::WeakRef end function build__code__library{T}() where T @@ -106106,7 +106106,7 @@ build__code__library() = build__code__library{Float64}() mutable struct build__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{build__code__library{T}} + var"library"::IDSvector{build__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -106116,8 +106116,8 @@ mutable struct build__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build__code} - _parent :: WeakRef + _ref::Union{Nothing,build__code} + _parent::WeakRef end function build__code{T}() where T @@ -106129,22 +106129,22 @@ end build__code() = build__code{Float64}() mutable struct build{T} <: IDStop{T} - var"code" :: build__code{T} - var"divertors" :: build__divertors{T} - var"flux_swing" :: build__flux_swing{T} - var"ids_properties" :: build__ids_properties{T} - var"layer" :: IDSvector{build__layer{T}} - var"oh" :: build__oh{T} - var"pf_active" :: build__pf_active{T} - var"structure" :: IDSvector{build__structure{T}} - var"tf" :: build__tf{T} + var"code"::build__code{T} + var"divertors"::build__divertors{T} + var"flux_swing"::build__flux_swing{T} + var"ids_properties"::build__ids_properties{T} + var"layer"::IDSvector{build__layer{T}} + var"oh"::build__oh{T} + var"pf_active"::build__pf_active{T} + var"structure"::IDSvector{build__structure{T}} + var"tf"::build__tf{T} var"time" :: Vector{Float64} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,build} - _parent :: WeakRef + _ref::Union{Nothing,build} + _parent::WeakRef end function build{T}() where T @@ -106171,8 +106171,8 @@ mutable struct bremsstrahlung_visible__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__version_put} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__version_put{T}() where T @@ -106189,8 +106189,8 @@ mutable struct bremsstrahlung_visible__ids_properties__provenance__node{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__provenance__node} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__provenance__node{T}() where T @@ -106201,13 +106201,13 @@ end bremsstrahlung_visible__ids_properties__provenance__node() = bremsstrahlung_visible__ids_properties__provenance__node{Float64}() mutable struct bremsstrahlung_visible__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{bremsstrahlung_visible__ids_properties__provenance__node{T}} + var"node"::IDSvector{bremsstrahlung_visible__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__provenance} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__provenance{T}() where T @@ -106229,8 +106229,8 @@ mutable struct bremsstrahlung_visible__ids_properties__plugins__node___readback{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__node___readback} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__plugins__node___readback{T}() where T @@ -106251,8 +106251,8 @@ mutable struct bremsstrahlung_visible__ids_properties__plugins__node___put_opera _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__plugins__node___put_operation{T}() where T @@ -106273,8 +106273,8 @@ mutable struct bremsstrahlung_visible__ids_properties__plugins__node___get_opera _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__plugins__node___get_operation{T}() where T @@ -106285,16 +106285,16 @@ end bremsstrahlung_visible__ids_properties__plugins__node___get_operation() = bremsstrahlung_visible__ids_properties__plugins__node___get_operation{Float64}() mutable struct bremsstrahlung_visible__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{bremsstrahlung_visible__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{bremsstrahlung_visible__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{bremsstrahlung_visible__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{bremsstrahlung_visible__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{bremsstrahlung_visible__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{bremsstrahlung_visible__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__node} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__plugins__node{T}() where T @@ -106317,8 +106317,8 @@ mutable struct bremsstrahlung_visible__ids_properties__plugins__infrastructure_p _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__plugins__infrastructure_put{T}() where T @@ -106338,8 +106338,8 @@ mutable struct bremsstrahlung_visible__ids_properties__plugins__infrastructure_g _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__plugins__infrastructure_get{T}() where T @@ -106350,15 +106350,15 @@ end bremsstrahlung_visible__ids_properties__plugins__infrastructure_get() = bremsstrahlung_visible__ids_properties__plugins__infrastructure_get{Float64}() mutable struct bremsstrahlung_visible__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: bremsstrahlung_visible__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: bremsstrahlung_visible__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{bremsstrahlung_visible__ids_properties__plugins__node{T}} + var"infrastructure_get"::bremsstrahlung_visible__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::bremsstrahlung_visible__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{bremsstrahlung_visible__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__plugins} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__plugins{T}() where T @@ -106379,8 +106379,8 @@ mutable struct bremsstrahlung_visible__ids_properties__occurrence_type{T} <: IDS _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties__occurrence_type} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties__occurrence_type{T}() where T @@ -106396,17 +106396,17 @@ mutable struct bremsstrahlung_visible__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: bremsstrahlung_visible__ids_properties__occurrence_type{T} - var"plugins" :: bremsstrahlung_visible__ids_properties__plugins{T} - var"provenance" :: bremsstrahlung_visible__ids_properties__provenance{T} + var"occurrence_type"::bremsstrahlung_visible__ids_properties__occurrence_type{T} + var"plugins"::bremsstrahlung_visible__ids_properties__plugins{T} + var"provenance"::bremsstrahlung_visible__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: bremsstrahlung_visible__ids_properties__version_put{T} + var"version_put"::bremsstrahlung_visible__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__ids_properties} + _parent::WeakRef end function bremsstrahlung_visible__ids_properties{T}() where T @@ -106431,8 +106431,8 @@ mutable struct bremsstrahlung_visible__code__library{T} <: IDSvectorStaticElemen _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__code__library} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__code__library} + _parent::WeakRef end function bremsstrahlung_visible__code__library{T}() where T @@ -106445,7 +106445,7 @@ bremsstrahlung_visible__code__library() = bremsstrahlung_visible__code__library{ mutable struct bremsstrahlung_visible__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{bremsstrahlung_visible__code__library{T}} + var"library"::IDSvector{bremsstrahlung_visible__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -106455,8 +106455,8 @@ mutable struct bremsstrahlung_visible__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__code} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__code} + _parent::WeakRef end function bremsstrahlung_visible__code{T}() where T @@ -106477,8 +106477,8 @@ mutable struct bremsstrahlung_visible__channel___zeff_line_average{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__channel___zeff_line_average} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__channel___zeff_line_average} + _parent::WeakRef end function bremsstrahlung_visible__channel___zeff_line_average{T}() where T @@ -106496,8 +106496,8 @@ mutable struct bremsstrahlung_visible__channel___radiance_spectral{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__channel___radiance_spectral} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__channel___radiance_spectral} + _parent::WeakRef end function bremsstrahlung_visible__channel___radiance_spectral{T}() where T @@ -106518,8 +106518,8 @@ mutable struct bremsstrahlung_visible__channel___line_of_sight__second_point{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__channel___line_of_sight__second_point} + _parent::WeakRef end function bremsstrahlung_visible__channel___line_of_sight__second_point{T}() where T @@ -106540,8 +106540,8 @@ mutable struct bremsstrahlung_visible__channel___line_of_sight__first_point{T} < _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__channel___line_of_sight__first_point} + _parent::WeakRef end function bremsstrahlung_visible__channel___line_of_sight__first_point{T}() where T @@ -106552,14 +106552,14 @@ end bremsstrahlung_visible__channel___line_of_sight__first_point() = bremsstrahlung_visible__channel___line_of_sight__first_point{Float64}() mutable struct bremsstrahlung_visible__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: bremsstrahlung_visible__channel___line_of_sight__first_point{T} - var"second_point" :: bremsstrahlung_visible__channel___line_of_sight__second_point{T} + var"first_point"::bremsstrahlung_visible__channel___line_of_sight__first_point{T} + var"second_point"::bremsstrahlung_visible__channel___line_of_sight__second_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__channel___line_of_sight} + _parent::WeakRef end function bremsstrahlung_visible__channel___line_of_sight{T}() where T @@ -106579,8 +106579,8 @@ mutable struct bremsstrahlung_visible__channel___intensity{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__channel___intensity} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__channel___intensity} + _parent::WeakRef end function bremsstrahlung_visible__channel___intensity{T}() where T @@ -106603,8 +106603,8 @@ mutable struct bremsstrahlung_visible__channel___filter{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__channel___filter} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__channel___filter} + _parent::WeakRef end function bremsstrahlung_visible__channel___filter{T}() where T @@ -106615,18 +106615,18 @@ end bremsstrahlung_visible__channel___filter() = bremsstrahlung_visible__channel___filter{Float64}() mutable struct bremsstrahlung_visible__channel{T} <: IDSvectorStaticElement{T} - var"filter" :: bremsstrahlung_visible__channel___filter{T} - var"intensity" :: bremsstrahlung_visible__channel___intensity{T} - var"line_of_sight" :: bremsstrahlung_visible__channel___line_of_sight{T} + var"filter"::bremsstrahlung_visible__channel___filter{T} + var"intensity"::bremsstrahlung_visible__channel___intensity{T} + var"line_of_sight"::bremsstrahlung_visible__channel___line_of_sight{T} var"name" :: String - var"radiance_spectral" :: bremsstrahlung_visible__channel___radiance_spectral{T} - var"zeff_line_average" :: bremsstrahlung_visible__channel___zeff_line_average{T} + var"radiance_spectral"::bremsstrahlung_visible__channel___radiance_spectral{T} + var"zeff_line_average"::bremsstrahlung_visible__channel___zeff_line_average{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible__channel} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible__channel} + _parent::WeakRef end function bremsstrahlung_visible__channel{T}() where T @@ -106642,9 +106642,9 @@ end bremsstrahlung_visible__channel() = bremsstrahlung_visible__channel{Float64}() mutable struct bremsstrahlung_visible{T} <: IDStop{T} - var"channel" :: IDSvector{bremsstrahlung_visible__channel{T}} - var"code" :: bremsstrahlung_visible__code{T} - var"ids_properties" :: bremsstrahlung_visible__ids_properties{T} + var"channel"::IDSvector{bremsstrahlung_visible__channel{T}} + var"code"::bremsstrahlung_visible__code{T} + var"ids_properties"::bremsstrahlung_visible__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -106652,8 +106652,8 @@ mutable struct bremsstrahlung_visible{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bremsstrahlung_visible} - _parent :: WeakRef + _ref::Union{Nothing,bremsstrahlung_visible} + _parent::WeakRef end function bremsstrahlung_visible{T}() where T @@ -106674,8 +106674,8 @@ mutable struct bolometer__power_density{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__power_density} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__power_density} + _parent::WeakRef end function bolometer__power_density{T}() where T @@ -106693,8 +106693,8 @@ mutable struct bolometer__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__version_put} + _parent::WeakRef end function bolometer__ids_properties__version_put{T}() where T @@ -106711,8 +106711,8 @@ mutable struct bolometer__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__provenance__node} + _parent::WeakRef end function bolometer__ids_properties__provenance__node{T}() where T @@ -106723,13 +106723,13 @@ end bolometer__ids_properties__provenance__node() = bolometer__ids_properties__provenance__node{Float64}() mutable struct bolometer__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{bolometer__ids_properties__provenance__node{T}} + var"node"::IDSvector{bolometer__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__provenance} + _parent::WeakRef end function bolometer__ids_properties__provenance{T}() where T @@ -106751,8 +106751,8 @@ mutable struct bolometer__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__plugins__node___readback} + _parent::WeakRef end function bolometer__ids_properties__plugins__node___readback{T}() where T @@ -106773,8 +106773,8 @@ mutable struct bolometer__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function bolometer__ids_properties__plugins__node___put_operation{T}() where T @@ -106795,8 +106795,8 @@ mutable struct bolometer__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function bolometer__ids_properties__plugins__node___get_operation{T}() where T @@ -106807,16 +106807,16 @@ end bolometer__ids_properties__plugins__node___get_operation() = bolometer__ids_properties__plugins__node___get_operation{Float64}() mutable struct bolometer__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{bolometer__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{bolometer__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{bolometer__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{bolometer__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{bolometer__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{bolometer__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__plugins__node} + _parent::WeakRef end function bolometer__ids_properties__plugins__node{T}() where T @@ -106839,8 +106839,8 @@ mutable struct bolometer__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function bolometer__ids_properties__plugins__infrastructure_put{T}() where T @@ -106860,8 +106860,8 @@ mutable struct bolometer__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function bolometer__ids_properties__plugins__infrastructure_get{T}() where T @@ -106872,15 +106872,15 @@ end bolometer__ids_properties__plugins__infrastructure_get() = bolometer__ids_properties__plugins__infrastructure_get{Float64}() mutable struct bolometer__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: bolometer__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: bolometer__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{bolometer__ids_properties__plugins__node{T}} + var"infrastructure_get"::bolometer__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::bolometer__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{bolometer__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__plugins} + _parent::WeakRef end function bolometer__ids_properties__plugins{T}() where T @@ -106901,8 +106901,8 @@ mutable struct bolometer__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties__occurrence_type} + _parent::WeakRef end function bolometer__ids_properties__occurrence_type{T}() where T @@ -106918,17 +106918,17 @@ mutable struct bolometer__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: bolometer__ids_properties__occurrence_type{T} - var"plugins" :: bolometer__ids_properties__plugins{T} - var"provenance" :: bolometer__ids_properties__provenance{T} + var"occurrence_type"::bolometer__ids_properties__occurrence_type{T} + var"plugins"::bolometer__ids_properties__plugins{T} + var"provenance"::bolometer__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: bolometer__ids_properties__version_put{T} + var"version_put"::bolometer__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__ids_properties} + _parent::WeakRef end function bolometer__ids_properties{T}() where T @@ -106950,8 +106950,8 @@ mutable struct bolometer__grid_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__grid_type} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__grid_type} + _parent::WeakRef end function bolometer__grid_type{T}() where T @@ -106972,8 +106972,8 @@ mutable struct bolometer__grid{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__grid} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__grid} + _parent::WeakRef end function bolometer__grid{T}() where T @@ -106994,8 +106994,8 @@ mutable struct bolometer__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__code__library} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__code__library} + _parent::WeakRef end function bolometer__code__library{T}() where T @@ -107008,7 +107008,7 @@ bolometer__code__library() = bolometer__code__library{Float64}() mutable struct bolometer__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{bolometer__code__library{T}} + var"library"::IDSvector{bolometer__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -107018,8 +107018,8 @@ mutable struct bolometer__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__code} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__code} + _parent::WeakRef end function bolometer__code{T}() where T @@ -107037,8 +107037,8 @@ mutable struct bolometer__channel___validity_timed{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___validity_timed} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___validity_timed} + _parent::WeakRef end function bolometer__channel___validity_timed{T}() where T @@ -107056,8 +107056,8 @@ mutable struct bolometer__channel___power{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___power} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___power} + _parent::WeakRef end function bolometer__channel___power{T}() where T @@ -107078,8 +107078,8 @@ mutable struct bolometer__channel___line_of_sight__third_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___line_of_sight__third_point} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___line_of_sight__third_point} + _parent::WeakRef end function bolometer__channel___line_of_sight__third_point{T}() where T @@ -107100,8 +107100,8 @@ mutable struct bolometer__channel___line_of_sight__second_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___line_of_sight__second_point} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___line_of_sight__second_point} + _parent::WeakRef end function bolometer__channel___line_of_sight__second_point{T}() where T @@ -107122,8 +107122,8 @@ mutable struct bolometer__channel___line_of_sight__first_point{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___line_of_sight__first_point} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___line_of_sight__first_point} + _parent::WeakRef end function bolometer__channel___line_of_sight__first_point{T}() where T @@ -107134,15 +107134,15 @@ end bolometer__channel___line_of_sight__first_point() = bolometer__channel___line_of_sight__first_point{Float64}() mutable struct bolometer__channel___line_of_sight{T} <: IDS{T} - var"first_point" :: bolometer__channel___line_of_sight__first_point{T} - var"second_point" :: bolometer__channel___line_of_sight__second_point{T} - var"third_point" :: bolometer__channel___line_of_sight__third_point{T} + var"first_point"::bolometer__channel___line_of_sight__first_point{T} + var"second_point"::bolometer__channel___line_of_sight__second_point{T} + var"third_point"::bolometer__channel___line_of_sight__third_point{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___line_of_sight} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___line_of_sight} + _parent::WeakRef end function bolometer__channel___line_of_sight{T}() where T @@ -107163,8 +107163,8 @@ mutable struct bolometer__channel___etendue_method{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___etendue_method} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___etendue_method} + _parent::WeakRef end function bolometer__channel___etendue_method{T}() where T @@ -107185,8 +107185,8 @@ mutable struct bolometer__channel___detector__x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___detector__x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___detector__x3_unit_vector} + _parent::WeakRef end function bolometer__channel___detector__x3_unit_vector{T}() where T @@ -107207,8 +107207,8 @@ mutable struct bolometer__channel___detector__x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___detector__x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___detector__x2_unit_vector} + _parent::WeakRef end function bolometer__channel___detector__x2_unit_vector{T}() where T @@ -107229,8 +107229,8 @@ mutable struct bolometer__channel___detector__x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___detector__x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___detector__x1_unit_vector} + _parent::WeakRef end function bolometer__channel___detector__x1_unit_vector{T}() where T @@ -107249,8 +107249,8 @@ mutable struct bolometer__channel___detector__outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___detector__outline} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___detector__outline} + _parent::WeakRef end function bolometer__channel___detector__outline{T}() where T @@ -107271,8 +107271,8 @@ mutable struct bolometer__channel___detector__centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___detector__centre} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___detector__centre} + _parent::WeakRef end function bolometer__channel___detector__centre{T}() where T @@ -107283,26 +107283,26 @@ end bolometer__channel___detector__centre() = bolometer__channel___detector__centre{Float64}() mutable struct bolometer__channel___detector{T} <: IDS{T} - var"centre" :: bolometer__channel___detector__centre{T} + var"centre"::bolometer__channel___detector__centre{T} var"geometry_type" :: Int - var"outline" :: bolometer__channel___detector__outline{T} + var"outline"::bolometer__channel___detector__outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: bolometer__channel___detector__x1_unit_vector{T} + var"x1_unit_vector"::bolometer__channel___detector__x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: bolometer__channel___detector__x2_unit_vector{T} + var"x2_unit_vector"::bolometer__channel___detector__x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: bolometer__channel___detector__x3_unit_vector{T} + var"x3_unit_vector"::bolometer__channel___detector__x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___detector} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___detector} + _parent::WeakRef end function bolometer__channel___detector{T}() where T @@ -107328,8 +107328,8 @@ mutable struct bolometer__channel___aperture___x3_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___aperture___x3_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___aperture___x3_unit_vector} + _parent::WeakRef end function bolometer__channel___aperture___x3_unit_vector{T}() where T @@ -107350,8 +107350,8 @@ mutable struct bolometer__channel___aperture___x2_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___aperture___x2_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___aperture___x2_unit_vector} + _parent::WeakRef end function bolometer__channel___aperture___x2_unit_vector{T}() where T @@ -107372,8 +107372,8 @@ mutable struct bolometer__channel___aperture___x1_unit_vector{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___aperture___x1_unit_vector} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___aperture___x1_unit_vector} + _parent::WeakRef end function bolometer__channel___aperture___x1_unit_vector{T}() where T @@ -107392,8 +107392,8 @@ mutable struct bolometer__channel___aperture___outline{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___aperture___outline} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___aperture___outline} + _parent::WeakRef end function bolometer__channel___aperture___outline{T}() where T @@ -107414,8 +107414,8 @@ mutable struct bolometer__channel___aperture___centre{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___aperture___centre} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___aperture___centre} + _parent::WeakRef end function bolometer__channel___aperture___centre{T}() where T @@ -107426,26 +107426,26 @@ end bolometer__channel___aperture___centre() = bolometer__channel___aperture___centre{Float64}() mutable struct bolometer__channel___aperture{T} <: IDSvectorStaticElement{T} - var"centre" :: bolometer__channel___aperture___centre{T} + var"centre"::bolometer__channel___aperture___centre{T} var"geometry_type" :: Int - var"outline" :: bolometer__channel___aperture___outline{T} + var"outline"::bolometer__channel___aperture___outline{T} var"radius" :: T var"radius_σ" :: T var"surface" :: T var"surface_σ" :: T - var"x1_unit_vector" :: bolometer__channel___aperture___x1_unit_vector{T} + var"x1_unit_vector"::bolometer__channel___aperture___x1_unit_vector{T} var"x1_width" :: T var"x1_width_σ" :: T - var"x2_unit_vector" :: bolometer__channel___aperture___x2_unit_vector{T} + var"x2_unit_vector"::bolometer__channel___aperture___x2_unit_vector{T} var"x2_width" :: T var"x2_width_σ" :: T - var"x3_unit_vector" :: bolometer__channel___aperture___x3_unit_vector{T} + var"x3_unit_vector"::bolometer__channel___aperture___x3_unit_vector{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel___aperture} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel___aperture} + _parent::WeakRef end function bolometer__channel___aperture{T}() where T @@ -107461,23 +107461,23 @@ end bolometer__channel___aperture() = bolometer__channel___aperture{Float64}() mutable struct bolometer__channel{T} <: IDSvectorStaticElement{T} - var"aperture" :: IDSvector{bolometer__channel___aperture{T}} - var"detector" :: bolometer__channel___detector{T} + var"aperture"::IDSvector{bolometer__channel___aperture{T}} + var"detector"::bolometer__channel___detector{T} var"etendue" :: T var"etendue_σ" :: T - var"etendue_method" :: bolometer__channel___etendue_method{T} + var"etendue_method"::bolometer__channel___etendue_method{T} var"identifier" :: String - var"line_of_sight" :: bolometer__channel___line_of_sight{T} + var"line_of_sight"::bolometer__channel___line_of_sight{T} var"name" :: String - var"power" :: bolometer__channel___power{T} + var"power"::bolometer__channel___power{T} var"validity" :: Int - var"validity_timed" :: bolometer__channel___validity_timed{T} + var"validity_timed"::bolometer__channel___validity_timed{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer__channel} - _parent :: WeakRef + _ref::Union{Nothing,bolometer__channel} + _parent::WeakRef end function bolometer__channel{T}() where T @@ -107494,14 +107494,14 @@ end bolometer__channel() = bolometer__channel{Float64}() mutable struct bolometer{T} <: IDStop{T} - var"channel" :: IDSvector{bolometer__channel{T}} - var"code" :: bolometer__code{T} - var"grid" :: bolometer__grid{T} - var"grid_type" :: bolometer__grid_type{T} - var"ids_properties" :: bolometer__ids_properties{T} + var"channel"::IDSvector{bolometer__channel{T}} + var"code"::bolometer__code{T} + var"grid"::bolometer__grid{T} + var"grid_type"::bolometer__grid_type{T} + var"ids_properties"::bolometer__ids_properties{T} var"latency" :: T var"latency_σ" :: T - var"power_density" :: bolometer__power_density{T} + var"power_density"::bolometer__power_density{T} var"power_radiated_inside_lcfs" :: Vector{<:T} var"power_radiated_inside_lcfs_σ" :: Vector{<:T} var"power_radiated_total" :: Vector{<:T} @@ -107512,8 +107512,8 @@ mutable struct bolometer{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,bolometer} - _parent :: WeakRef + _ref::Union{Nothing,bolometer} + _parent::WeakRef end function bolometer{T}() where T @@ -107553,8 +107553,8 @@ mutable struct blanket__module___time_slice{T} <: IDSvectorTimeElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__module___time_slice} - _parent :: WeakRef + _ref::Union{Nothing,blanket__module___time_slice} + _parent::WeakRef end function blanket__module___time_slice{T}() where T @@ -107573,8 +107573,8 @@ mutable struct blanket__module___layer{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__module___layer} - _parent :: WeakRef + _ref::Union{Nothing,blanket__module___layer} + _parent::WeakRef end function blanket__module___layer{T}() where T @@ -107585,17 +107585,17 @@ end blanket__module___layer() = blanket__module___layer{Float64}() mutable struct blanket__module{T} <: IDSvectorStaticElement{T} - var"layer" :: IDSvector{blanket__module___layer{T}} + var"layer"::IDSvector{blanket__module___layer{T}} var"midplane_r" :: Vector{<:T} var"midplane_r_σ" :: Vector{<:T} var"name" :: String - var"time_slice" :: IDSvector{blanket__module___time_slice{T}} + var"time_slice"::IDSvector{blanket__module___time_slice{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__module} - _parent :: WeakRef + _ref::Union{Nothing,blanket__module} + _parent::WeakRef end function blanket__module{T}() where T @@ -107615,8 +107615,8 @@ mutable struct blanket__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__version_put} + _parent::WeakRef end function blanket__ids_properties__version_put{T}() where T @@ -107633,8 +107633,8 @@ mutable struct blanket__ids_properties__provenance__node{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__provenance__node} + _parent::WeakRef end function blanket__ids_properties__provenance__node{T}() where T @@ -107645,13 +107645,13 @@ end blanket__ids_properties__provenance__node() = blanket__ids_properties__provenance__node{Float64}() mutable struct blanket__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{blanket__ids_properties__provenance__node{T}} + var"node"::IDSvector{blanket__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__provenance} + _parent::WeakRef end function blanket__ids_properties__provenance{T}() where T @@ -107673,8 +107673,8 @@ mutable struct blanket__ids_properties__plugins__node___readback{T} <: IDSvector _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__plugins__node___readback} + _parent::WeakRef end function blanket__ids_properties__plugins__node___readback{T}() where T @@ -107695,8 +107695,8 @@ mutable struct blanket__ids_properties__plugins__node___put_operation{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function blanket__ids_properties__plugins__node___put_operation{T}() where T @@ -107717,8 +107717,8 @@ mutable struct blanket__ids_properties__plugins__node___get_operation{T} <: IDSv _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function blanket__ids_properties__plugins__node___get_operation{T}() where T @@ -107729,16 +107729,16 @@ end blanket__ids_properties__plugins__node___get_operation() = blanket__ids_properties__plugins__node___get_operation{Float64}() mutable struct blanket__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{blanket__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{blanket__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{blanket__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{blanket__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{blanket__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{blanket__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__plugins__node} + _parent::WeakRef end function blanket__ids_properties__plugins__node{T}() where T @@ -107761,8 +107761,8 @@ mutable struct blanket__ids_properties__plugins__infrastructure_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function blanket__ids_properties__plugins__infrastructure_put{T}() where T @@ -107782,8 +107782,8 @@ mutable struct blanket__ids_properties__plugins__infrastructure_get{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function blanket__ids_properties__plugins__infrastructure_get{T}() where T @@ -107794,15 +107794,15 @@ end blanket__ids_properties__plugins__infrastructure_get() = blanket__ids_properties__plugins__infrastructure_get{Float64}() mutable struct blanket__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: blanket__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: blanket__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{blanket__ids_properties__plugins__node{T}} + var"infrastructure_get"::blanket__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::blanket__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{blanket__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__plugins} + _parent::WeakRef end function blanket__ids_properties__plugins{T}() where T @@ -107823,8 +107823,8 @@ mutable struct blanket__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties__occurrence_type} + _parent::WeakRef end function blanket__ids_properties__occurrence_type{T}() where T @@ -107840,17 +107840,17 @@ mutable struct blanket__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: blanket__ids_properties__occurrence_type{T} - var"plugins" :: blanket__ids_properties__plugins{T} - var"provenance" :: blanket__ids_properties__provenance{T} + var"occurrence_type"::blanket__ids_properties__occurrence_type{T} + var"plugins"::blanket__ids_properties__plugins{T} + var"provenance"::blanket__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: blanket__ids_properties__version_put{T} + var"version_put"::blanket__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,blanket__ids_properties} + _parent::WeakRef end function blanket__ids_properties{T}() where T @@ -107875,8 +107875,8 @@ mutable struct blanket__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__code__library} - _parent :: WeakRef + _ref::Union{Nothing,blanket__code__library} + _parent::WeakRef end function blanket__code__library{T}() where T @@ -107889,7 +107889,7 @@ blanket__code__library() = blanket__code__library{Float64}() mutable struct blanket__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{blanket__code__library{T}} + var"library"::IDSvector{blanket__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -107899,8 +107899,8 @@ mutable struct blanket__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket__code} - _parent :: WeakRef + _ref::Union{Nothing,blanket__code} + _parent::WeakRef end function blanket__code{T}() where T @@ -107912,9 +107912,9 @@ end blanket__code() = blanket__code{Float64}() mutable struct blanket{T} <: IDStop{T} - var"code" :: blanket__code{T} - var"ids_properties" :: blanket__ids_properties{T} - var"module" :: IDSvector{blanket__module{T}} + var"code"::blanket__code{T} + var"ids_properties"::blanket__ids_properties{T} + var"module"::IDSvector{blanket__module{T}} var"time" :: Vector{Float64} var"tritium_breeding_ratio" :: Vector{<:T} var"tritium_breeding_ratio_σ" :: Vector{<:T} @@ -107922,8 +107922,8 @@ mutable struct blanket{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,blanket} - _parent :: WeakRef + _ref::Union{Nothing,blanket} + _parent::WeakRef end function blanket{T}() where T @@ -107944,8 +107944,8 @@ mutable struct barometry__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__version_put} + _parent::WeakRef end function barometry__ids_properties__version_put{T}() where T @@ -107962,8 +107962,8 @@ mutable struct barometry__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__provenance__node} + _parent::WeakRef end function barometry__ids_properties__provenance__node{T}() where T @@ -107974,13 +107974,13 @@ end barometry__ids_properties__provenance__node() = barometry__ids_properties__provenance__node{Float64}() mutable struct barometry__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{barometry__ids_properties__provenance__node{T}} + var"node"::IDSvector{barometry__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__provenance} + _parent::WeakRef end function barometry__ids_properties__provenance{T}() where T @@ -108002,8 +108002,8 @@ mutable struct barometry__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__plugins__node___readback} + _parent::WeakRef end function barometry__ids_properties__plugins__node___readback{T}() where T @@ -108024,8 +108024,8 @@ mutable struct barometry__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function barometry__ids_properties__plugins__node___put_operation{T}() where T @@ -108046,8 +108046,8 @@ mutable struct barometry__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function barometry__ids_properties__plugins__node___get_operation{T}() where T @@ -108058,16 +108058,16 @@ end barometry__ids_properties__plugins__node___get_operation() = barometry__ids_properties__plugins__node___get_operation{Float64}() mutable struct barometry__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{barometry__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{barometry__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{barometry__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{barometry__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{barometry__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{barometry__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__plugins__node} + _parent::WeakRef end function barometry__ids_properties__plugins__node{T}() where T @@ -108090,8 +108090,8 @@ mutable struct barometry__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function barometry__ids_properties__plugins__infrastructure_put{T}() where T @@ -108111,8 +108111,8 @@ mutable struct barometry__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function barometry__ids_properties__plugins__infrastructure_get{T}() where T @@ -108123,15 +108123,15 @@ end barometry__ids_properties__plugins__infrastructure_get() = barometry__ids_properties__plugins__infrastructure_get{Float64}() mutable struct barometry__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: barometry__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: barometry__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{barometry__ids_properties__plugins__node{T}} + var"infrastructure_get"::barometry__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::barometry__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{barometry__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__plugins} + _parent::WeakRef end function barometry__ids_properties__plugins{T}() where T @@ -108152,8 +108152,8 @@ mutable struct barometry__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties__occurrence_type} + _parent::WeakRef end function barometry__ids_properties__occurrence_type{T}() where T @@ -108169,17 +108169,17 @@ mutable struct barometry__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: barometry__ids_properties__occurrence_type{T} - var"plugins" :: barometry__ids_properties__plugins{T} - var"provenance" :: barometry__ids_properties__provenance{T} + var"occurrence_type"::barometry__ids_properties__occurrence_type{T} + var"plugins"::barometry__ids_properties__plugins{T} + var"provenance"::barometry__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: barometry__ids_properties__version_put{T} + var"version_put"::barometry__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,barometry__ids_properties} + _parent::WeakRef end function barometry__ids_properties{T}() where T @@ -108201,8 +108201,8 @@ mutable struct barometry__gauge___type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__gauge___type} - _parent :: WeakRef + _ref::Union{Nothing,barometry__gauge___type} + _parent::WeakRef end function barometry__gauge___type{T}() where T @@ -108220,8 +108220,8 @@ mutable struct barometry__gauge___pressure{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__gauge___pressure} - _parent :: WeakRef + _ref::Union{Nothing,barometry__gauge___pressure} + _parent::WeakRef end function barometry__gauge___pressure{T}() where T @@ -108242,8 +108242,8 @@ mutable struct barometry__gauge___position{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__gauge___position} - _parent :: WeakRef + _ref::Union{Nothing,barometry__gauge___position} + _parent::WeakRef end function barometry__gauge___position{T}() where T @@ -108257,15 +108257,15 @@ mutable struct barometry__gauge{T} <: IDSvectorStaticElement{T} var"calibration_coefficient" :: T var"calibration_coefficient_σ" :: T var"name" :: String - var"position" :: barometry__gauge___position{T} - var"pressure" :: barometry__gauge___pressure{T} - var"type" :: barometry__gauge___type{T} + var"position"::barometry__gauge___position{T} + var"pressure"::barometry__gauge___pressure{T} + var"type"::barometry__gauge___type{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__gauge} - _parent :: WeakRef + _ref::Union{Nothing,barometry__gauge} + _parent::WeakRef end function barometry__gauge{T}() where T @@ -108289,8 +108289,8 @@ mutable struct barometry__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__code__library} - _parent :: WeakRef + _ref::Union{Nothing,barometry__code__library} + _parent::WeakRef end function barometry__code__library{T}() where T @@ -108303,7 +108303,7 @@ barometry__code__library() = barometry__code__library{Float64}() mutable struct barometry__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{barometry__code__library{T}} + var"library"::IDSvector{barometry__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -108313,8 +108313,8 @@ mutable struct barometry__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry__code} - _parent :: WeakRef + _ref::Union{Nothing,barometry__code} + _parent::WeakRef end function barometry__code{T}() where T @@ -108326,9 +108326,9 @@ end barometry__code() = barometry__code{Float64}() mutable struct barometry{T} <: IDStop{T} - var"code" :: barometry__code{T} - var"gauge" :: IDSvector{barometry__gauge{T}} - var"ids_properties" :: barometry__ids_properties{T} + var"code"::barometry__code{T} + var"gauge"::IDSvector{barometry__gauge{T}} + var"ids_properties"::barometry__ids_properties{T} var"latency" :: T var"latency_σ" :: T var"time" :: Vector{Float64} @@ -108336,8 +108336,8 @@ mutable struct barometry{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,barometry} - _parent :: WeakRef + _ref::Union{Nothing,barometry} + _parent::WeakRef end function barometry{T}() where T @@ -108366,8 +108366,8 @@ mutable struct balance_of_plant__power_plant__system___component___port{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__power_plant__system___component___port} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__power_plant__system___component___port} + _parent::WeakRef end function balance_of_plant__power_plant__system___component___port{T}() where T @@ -108380,13 +108380,13 @@ balance_of_plant__power_plant__system___component___port() = balance_of_plant__p mutable struct balance_of_plant__power_plant__system___component{T} <: IDSvectorStaticElement{T} var"index" :: Int var"name" :: String - var"port" :: IDSvector{balance_of_plant__power_plant__system___component___port{T}} + var"port"::IDSvector{balance_of_plant__power_plant__system___component___port{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__power_plant__system___component} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__power_plant__system___component} + _parent::WeakRef end function balance_of_plant__power_plant__system___component{T}() where T @@ -108398,15 +108398,15 @@ end balance_of_plant__power_plant__system___component() = balance_of_plant__power_plant__system___component{Float64}() mutable struct balance_of_plant__power_plant__system{T} <: IDSvectorStaticElement{T} - var"component" :: IDSvector{balance_of_plant__power_plant__system___component{T}} + var"component"::IDSvector{balance_of_plant__power_plant__system___component{T}} var"index" :: Int var"name" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__power_plant__system} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__power_plant__system} + _parent::WeakRef end function balance_of_plant__power_plant__system{T}() where T @@ -108428,8 +108428,8 @@ mutable struct balance_of_plant__power_plant__heat_load{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__power_plant__heat_load} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__power_plant__heat_load} + _parent::WeakRef end function balance_of_plant__power_plant__heat_load{T}() where T @@ -108442,11 +108442,11 @@ balance_of_plant__power_plant__heat_load() = balance_of_plant__power_plant__heat mutable struct balance_of_plant__power_plant{T} <: IDS{T} var"generator_conversion_efficiency" :: Vector{<:T} var"generator_conversion_efficiency_σ" :: Vector{<:T} - var"heat_load" :: balance_of_plant__power_plant__heat_load{T} + var"heat_load"::balance_of_plant__power_plant__heat_load{T} var"power_cycle_type" :: String var"power_electric_generated" :: Vector{<:T} var"power_electric_generated_σ" :: Vector{<:T} - var"system" :: IDSvector{balance_of_plant__power_plant__system{T}} + var"system"::IDSvector{balance_of_plant__power_plant__system{T}} var"total_heat_rejected" :: Vector{<:T} var"total_heat_rejected_σ" :: Vector{<:T} var"total_heat_supplied" :: Vector{<:T} @@ -108455,8 +108455,8 @@ mutable struct balance_of_plant__power_plant{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__power_plant} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__power_plant} + _parent::WeakRef end function balance_of_plant__power_plant{T}() where T @@ -108477,8 +108477,8 @@ mutable struct balance_of_plant__power_electric_plant_operation__system___subsys _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__power_electric_plant_operation__system___subsystem} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__power_electric_plant_operation__system___subsystem} + _parent::WeakRef end function balance_of_plant__power_electric_plant_operation__system___subsystem{T}() where T @@ -108493,13 +108493,13 @@ mutable struct balance_of_plant__power_electric_plant_operation__system{T} <: ID var"name" :: String var"power" :: Vector{<:T} var"power_σ" :: Vector{<:T} - var"subsystem" :: IDSvector{balance_of_plant__power_electric_plant_operation__system___subsystem{T}} + var"subsystem"::IDSvector{balance_of_plant__power_electric_plant_operation__system___subsystem{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__power_electric_plant_operation__system} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__power_electric_plant_operation__system} + _parent::WeakRef end function balance_of_plant__power_electric_plant_operation__system{T}() where T @@ -108511,15 +108511,15 @@ end balance_of_plant__power_electric_plant_operation__system() = balance_of_plant__power_electric_plant_operation__system{Float64}() mutable struct balance_of_plant__power_electric_plant_operation{T} <: IDS{T} - var"system" :: IDSvector{balance_of_plant__power_electric_plant_operation__system{T}} + var"system"::IDSvector{balance_of_plant__power_electric_plant_operation__system{T}} var"total_power" :: Vector{<:T} var"total_power_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__power_electric_plant_operation} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__power_electric_plant_operation} + _parent::WeakRef end function balance_of_plant__power_electric_plant_operation{T}() where T @@ -108538,8 +108538,8 @@ mutable struct balance_of_plant__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__version_put} + _parent::WeakRef end function balance_of_plant__ids_properties__version_put{T}() where T @@ -108556,8 +108556,8 @@ mutable struct balance_of_plant__ids_properties__provenance__node{T} <: IDSvecto _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__provenance__node} + _parent::WeakRef end function balance_of_plant__ids_properties__provenance__node{T}() where T @@ -108568,13 +108568,13 @@ end balance_of_plant__ids_properties__provenance__node() = balance_of_plant__ids_properties__provenance__node{Float64}() mutable struct balance_of_plant__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{balance_of_plant__ids_properties__provenance__node{T}} + var"node"::IDSvector{balance_of_plant__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__provenance} + _parent::WeakRef end function balance_of_plant__ids_properties__provenance{T}() where T @@ -108596,8 +108596,8 @@ mutable struct balance_of_plant__ids_properties__plugins__node___readback{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__plugins__node___readback} + _parent::WeakRef end function balance_of_plant__ids_properties__plugins__node___readback{T}() where T @@ -108618,8 +108618,8 @@ mutable struct balance_of_plant__ids_properties__plugins__node___put_operation{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function balance_of_plant__ids_properties__plugins__node___put_operation{T}() where T @@ -108640,8 +108640,8 @@ mutable struct balance_of_plant__ids_properties__plugins__node___get_operation{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function balance_of_plant__ids_properties__plugins__node___get_operation{T}() where T @@ -108652,16 +108652,16 @@ end balance_of_plant__ids_properties__plugins__node___get_operation() = balance_of_plant__ids_properties__plugins__node___get_operation{Float64}() mutable struct balance_of_plant__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{balance_of_plant__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{balance_of_plant__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{balance_of_plant__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{balance_of_plant__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{balance_of_plant__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{balance_of_plant__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__plugins__node} + _parent::WeakRef end function balance_of_plant__ids_properties__plugins__node{T}() where T @@ -108684,8 +108684,8 @@ mutable struct balance_of_plant__ids_properties__plugins__infrastructure_put{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function balance_of_plant__ids_properties__plugins__infrastructure_put{T}() where T @@ -108705,8 +108705,8 @@ mutable struct balance_of_plant__ids_properties__plugins__infrastructure_get{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function balance_of_plant__ids_properties__plugins__infrastructure_get{T}() where T @@ -108717,15 +108717,15 @@ end balance_of_plant__ids_properties__plugins__infrastructure_get() = balance_of_plant__ids_properties__plugins__infrastructure_get{Float64}() mutable struct balance_of_plant__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: balance_of_plant__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: balance_of_plant__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{balance_of_plant__ids_properties__plugins__node{T}} + var"infrastructure_get"::balance_of_plant__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::balance_of_plant__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{balance_of_plant__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__plugins} + _parent::WeakRef end function balance_of_plant__ids_properties__plugins{T}() where T @@ -108746,8 +108746,8 @@ mutable struct balance_of_plant__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties__occurrence_type} + _parent::WeakRef end function balance_of_plant__ids_properties__occurrence_type{T}() where T @@ -108763,17 +108763,17 @@ mutable struct balance_of_plant__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: balance_of_plant__ids_properties__occurrence_type{T} - var"plugins" :: balance_of_plant__ids_properties__plugins{T} - var"provenance" :: balance_of_plant__ids_properties__provenance{T} + var"occurrence_type"::balance_of_plant__ids_properties__occurrence_type{T} + var"plugins"::balance_of_plant__ids_properties__plugins{T} + var"provenance"::balance_of_plant__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: balance_of_plant__ids_properties__version_put{T} + var"version_put"::balance_of_plant__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__ids_properties} + _parent::WeakRef end function balance_of_plant__ids_properties{T}() where T @@ -108798,8 +108798,8 @@ mutable struct balance_of_plant__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__code__library} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__code__library} + _parent::WeakRef end function balance_of_plant__code__library{T}() where T @@ -108812,7 +108812,7 @@ balance_of_plant__code__library() = balance_of_plant__code__library{Float64}() mutable struct balance_of_plant__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{balance_of_plant__code__library{T}} + var"library"::IDSvector{balance_of_plant__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -108822,8 +108822,8 @@ mutable struct balance_of_plant__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant__code} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant__code} + _parent::WeakRef end function balance_of_plant__code{T}() where T @@ -108837,12 +108837,12 @@ balance_of_plant__code() = balance_of_plant__code{Float64}() mutable struct balance_of_plant{T} <: IDStop{T} var"Q_plant" :: Vector{<:T} var"Q_plant_σ" :: Vector{<:T} - var"code" :: balance_of_plant__code{T} - var"ids_properties" :: balance_of_plant__ids_properties{T} + var"code"::balance_of_plant__code{T} + var"ids_properties"::balance_of_plant__ids_properties{T} var"power_electric_net" :: Vector{<:T} var"power_electric_net_σ" :: Vector{<:T} - var"power_electric_plant_operation" :: balance_of_plant__power_electric_plant_operation{T} - var"power_plant" :: balance_of_plant__power_plant{T} + var"power_electric_plant_operation"::balance_of_plant__power_electric_plant_operation{T} + var"power_plant"::balance_of_plant__power_plant{T} var"thermal_efficiency_cycle" :: Vector{<:T} var"thermal_efficiency_cycle_σ" :: Vector{<:T} var"thermal_efficiency_plant" :: Vector{<:T} @@ -108852,8 +108852,8 @@ mutable struct balance_of_plant{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,balance_of_plant} - _parent :: WeakRef + _ref::Union{Nothing,balance_of_plant} + _parent::WeakRef end function balance_of_plant{T}() where T @@ -108878,8 +108878,8 @@ mutable struct b_field_non_axisymmetric__time_slice___field_map__grid{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__time_slice___field_map__grid} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__time_slice___field_map__grid} + _parent::WeakRef end function b_field_non_axisymmetric__time_slice___field_map__grid{T}() where T @@ -108896,15 +108896,15 @@ mutable struct b_field_non_axisymmetric__time_slice___field_map{T} <: IDS{T} var"b_field_tor_σ" :: Array{<:T, 3} var"b_field_z" :: Array{<:T, 3} var"b_field_z_σ" :: Array{<:T, 3} - var"grid" :: b_field_non_axisymmetric__time_slice___field_map__grid{T} + var"grid"::b_field_non_axisymmetric__time_slice___field_map__grid{T} var"ripple_amplitude" :: Matrix{<:T} var"ripple_amplitude_σ" :: Matrix{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__time_slice___field_map} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__time_slice___field_map} + _parent::WeakRef end function b_field_non_axisymmetric__time_slice___field_map{T}() where T @@ -108924,8 +108924,8 @@ mutable struct b_field_non_axisymmetric__time_slice___control_surface___outline{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__time_slice___control_surface___outline} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__time_slice___control_surface___outline} + _parent::WeakRef end function b_field_non_axisymmetric__time_slice___control_surface___outline{T}() where T @@ -108944,8 +108944,8 @@ mutable struct b_field_non_axisymmetric__time_slice___control_surface___normal_v _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__time_slice___control_surface___normal_vector} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__time_slice___control_surface___normal_vector} + _parent::WeakRef end function b_field_non_axisymmetric__time_slice___control_surface___normal_vector{T}() where T @@ -108966,16 +108966,16 @@ mutable struct b_field_non_axisymmetric__time_slice___control_surface{T} <: IDSv var"b_field_z" :: Matrix{<:T} var"b_field_z_σ" :: Matrix{<:T} var"n_tor" :: Vector{Int} - var"normal_vector" :: b_field_non_axisymmetric__time_slice___control_surface___normal_vector{T} - var"outline" :: b_field_non_axisymmetric__time_slice___control_surface___outline{T} + var"normal_vector"::b_field_non_axisymmetric__time_slice___control_surface___normal_vector{T} + var"outline"::b_field_non_axisymmetric__time_slice___control_surface___outline{T} var"phi" :: Vector{<:T} var"phi_σ" :: Vector{<:T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__time_slice___control_surface} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__time_slice___control_surface} + _parent::WeakRef end function b_field_non_axisymmetric__time_slice___control_surface{T}() where T @@ -108988,15 +108988,15 @@ end b_field_non_axisymmetric__time_slice___control_surface() = b_field_non_axisymmetric__time_slice___control_surface{Float64}() mutable struct b_field_non_axisymmetric__time_slice{T} <: IDSvectorTimeElement{T} - var"control_surface" :: IDSvector{b_field_non_axisymmetric__time_slice___control_surface{T}} - var"field_map" :: b_field_non_axisymmetric__time_slice___field_map{T} + var"control_surface"::IDSvector{b_field_non_axisymmetric__time_slice___control_surface{T}} + var"field_map"::b_field_non_axisymmetric__time_slice___field_map{T} var"time" :: Float64 _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__time_slice} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__time_slice} + _parent::WeakRef end function b_field_non_axisymmetric__time_slice{T}() where T @@ -109016,8 +109016,8 @@ mutable struct b_field_non_axisymmetric__ids_properties__version_put{T} <: IDS{T _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__version_put} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__version_put{T}() where T @@ -109034,8 +109034,8 @@ mutable struct b_field_non_axisymmetric__ids_properties__provenance__node{T} <: _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__provenance__node} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__provenance__node{T}() where T @@ -109046,13 +109046,13 @@ end b_field_non_axisymmetric__ids_properties__provenance__node() = b_field_non_axisymmetric__ids_properties__provenance__node{Float64}() mutable struct b_field_non_axisymmetric__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{b_field_non_axisymmetric__ids_properties__provenance__node{T}} + var"node"::IDSvector{b_field_non_axisymmetric__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__provenance} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__provenance{T}() where T @@ -109074,8 +109074,8 @@ mutable struct b_field_non_axisymmetric__ids_properties__plugins__node___readbac _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__node___readback} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__plugins__node___readback{T}() where T @@ -109096,8 +109096,8 @@ mutable struct b_field_non_axisymmetric__ids_properties__plugins__node___put_ope _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__plugins__node___put_operation{T}() where T @@ -109118,8 +109118,8 @@ mutable struct b_field_non_axisymmetric__ids_properties__plugins__node___get_ope _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__plugins__node___get_operation{T}() where T @@ -109130,16 +109130,16 @@ end b_field_non_axisymmetric__ids_properties__plugins__node___get_operation() = b_field_non_axisymmetric__ids_properties__plugins__node___get_operation{Float64}() mutable struct b_field_non_axisymmetric__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{b_field_non_axisymmetric__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{b_field_non_axisymmetric__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{b_field_non_axisymmetric__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{b_field_non_axisymmetric__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{b_field_non_axisymmetric__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{b_field_non_axisymmetric__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__node} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__plugins__node{T}() where T @@ -109162,8 +109162,8 @@ mutable struct b_field_non_axisymmetric__ids_properties__plugins__infrastructure _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__plugins__infrastructure_put{T}() where T @@ -109183,8 +109183,8 @@ mutable struct b_field_non_axisymmetric__ids_properties__plugins__infrastructure _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__plugins__infrastructure_get{T}() where T @@ -109195,15 +109195,15 @@ end b_field_non_axisymmetric__ids_properties__plugins__infrastructure_get() = b_field_non_axisymmetric__ids_properties__plugins__infrastructure_get{Float64}() mutable struct b_field_non_axisymmetric__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: b_field_non_axisymmetric__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: b_field_non_axisymmetric__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{b_field_non_axisymmetric__ids_properties__plugins__node{T}} + var"infrastructure_get"::b_field_non_axisymmetric__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::b_field_non_axisymmetric__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{b_field_non_axisymmetric__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__plugins} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__plugins{T}() where T @@ -109224,8 +109224,8 @@ mutable struct b_field_non_axisymmetric__ids_properties__occurrence_type{T} <: I _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties__occurrence_type} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties__occurrence_type{T}() where T @@ -109241,17 +109241,17 @@ mutable struct b_field_non_axisymmetric__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: b_field_non_axisymmetric__ids_properties__occurrence_type{T} - var"plugins" :: b_field_non_axisymmetric__ids_properties__plugins{T} - var"provenance" :: b_field_non_axisymmetric__ids_properties__provenance{T} + var"occurrence_type"::b_field_non_axisymmetric__ids_properties__occurrence_type{T} + var"plugins"::b_field_non_axisymmetric__ids_properties__plugins{T} + var"provenance"::b_field_non_axisymmetric__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: b_field_non_axisymmetric__ids_properties__version_put{T} + var"version_put"::b_field_non_axisymmetric__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__ids_properties} + _parent::WeakRef end function b_field_non_axisymmetric__ids_properties{T}() where T @@ -109276,8 +109276,8 @@ mutable struct b_field_non_axisymmetric__code__library{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__code__library} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__code__library} + _parent::WeakRef end function b_field_non_axisymmetric__code__library{T}() where T @@ -109290,7 +109290,7 @@ b_field_non_axisymmetric__code__library() = b_field_non_axisymmetric__code__libr mutable struct b_field_non_axisymmetric__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{b_field_non_axisymmetric__code__library{T}} + var"library"::IDSvector{b_field_non_axisymmetric__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -109300,8 +109300,8 @@ mutable struct b_field_non_axisymmetric__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric__code} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric__code} + _parent::WeakRef end function b_field_non_axisymmetric__code{T}() where T @@ -109313,18 +109313,18 @@ end b_field_non_axisymmetric__code() = b_field_non_axisymmetric__code{Float64}() mutable struct b_field_non_axisymmetric{T} <: IDStop{T} - var"code" :: b_field_non_axisymmetric__code{T} + var"code"::b_field_non_axisymmetric__code{T} var"configuration" :: String var"control_surface_names" :: Vector{String} - var"ids_properties" :: b_field_non_axisymmetric__ids_properties{T} + var"ids_properties"::b_field_non_axisymmetric__ids_properties{T} var"time" :: Vector{Float64} - var"time_slice" :: IDSvector{b_field_non_axisymmetric__time_slice{T}} + var"time_slice"::IDSvector{b_field_non_axisymmetric__time_slice{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,b_field_non_axisymmetric} - _parent :: WeakRef + _ref::Union{Nothing,b_field_non_axisymmetric} + _parent::WeakRef end function b_field_non_axisymmetric{T}() where T @@ -109345,8 +109345,8 @@ mutable struct amns_data__release___data_entry{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__release___data_entry} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__release___data_entry} + _parent::WeakRef end function amns_data__release___data_entry{T}() where T @@ -109357,15 +109357,15 @@ end amns_data__release___data_entry() = amns_data__release___data_entry{Float64}() mutable struct amns_data__release{T} <: IDSvectorStaticElement{T} - var"data_entry" :: IDSvector{amns_data__release___data_entry{T}} + var"data_entry"::IDSvector{amns_data__release___data_entry{T}} var"date" :: String var"description" :: String _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__release} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__release} + _parent::WeakRef end function amns_data__release{T}() where T @@ -109384,8 +109384,8 @@ mutable struct amns_data__process___reactants___role{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__process___reactants___role} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__process___reactants___role} + _parent::WeakRef end function amns_data__process___reactants___role{T}() where T @@ -109405,8 +109405,8 @@ mutable struct amns_data__process___reactants___element{T} <: IDSvectorStaticEle _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__process___reactants___element} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__process___reactants___element} + _parent::WeakRef end function amns_data__process___reactants___element{T}() where T @@ -109419,7 +109419,7 @@ amns_data__process___reactants___element() = amns_data__process___reactants___el mutable struct amns_data__process___reactants{T} <: IDSvectorStaticElement{T} var"charge" :: T var"charge_σ" :: T - var"element" :: IDSvector{amns_data__process___reactants___element{T}} + var"element"::IDSvector{amns_data__process___reactants___element{T}} var"label" :: String var"mass" :: T var"mass_σ" :: T @@ -109428,13 +109428,13 @@ mutable struct amns_data__process___reactants{T} <: IDSvectorStaticElement{T} var"multiplicity" :: T var"multiplicity_σ" :: T var"relative_charge" :: Int - var"role" :: amns_data__process___reactants___role{T} + var"role"::amns_data__process___reactants___role{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__process___reactants} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__process___reactants} + _parent::WeakRef end function amns_data__process___reactants{T}() where T @@ -109454,8 +109454,8 @@ mutable struct amns_data__process___products___role{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__process___products___role} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__process___products___role} + _parent::WeakRef end function amns_data__process___products___role{T}() where T @@ -109475,8 +109475,8 @@ mutable struct amns_data__process___products___element{T} <: IDSvectorStaticElem _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__process___products___element} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__process___products___element} + _parent::WeakRef end function amns_data__process___products___element{T}() where T @@ -109489,7 +109489,7 @@ amns_data__process___products___element() = amns_data__process___products___elem mutable struct amns_data__process___products{T} <: IDSvectorStaticElement{T} var"charge" :: T var"charge_σ" :: T - var"element" :: IDSvector{amns_data__process___products___element{T}} + var"element"::IDSvector{amns_data__process___products___element{T}} var"label" :: String var"mass" :: T var"mass_σ" :: T @@ -109498,13 +109498,13 @@ mutable struct amns_data__process___products{T} <: IDSvectorStaticElement{T} var"multiplicity" :: T var"multiplicity_σ" :: T var"relative_charge" :: Int - var"role" :: amns_data__process___products___role{T} + var"role"::amns_data__process___products___role{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__process___products} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__process___products} + _parent::WeakRef end function amns_data__process___products{T}() where T @@ -109540,8 +109540,8 @@ mutable struct amns_data__process___charge_state{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__process___charge_state} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__process___charge_state} + _parent::WeakRef end function amns_data__process___charge_state{T}() where T @@ -109552,13 +109552,13 @@ end amns_data__process___charge_state() = amns_data__process___charge_state{Float64}() mutable struct amns_data__process{T} <: IDSvectorStaticElement{T} - var"charge_state" :: IDSvector{amns_data__process___charge_state{T}} + var"charge_state"::IDSvector{amns_data__process___charge_state{T}} var"citation" :: String var"coordinate_index" :: Int var"label" :: String - var"products" :: IDSvector{amns_data__process___products{T}} + var"products"::IDSvector{amns_data__process___products{T}} var"provider" :: String - var"reactants" :: IDSvector{amns_data__process___reactants{T}} + var"reactants"::IDSvector{amns_data__process___reactants{T}} var"result_label" :: String var"result_transformation" :: Int var"result_units" :: String @@ -109568,8 +109568,8 @@ mutable struct amns_data__process{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__process} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__process} + _parent::WeakRef end function amns_data__process{T}() where T @@ -109590,8 +109590,8 @@ mutable struct amns_data__ids_properties__version_put{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__version_put} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__version_put} + _parent::WeakRef end function amns_data__ids_properties__version_put{T}() where T @@ -109608,8 +109608,8 @@ mutable struct amns_data__ids_properties__provenance__node{T} <: IDSvectorStatic _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__provenance__node} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__provenance__node} + _parent::WeakRef end function amns_data__ids_properties__provenance__node{T}() where T @@ -109620,13 +109620,13 @@ end amns_data__ids_properties__provenance__node() = amns_data__ids_properties__provenance__node{Float64}() mutable struct amns_data__ids_properties__provenance{T} <: IDS{T} - var"node" :: IDSvector{amns_data__ids_properties__provenance__node{T}} + var"node"::IDSvector{amns_data__ids_properties__provenance__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__provenance} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__provenance} + _parent::WeakRef end function amns_data__ids_properties__provenance{T}() where T @@ -109648,8 +109648,8 @@ mutable struct amns_data__ids_properties__plugins__node___readback{T} <: IDSvect _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__plugins__node___readback} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__plugins__node___readback} + _parent::WeakRef end function amns_data__ids_properties__plugins__node___readback{T}() where T @@ -109670,8 +109670,8 @@ mutable struct amns_data__ids_properties__plugins__node___put_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__plugins__node___put_operation} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__plugins__node___put_operation} + _parent::WeakRef end function amns_data__ids_properties__plugins__node___put_operation{T}() where T @@ -109692,8 +109692,8 @@ mutable struct amns_data__ids_properties__plugins__node___get_operation{T} <: ID _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__plugins__node___get_operation} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__plugins__node___get_operation} + _parent::WeakRef end function amns_data__ids_properties__plugins__node___get_operation{T}() where T @@ -109704,16 +109704,16 @@ end amns_data__ids_properties__plugins__node___get_operation() = amns_data__ids_properties__plugins__node___get_operation{Float64}() mutable struct amns_data__ids_properties__plugins__node{T} <: IDSvectorStaticElement{T} - var"get_operation" :: IDSvector{amns_data__ids_properties__plugins__node___get_operation{T}} + var"get_operation"::IDSvector{amns_data__ids_properties__plugins__node___get_operation{T}} var"path" :: String - var"put_operation" :: IDSvector{amns_data__ids_properties__plugins__node___put_operation{T}} - var"readback" :: IDSvector{amns_data__ids_properties__plugins__node___readback{T}} + var"put_operation"::IDSvector{amns_data__ids_properties__plugins__node___put_operation{T}} + var"readback"::IDSvector{amns_data__ids_properties__plugins__node___readback{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__plugins__node} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__plugins__node} + _parent::WeakRef end function amns_data__ids_properties__plugins__node{T}() where T @@ -109736,8 +109736,8 @@ mutable struct amns_data__ids_properties__plugins__infrastructure_put{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__plugins__infrastructure_put} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__plugins__infrastructure_put} + _parent::WeakRef end function amns_data__ids_properties__plugins__infrastructure_put{T}() where T @@ -109757,8 +109757,8 @@ mutable struct amns_data__ids_properties__plugins__infrastructure_get{T} <: IDS{ _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__plugins__infrastructure_get} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__plugins__infrastructure_get} + _parent::WeakRef end function amns_data__ids_properties__plugins__infrastructure_get{T}() where T @@ -109769,15 +109769,15 @@ end amns_data__ids_properties__plugins__infrastructure_get() = amns_data__ids_properties__plugins__infrastructure_get{Float64}() mutable struct amns_data__ids_properties__plugins{T} <: IDS{T} - var"infrastructure_get" :: amns_data__ids_properties__plugins__infrastructure_get{T} - var"infrastructure_put" :: amns_data__ids_properties__plugins__infrastructure_put{T} - var"node" :: IDSvector{amns_data__ids_properties__plugins__node{T}} + var"infrastructure_get"::amns_data__ids_properties__plugins__infrastructure_get{T} + var"infrastructure_put"::amns_data__ids_properties__plugins__infrastructure_put{T} + var"node"::IDSvector{amns_data__ids_properties__plugins__node{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__plugins} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__plugins} + _parent::WeakRef end function amns_data__ids_properties__plugins{T}() where T @@ -109798,8 +109798,8 @@ mutable struct amns_data__ids_properties__occurrence_type{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties__occurrence_type} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties__occurrence_type} + _parent::WeakRef end function amns_data__ids_properties__occurrence_type{T}() where T @@ -109815,17 +109815,17 @@ mutable struct amns_data__ids_properties{T} <: IDS{T} var"homogeneous_time" :: Int var"name" :: String var"occurrence" :: Int - var"occurrence_type" :: amns_data__ids_properties__occurrence_type{T} - var"plugins" :: amns_data__ids_properties__plugins{T} - var"provenance" :: amns_data__ids_properties__provenance{T} + var"occurrence_type"::amns_data__ids_properties__occurrence_type{T} + var"plugins"::amns_data__ids_properties__plugins{T} + var"provenance"::amns_data__ids_properties__provenance{T} var"provider" :: String - var"version_put" :: amns_data__ids_properties__version_put{T} + var"version_put"::amns_data__ids_properties__version_put{T} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__ids_properties} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__ids_properties} + _parent::WeakRef end function amns_data__ids_properties{T}() where T @@ -109853,8 +109853,8 @@ mutable struct amns_data__coordinate_system___coordinate{T} <: IDSvectorStaticEl _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__coordinate_system___coordinate} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__coordinate_system___coordinate} + _parent::WeakRef end function amns_data__coordinate_system___coordinate{T}() where T @@ -109865,13 +109865,13 @@ end amns_data__coordinate_system___coordinate() = amns_data__coordinate_system___coordinate{Float64}() mutable struct amns_data__coordinate_system{T} <: IDSvectorStaticElement{T} - var"coordinate" :: IDSvector{amns_data__coordinate_system___coordinate{T}} + var"coordinate"::IDSvector{amns_data__coordinate_system___coordinate{T}} _filled::Set{Symbol} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__coordinate_system} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__coordinate_system} + _parent::WeakRef end function amns_data__coordinate_system{T}() where T @@ -109893,8 +109893,8 @@ mutable struct amns_data__code__library{T} <: IDSvectorStaticElement{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__code__library} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__code__library} + _parent::WeakRef end function amns_data__code__library{T}() where T @@ -109907,7 +109907,7 @@ amns_data__code__library() = amns_data__code__library{Float64}() mutable struct amns_data__code{T} <: IDS{T} var"commit" :: String var"description" :: String - var"library" :: IDSvector{amns_data__code__library{T}} + var"library"::IDSvector{amns_data__code__library{T}} var"name" :: String var"output_flag" :: Vector{Int} var"parameters" :: String @@ -109917,8 +109917,8 @@ mutable struct amns_data__code{T} <: IDS{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data__code} - _parent :: WeakRef + _ref::Union{Nothing,amns_data__code} + _parent::WeakRef end function amns_data__code{T}() where T @@ -109932,11 +109932,11 @@ amns_data__code() = amns_data__code{Float64}() mutable struct amns_data{T} <: IDStop{T} var"a" :: T var"a_σ" :: T - var"code" :: amns_data__code{T} - var"coordinate_system" :: IDSvector{amns_data__coordinate_system{T}} - var"ids_properties" :: amns_data__ids_properties{T} - var"process" :: IDSvector{amns_data__process{T}} - var"release" :: IDSvector{amns_data__release{T}} + var"code"::amns_data__code{T} + var"coordinate_system"::IDSvector{amns_data__coordinate_system{T}} + var"ids_properties"::amns_data__ids_properties{T} + var"process"::IDSvector{amns_data__process{T}} + var"release"::IDSvector{amns_data__release{T}} var"time" :: Vector{Float64} var"z_n" :: T var"z_n_σ" :: T @@ -109944,8 +109944,8 @@ mutable struct amns_data{T} <: IDStop{T} _frozen::Bool _threads_lock::ReentrantLock _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,amns_data} - _parent :: WeakRef + _ref::Union{Nothing,amns_data} + _parent::WeakRef end function amns_data{T}() where T @@ -109961,104 +109961,104 @@ end amns_data() = amns_data{Float64}() mutable struct dd{T} <: DD{T} - var"amns_data" :: amns_data{T} - var"b_field_non_axisymmetric" :: b_field_non_axisymmetric{T} - var"balance_of_plant" :: balance_of_plant{T} - var"barometry" :: barometry{T} - var"blanket" :: blanket{T} - var"bolometer" :: bolometer{T} - var"bremsstrahlung_visible" :: bremsstrahlung_visible{T} - var"build" :: build{T} - var"calorimetry" :: calorimetry{T} - var"camera_ir" :: camera_ir{T} - var"camera_visible" :: camera_visible{T} - var"camera_x_rays" :: camera_x_rays{T} - var"charge_exchange" :: charge_exchange{T} - var"coils_non_axisymmetric" :: coils_non_axisymmetric{T} - var"controllers" :: controllers{T} - var"core_instant_changes" :: core_instant_changes{T} - var"core_profiles" :: core_profiles{T} - var"core_sources" :: core_sources{T} - var"core_transport" :: core_transport{T} - var"costing" :: costing{T} - var"cryostat" :: cryostat{T} - var"dataset_description" :: dataset_description{T} - var"dataset_fair" :: dataset_fair{T} - var"disruption" :: disruption{T} - var"distribution_sources" :: distribution_sources{T} - var"distributions" :: distributions{T} - var"divertors" :: divertors{T} - var"ec_launchers" :: ec_launchers{T} - var"ece" :: ece{T} - var"edge_profiles" :: edge_profiles{T} - var"edge_sources" :: edge_sources{T} - var"edge_transport" :: edge_transport{T} - var"em_coupling" :: em_coupling{T} - var"equilibrium" :: equilibrium{T} - var"ferritic" :: ferritic{T} - var"focs" :: focs{T} - var"gas_injection" :: gas_injection{T} - var"gas_pumping" :: gas_pumping{T} - var"gyrokinetics_local" :: gyrokinetics_local{T} - var"hard_x_rays" :: hard_x_rays{T} - var"ic_antennas" :: ic_antennas{T} - var"interferometer" :: interferometer{T} - var"iron_core" :: iron_core{T} - var"langmuir_probes" :: langmuir_probes{T} - var"lh_antennas" :: lh_antennas{T} - var"limits" :: limits{T} - var"magnetics" :: magnetics{T} - var"mhd" :: mhd{T} - var"mhd_linear" :: mhd_linear{T} - var"mse" :: mse{T} - var"nbi" :: nbi{T} - var"neutron_diagnostic" :: neutron_diagnostic{T} - var"neutronics" :: neutronics{T} - var"ntms" :: ntms{T} - var"operational_instrumentation" :: operational_instrumentation{T} - var"pellets" :: pellets{T} - var"pf_active" :: pf_active{T} - var"pf_passive" :: pf_passive{T} - var"pf_plasma" :: pf_plasma{T} - var"plasma_initiation" :: plasma_initiation{T} - var"polarimeter" :: polarimeter{T} - var"pulse_schedule" :: pulse_schedule{T} - var"radiation" :: radiation{T} - var"real_time_data" :: real_time_data{T} - var"reflectometer_fluctuation" :: reflectometer_fluctuation{T} - var"reflectometer_profile" :: reflectometer_profile{T} - var"refractometer" :: refractometer{T} - var"requirements" :: requirements{T} - var"runaway_electrons" :: runaway_electrons{T} - var"sawteeth" :: sawteeth{T} - var"soft_x_rays" :: soft_x_rays{T} - var"solid_mechanics" :: solid_mechanics{T} - var"spectrometer_mass" :: spectrometer_mass{T} - var"spectrometer_uv" :: spectrometer_uv{T} - var"spectrometer_visible" :: spectrometer_visible{T} - var"spectrometer_x_ray_crystal" :: spectrometer_x_ray_crystal{T} - var"spi" :: spi{T} - var"summary" :: summary{T} - var"temporary" :: temporary{T} - var"tf" :: tf{T} - var"thomson_scattering" :: thomson_scattering{T} - var"transport_solver_numerics" :: transport_solver_numerics{T} - var"turbulence" :: turbulence{T} - var"wall" :: wall{T} - var"waves" :: waves{T} - var"workflow" :: workflow{T} - global_time :: Float64 - _aux :: Dict - _filled::Set{Symbol} - _frozen::Bool - _threads_lock::ReentrantLock - _in_expression::Dict{Int,Vector{Symbol}} - _ref :: Union{Nothing,dd} - _parent :: WeakRef + var"amns_data"::amns_data{T} + var"b_field_non_axisymmetric"::b_field_non_axisymmetric{T} + var"balance_of_plant"::balance_of_plant{T} + var"barometry"::barometry{T} + var"blanket"::blanket{T} + var"bolometer"::bolometer{T} + var"bremsstrahlung_visible"::bremsstrahlung_visible{T} + var"build"::build{T} + var"calorimetry"::calorimetry{T} + var"camera_ir"::camera_ir{T} + var"camera_visible"::camera_visible{T} + var"camera_x_rays"::camera_x_rays{T} + var"charge_exchange"::charge_exchange{T} + var"coils_non_axisymmetric"::coils_non_axisymmetric{T} + var"controllers"::controllers{T} + var"core_instant_changes"::core_instant_changes{T} + var"core_profiles"::core_profiles{T} + var"core_sources"::core_sources{T} + var"core_transport"::core_transport{T} + var"costing"::costing{T} + var"cryostat"::cryostat{T} + var"dataset_description"::dataset_description{T} + var"dataset_fair"::dataset_fair{T} + var"disruption"::disruption{T} + var"distribution_sources"::distribution_sources{T} + var"distributions"::distributions{T} + var"divertors"::divertors{T} + var"ec_launchers"::ec_launchers{T} + var"ece"::ece{T} + var"edge_profiles"::edge_profiles{T} + var"edge_sources"::edge_sources{T} + var"edge_transport"::edge_transport{T} + var"em_coupling"::em_coupling{T} + var"equilibrium"::equilibrium{T} + var"ferritic"::ferritic{T} + var"focs"::focs{T} + var"gas_injection"::gas_injection{T} + var"gas_pumping"::gas_pumping{T} + var"gyrokinetics_local"::gyrokinetics_local{T} + var"hard_x_rays"::hard_x_rays{T} + var"ic_antennas"::ic_antennas{T} + var"interferometer"::interferometer{T} + var"iron_core"::iron_core{T} + var"langmuir_probes"::langmuir_probes{T} + var"lh_antennas"::lh_antennas{T} + var"limits"::limits{T} + var"magnetics"::magnetics{T} + var"mhd"::mhd{T} + var"mhd_linear"::mhd_linear{T} + var"mse"::mse{T} + var"nbi"::nbi{T} + var"neutron_diagnostic"::neutron_diagnostic{T} + var"neutronics"::neutronics{T} + var"ntms"::ntms{T} + var"operational_instrumentation"::operational_instrumentation{T} + var"pellets"::pellets{T} + var"pf_active"::pf_active{T} + var"pf_passive"::pf_passive{T} + var"pf_plasma"::pf_plasma{T} + var"plasma_initiation"::plasma_initiation{T} + var"polarimeter"::polarimeter{T} + var"pulse_schedule"::pulse_schedule{T} + var"radiation"::radiation{T} + var"real_time_data"::real_time_data{T} + var"reflectometer_fluctuation"::reflectometer_fluctuation{T} + var"reflectometer_profile"::reflectometer_profile{T} + var"refractometer"::refractometer{T} + var"requirements"::requirements{T} + var"runaway_electrons"::runaway_electrons{T} + var"sawteeth"::sawteeth{T} + var"soft_x_rays"::soft_x_rays{T} + var"solid_mechanics"::solid_mechanics{T} + var"spectrometer_mass"::spectrometer_mass{T} + var"spectrometer_uv"::spectrometer_uv{T} + var"spectrometer_visible"::spectrometer_visible{T} + var"spectrometer_x_ray_crystal"::spectrometer_x_ray_crystal{T} + var"spi"::spi{T} + var"summary"::summary{T} + var"temporary"::temporary{T} + var"tf"::tf{T} + var"thomson_scattering"::thomson_scattering{T} + var"transport_solver_numerics"::transport_solver_numerics{T} + var"turbulence"::turbulence{T} + var"wall"::wall{T} + var"waves"::waves{T} + var"workflow"::workflow{T} + _global_time::Dict{Int,Base.RefValue{Float64}} + _aux::Dict + _filled::Set{Symbol} + _frozen::Bool + _threads_lock::ReentrantLock + _in_expression::Dict{Int,Vector{Symbol}} + _ref::Union{Nothing,dd} + _parent::WeakRef end function dd{T}() where T - ids = dd{T}(amns_data{T}(), b_field_non_axisymmetric{T}(), balance_of_plant{T}(), barometry{T}(), blanket{T}(), bolometer{T}(), bremsstrahlung_visible{T}(), build{T}(), calorimetry{T}(), camera_ir{T}(), camera_visible{T}(), camera_x_rays{T}(), charge_exchange{T}(), coils_non_axisymmetric{T}(), controllers{T}(), core_instant_changes{T}(), core_profiles{T}(), core_sources{T}(), core_transport{T}(), costing{T}(), cryostat{T}(), dataset_description{T}(), dataset_fair{T}(), disruption{T}(), distribution_sources{T}(), distributions{T}(), divertors{T}(), ec_launchers{T}(), ece{T}(), edge_profiles{T}(), edge_sources{T}(), edge_transport{T}(), em_coupling{T}(), equilibrium{T}(), ferritic{T}(), focs{T}(), gas_injection{T}(), gas_pumping{T}(), gyrokinetics_local{T}(), hard_x_rays{T}(), ic_antennas{T}(), interferometer{T}(), iron_core{T}(), langmuir_probes{T}(), lh_antennas{T}(), limits{T}(), magnetics{T}(), mhd{T}(), mhd_linear{T}(), mse{T}(), nbi{T}(), neutron_diagnostic{T}(), neutronics{T}(), ntms{T}(), operational_instrumentation{T}(), pellets{T}(), pf_active{T}(), pf_passive{T}(), pf_plasma{T}(), plasma_initiation{T}(), polarimeter{T}(), pulse_schedule{T}(), radiation{T}(), real_time_data{T}(), reflectometer_fluctuation{T}(), reflectometer_profile{T}(), refractometer{T}(), requirements{T}(), runaway_electrons{T}(), sawteeth{T}(), soft_x_rays{T}(), solid_mechanics{T}(), spectrometer_mass{T}(), spectrometer_uv{T}(), spectrometer_visible{T}(), spectrometer_x_ray_crystal{T}(), spi{T}(), summary{T}(), temporary{T}(), tf{T}(), thomson_scattering{T}(), transport_solver_numerics{T}(), turbulence{T}(), wall{T}(), waves{T}(), workflow{T}(), 0.0, Dict(), Set{Symbol}(), false, ReentrantLock(), Dict{Int,Vector{Symbol}}(), nothing, WeakRef(nothing)) + ids = dd{T}(amns_data{T}(), b_field_non_axisymmetric{T}(), balance_of_plant{T}(), barometry{T}(), blanket{T}(), bolometer{T}(), bremsstrahlung_visible{T}(), build{T}(), calorimetry{T}(), camera_ir{T}(), camera_visible{T}(), camera_x_rays{T}(), charge_exchange{T}(), coils_non_axisymmetric{T}(), controllers{T}(), core_instant_changes{T}(), core_profiles{T}(), core_sources{T}(), core_transport{T}(), costing{T}(), cryostat{T}(), dataset_description{T}(), dataset_fair{T}(), disruption{T}(), distribution_sources{T}(), distributions{T}(), divertors{T}(), ec_launchers{T}(), ece{T}(), edge_profiles{T}(), edge_sources{T}(), edge_transport{T}(), em_coupling{T}(), equilibrium{T}(), ferritic{T}(), focs{T}(), gas_injection{T}(), gas_pumping{T}(), gyrokinetics_local{T}(), hard_x_rays{T}(), ic_antennas{T}(), interferometer{T}(), iron_core{T}(), langmuir_probes{T}(), lh_antennas{T}(), limits{T}(), magnetics{T}(), mhd{T}(), mhd_linear{T}(), mse{T}(), nbi{T}(), neutron_diagnostic{T}(), neutronics{T}(), ntms{T}(), operational_instrumentation{T}(), pellets{T}(), pf_active{T}(), pf_passive{T}(), pf_plasma{T}(), plasma_initiation{T}(), polarimeter{T}(), pulse_schedule{T}(), radiation{T}(), real_time_data{T}(), reflectometer_fluctuation{T}(), reflectometer_profile{T}(), refractometer{T}(), requirements{T}(), runaway_electrons{T}(), sawteeth{T}(), soft_x_rays{T}(), solid_mechanics{T}(), spectrometer_mass{T}(), spectrometer_uv{T}(), spectrometer_visible{T}(), spectrometer_x_ray_crystal{T}(), spi{T}(), summary{T}(), temporary{T}(), tf{T}(), thomson_scattering{T}(), transport_solver_numerics{T}(), turbulence{T}(), wall{T}(), waves{T}(), workflow{T}(), Dict{Int,Base.RefValue{Float64}}(), Dict(), Set{Symbol}(), false, ReentrantLock(), Dict{Int,Vector{Symbol}}(), nothing, WeakRef(nothing)) setfield!(ids.amns_data, :_parent, WeakRef(ids)) setfield!(ids.b_field_non_axisymmetric, :_parent, WeakRef(ids)) setfield!(ids.balance_of_plant, :_parent, WeakRef(ids)) diff --git a/src/expressions.jl b/src/expressions.jl index a481182e..d3cc38f4 100644 --- a/src/expressions.jl +++ b/src/expressions.jl @@ -18,8 +18,6 @@ function get_expressions(::Type{Val{T}}) where {T} return Dict{String,Function}() end -const expression_onetime_weakref = Dict{UInt64,WeakRef}() - """ ids_ancestors(@nospecialize(ids::IDS)) @@ -251,7 +249,7 @@ end Returns true if any of the IDS fields downstream have data """ -function hasdata(@nospecialize(ids::IDS)) +@inline function hasdata(@nospecialize(ids::IDS)) return !isempty(getfield(ids, :_filled)) end diff --git a/src/identifiers.jl b/src/identifiers.jl index d7a05252..8eed7888 100644 --- a/src/identifiers.jl +++ b/src/identifiers.jl @@ -270,7 +270,7 @@ function Base.findfirst(identifier_name::Symbol, @nospecialize(ids::IDSvector)) end function Base.findfirst(i::Int, @nospecialize(ids::IDSvector)) - return findfirst(idx -> identifier_index(idx) == i, ids) + return findfirst(idx -> identifier_index(idx; error_on_missing=false) == i, ids) end """ @@ -292,7 +292,7 @@ function Base.findall(identifier_name::Symbol, @nospecialize(ids::IDSvector)) end function Base.findall(i::Int, @nospecialize(ids::IDSvector)) - return findall(idx -> identifier_index(idx) == i, ids) + return findall(idx -> identifier_index(idx, error_on_missing=false) == i, ids) end """ diff --git a/src/io.jl b/src/io.jl index dcb021a0..cec422f4 100644 --- a/src/io.jl +++ b/src/io.jl @@ -315,7 +315,6 @@ function Base.isequal(a::T1, b::T2; verbose::Bool=false) where {T1<:Union{IDS,ID return all_equal # Return true if all fields matched, false otherwise end - function highlight_differences(path::String, a::Any, b::Any; color_index::Symbol=:red, color_a::Symbol=:blue, color_b::Symbol=:green) print("\n") @@ -417,7 +416,6 @@ function highlight_differences(path::String, a::Any, b::Any; color_index::Symbol return end - """ row_col_major_switch(X::AbstractArray) @@ -446,20 +444,17 @@ tp_eltype(::Type{<:AbstractArray{T,N}}) where {T,N} = T tp_eltype(v::UnionAll) = v.var.ub """ - imas2dict(ids::Union{IDS,IDSvector}; freeze::Bool=true, strict::Bool=false) + imas2dict(ids::Union{IDS,IDSvector}; freeze::Bool, strict::Bool) Populate Julia structure of dictionaries and vectors with data from IMAS data structure `ids` """ -function imas2dict(@nospecialize(ids::IDS); freeze::Bool=true, strict::Bool=false) +function imas2dict(@nospecialize(ids::IDS); freeze::Bool, strict::Bool) dct = Dict{Symbol,Any}() return imas2dict(ids, dct; freeze, strict) end function imas2dict(@nospecialize(ids::IDS), dct::Dict{Symbol,Any}; freeze::Bool, strict::Bool) fields = collect(keys_no_missing(ids)) - if typeof(ids) <: DD - push!(fields, :global_time) - end for field in fields value = get_frozen_strict_property(ids, field; freeze, strict) iofield = field_translator_jl2io(field) @@ -485,7 +480,7 @@ function imas2dict(@nospecialize(ids::IDS), dct::Dict{Symbol,Any}; freeze::Bool, return dct end -function imas2dict(@nospecialize(ids::IDSvector); freeze::Bool=true, strict::Bool=false) +function imas2dict(@nospecialize(ids::IDSvector); freeze::Bool, strict::Bool) dct = Dict{Symbol,Any}[] return imas2dict(ids, dct; freeze, strict) end @@ -547,7 +542,7 @@ export jstr2imas push!(document[:IO], :jstr2imas) """ - imas2json(@nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; freeze::Bool=true, strict::Bool=false, indent::Int=0, kw...) + imas2json(@nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; freeze::Bool=false, strict::Bool=false, indent::Int=0, kw...) Save the IMAS data structure to a JSON file with given `filename`. @@ -557,7 +552,7 @@ Save the IMAS data structure to a JSON file with given `filename`. - `strict` dumps fields that are strictly in ITER IMAS only - `kw...` arguments are passed to the `JSON.print` function """ -function imas2json(@nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; freeze::Bool=true, strict::Bool=false, indent::Int=0, kw...) +function imas2json(@nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; freeze::Bool=false, strict::Bool=false, indent::Int=0, kw...) json_string = string(ids; freeze, strict, indent, kw...) open(filename, "w") do io return write(io, json_string) @@ -569,11 +564,11 @@ export imas2json push!(document[:IO], :imas2json) """ - Base.string(@nospecialize(ids::Union{IDS,IDSvector}); freeze::Bool=true, strict::Bool=false, indent::Int=0, kw...) + Base.string(@nospecialize(ids::Union{IDS,IDSvector}); freeze::Bool=false, strict::Bool=false, indent::Int=0, kw...) Returns JSON serialization of an IDS """ -function Base.string(@nospecialize(ids::Union{IDS,IDSvector}); freeze::Bool=true, strict::Bool=false, indent::Int=0, kw...) +function Base.string(@nospecialize(ids::Union{IDS,IDSvector}); freeze::Bool=false, strict::Bool=false, indent::Int=0, kw...) json_data = imas2dict(ids; freeze, strict) return JSON.json(json_data, indent; kw...) end @@ -711,7 +706,7 @@ push!(document[:IO], :hdf2dict!) # imas2hdf # #= ======== =# """ - imas2hdf(@nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; freeze::Bool=true, strict::Bool=false, kw...) + imas2hdf(@nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; freeze::Bool=false, strict::Bool=false, kw...) Save the IMAS data structure to a OMAS HDF5 file with given `filename` (ie. hierarchical HDF5) @@ -721,23 +716,21 @@ Save the IMAS data structure to a OMAS HDF5 file with given `filename` (ie. hier - `freeze` evaluates expressions - `strict` dumps fields that are strictly in ITER IMAS only """ -function imas2hdf(@nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; freeze::Bool=true, strict::Bool=false, kw...) +function imas2hdf(@nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; freeze::Bool=false, strict::Bool=false, kw...) HDF5.h5open(filename, "w"; kw...) do fid return imas2hdf(ids, fid; freeze, strict) end end -function imas2hdf(@nospecialize(ids::IDS), gparent::Union{HDF5.File,HDF5.Group}; freeze::Bool=true, strict::Bool=false) +function imas2hdf(@nospecialize(ids::IDS), gparent::Union{HDF5.File,HDF5.Group}; freeze::Bool, strict::Bool) fields = collect(keys_no_missing(ids)) - if typeof(ids) <: DD - push!(fields, :global_time) - end for field in fields - iofield = field_translator_jl2io(field) value = get_frozen_strict_property(ids, field; freeze, strict) if typeof(value) <: Union{Missing,Function} continue - elseif typeof(value) <: Union{IDS,IDSvector} + end + iofield = field_translator_jl2io(field) + if typeof(value) <: Union{IDS,IDSvector} g = HDF5.create_group(gparent, string(iofield)) imas2hdf(value, g; freeze, strict) elseif typeof(value) <: AbstractString @@ -752,7 +745,7 @@ function imas2hdf(@nospecialize(ids::IDS), gparent::Union{HDF5.File,HDF5.Group}; end end -function imas2hdf(@nospecialize(ids::IDSvector), gparent::Union{HDF5.File,HDF5.Group}; freeze::Bool=true, strict::Bool=false) +function imas2hdf(@nospecialize(ids::IDSvector), gparent::Union{HDF5.File,HDF5.Group}; freeze::Bool, strict::Bool) for (index, value) in enumerate(ids) if typeof(value) <: Union{IDS,IDSvector} g = HDF5.create_group(gparent, string(index - 1)) # -1 to conform to omas HDF5 format @@ -917,8 +910,8 @@ end imas2h5i( @nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; - freeze::Bool=true, - strict::Bool=false, + freeze::Bool=false, + strict::Bool=true, run::Int=0, shot::Int=0, hdf5_backend_version::String="1.0", @@ -937,8 +930,8 @@ Save data to a HDF5 file generated by IMAS platform (ie. tensorized HDF5) function imas2h5i( @nospecialize(ids::Union{IDS,IDSvector}), filename::AbstractString; - freeze::Bool=true, - strict::Bool=false, + freeze::Bool=false, + strict::Bool=true, run::Int=0, shot::Int=0, hdf5_backend_version::String="1.0", @@ -1202,3 +1195,132 @@ function write_tensor_data(ret::AbstractDict{String,Any}, g::HDF5.Group) return ret end + +#= ======= =# +# h5merge # +#= ======= =# +""" + h5merge(output_file::AbstractString, keys_files::AbstractVector{<:Pair{<:AbstractString, <:AbstractString}}; + mode::AbstractString="a", skip_existing_entries::Bool=false) + +Merges multiple files into a single HDF5 `output_file`, using `keys_files` as a vector of pairs where each key is a group name and each value is the corresponding input filename. + +`.h5` files will be added to the `output_file`, while other file formats will be added either as strings (for text file formats) or bytes of raw data. + +Note that keys that have `/` will result in nested groups in the `output_file` + +The `mode` argument specifies whether to create a new file (`"w"`) or append to an existing one (`"a"`). + +If `skip_existing_entries = false`, files with the same key in the output file will be updated. +""" +function h5merge( + output_file::AbstractString, + keys_files::Union{AbstractDict{<:AbstractString,<:AbstractString},AbstractVector{<:Pair{<:AbstractString,<:AbstractString}}}; + mode::AbstractString="a", + skip_existing_entries::Bool=false, + verbose::Bool=false +) + @assert mode in ("w", "a") + + for file in values(keys_files) + @assert !isdir(file) "h5merge: File `$file` is a directory, not a file." + @assert isfile(file) "h5merge: File `$file` does not exist." + end + + if !isfile(output_file) + mode = "w" + end + if mode == "a" + mode = "r+" + end + + HDF5.h5open(output_file, mode) do output_h5 + for (group_name, input_file) in keys_files + if haskey(output_h5, group_name) + if skip_existing_entries + continue + end + HDF5.delete_object(output_h5, group_name) + end + + if isempty(input_file) || filesize(input_file) == 0 + file_type = "EMPTY" + HDF5.create_dataset(output_h5, group_name, UInt8, 0) + + elseif endswith(input_file, ".h5") + file_type = "HDF5" + HDF5.h5open(input_file, "r") do input_h5 + return HDF5.copy_object(input_h5, "/", output_h5, group_name) + end + + elseif split(input_file, ".")[end] in ("json", "yaml", "txt", "md") || is_text_file(input_file) + file_type = "TEXT" + open(input_file, "r") do io + text = read(io, String) + return HDF5.write(output_h5, group_name, text) + end + else + file_type = "BINARY" + open(input_file, "r") do io + data = read(io) # Read the file as bytes + dset = HDF5.create_dataset(output_h5, group_name, UInt8, length(data)) + return dset[:] = data + end + end + if verbose + @info "$(group_name) --> [$(file_type)] @ $(input_file)" + end + end + end +end + +""" + h5merge( + output_file::AbstractString, + directory::AbstractString; + mode::AbstractString="a", + skip_existing_entries::Bool=false, + follow_symlinks::Bool=false, + verbose::Bool=false) + +Add all files in a directory (and subdirectories) to an HDF5 `output_file` +""" +function h5merge( + output_file::AbstractString, + directory::AbstractString; + mode::AbstractString="a", + skip_existing_entries::Bool=false, + follow_symlinks::Bool=false, + verbose::Bool=false +) + @assert isdir(directory) "h5merge: `$directory` is not a valid directory." + + # Collect all files in the directory recursively + keys_files = Dict{String,String}() + for (root, dirs, files) in walkdir(directory; follow_symlinks) + for file in files + if !startswith(file, ".") + relative_path = joinpath(root, file) + group_name = joinpath(split(relative_path, directory)[2:end]...)[2:end] + keys_files[group_name] = relative_path + end + end + end + + return h5merge(output_file, keys_files; mode, skip_existing_entries, verbose) +end + +""" + is_text_file(file::AbstractString) + +Checks is all characters are printable or whitespace +""" +function is_text_file(file::AbstractString) + open(file, "r") do io + data = read(io, String) # Read the first num_bytes + return all(c -> isprint(c) || c == '\n' || c == '\t' || c == '\r', data) + end +end + +export h5merge +push!(document[:IO], :h5merge) \ No newline at end of file diff --git a/src/math.jl b/src/math.jl index a0811620..7f16a5e5 100644 --- a/src/math.jl +++ b/src/math.jl @@ -18,7 +18,7 @@ function interp1d(x::AbstractVector{<:Real}, y::AbstractVector{T}, scheme::Symbo x = noninf.(x) end - if length(x) == 1 || scheme == :constant || T<:Integer + if length(x) == 1 || scheme == :constant || T <: Integer itp = DataInterpolations.ConstantInterpolation(y, x; extrapolate=true) elseif scheme == :pchip itp = DataInterpolations.PCHIPInterpolation(y, x; extrapolate=true) @@ -57,7 +57,7 @@ function interp1d_itp(x::AbstractVector{<:Real}, y::AbstractVector{T}, scheme::S x = noninf.(x) end - if length(x) == 1 || scheme == :constant || T<:Integer + if length(x) == 1 || scheme == :constant || T <: Integer itp = DataInterpolations.ConstantInterpolation(y, x; extrapolate=true) elseif scheme == :pchip itp = DataInterpolations.PCHIPInterpolation(y, x; extrapolate=true) @@ -309,7 +309,7 @@ push!(document[:Math], :gradient) Maximum ignoring NaNs in an array """ function nanmaximum(a::AbstractArray) - m = maximum(x->isnan(x) ? -Inf : x, a) + m = maximum(x -> isnan(x) ? -Inf : x, a) if m == -Inf && all(isnan.(a)) return NaN else @@ -326,7 +326,7 @@ push!(document[:Math], :nanmaximum) Minimum ignoring NaNs in an array """ function nanminimum(a::AbstractArray) - m = minimum(x->isnan(x) ? Inf : x, a) + m = minimum(x -> isnan(x) ? Inf : x, a) if m == Inf && all(isnan.(a)) return NaN else diff --git a/src/time.jl b/src/time.jl index c8094c79..613d8ce2 100644 --- a/src/time.jl +++ b/src/time.jl @@ -32,7 +32,7 @@ function Base.setindex!(@nospecialize(ids::IDSvector{T}), @nospecialize(v::T), t error("Cannot insert data at time $time0 that does not match any existing time") end - unifm_time = time_array_parent(ids) + unifm_time = parent_ids_with_time_array(ids).time if isempty(unifm_time) || time0 != unifm_time[end] push!(unifm_time, time0) end @@ -56,7 +56,7 @@ function Base.push!(@nospecialize(ids::IDSvector{T}), @nospecialize(v::T), time0 error("Cannot push! data at $time0 [s] at a time earlier or equal to $(ids[end].time) [s]") end - unifm_time = time_array_parent(ids) + unifm_time = parent_ids_with_time_array(ids).time if isempty(unifm_time) || time0 != unifm_time[end] push!(unifm_time, time0) end @@ -69,13 +69,17 @@ function Base.push!(@nospecialize(ids::IDSvector{T}), @nospecialize(v::T), time0 end """ - causal_time_index(time::Union{Base.Generator,AbstractVector{T}}, time0::T) where {T<:Float64} + causal_time_index(time::Union{Base.Generator,AbstractVector{T}}, time0::T; bounds_error::Bool=true) where {T<:Float64} Returns the `time` index that is closest to `time0` and satisfies causality. This function also returns a boolean indicating if the `time0` is exactly contained in `time`. + +If `bounds_error=false` the function will not throw an erro if causal time is not available and will return time index=1 instead """ -function causal_time_index(time::Union{Base.Generator,AbstractVector{T}}, time0::T) where {T<:Float64} +function causal_time_index(time::Union{Base.Generator,AbstractVector{T}}, time0::T; bounds_error::Bool=true) where {T<:Float64} + @assert !isempty(time) "Cannot return a causal_time_index() of an empty time vector" + len = 0 start_time = NaN end_time = NaN @@ -85,51 +89,59 @@ function causal_time_index(time::Union{Base.Generator,AbstractVector{T}}, time0: start_time = t end if t == time0 - return k, true + return (index=k, perfect_match=true) elseif t > time0 if k == 1 - error("Could not find causal time for time0=$time0. Available time is only [$(start_time)]") + if bounds_error + error("Could not find causal time for time0=$time0. Available time is only [$(start_time)]") + else + return (index=1, perfect_match=false) + end end - return k - 1, false + return (index=k - 1, perfect_match=false) end end_time = t len = k end if time0 < start_time - if start_time == end_time - error("Could not find causal time for time0=$time0. Available time is only [$(start_time)]") + if bounds_error + if start_time == end_time + error("Could not find causal time for time0=$time0. Available time is only [$(start_time)]") + else + error("Could not find causal time for time0=$time0. Available time range is [$(start_time)...$(end_time)]") + end else - error("Could not find causal time for time0=$time0. Available time range is [$(start_time)...$(end_time)]") + return (index=1, perfect_match=false) end end - return len, false + return (index=len, perfect_match=false) end -function causal_time_index(time::Union{Base.Generator,AbstractVector{T}}, time0::T, vector::Vector) where {T<:Float64} - i, perfect_match = causal_time_index(time, time0) - return min(i, length(vector)), perfect_match +function causal_time_index(time::Union{Base.Generator,AbstractVector{T}}, time0::T, vector::Vector; bounds_error::Bool=true) where {T<:Float64} + i, perfect_match = causal_time_index(time, time0; bounds_error) + return (index=min(i, length(vector)), perfect_match=perfect_match) end """ - time_array_parent(@nospecialize(ids::IDS)) + parent_ids_with_time_array(@nospecialize(ids::IDS)) -Traverse IDS hierarchy upstream and returns the relevant :Time vector +Traverse IDS hierarchy upstream and returns the IDS with the relevant :time vector """ -function time_array_parent(@nospecialize(ids::IDS)) +function parent_ids_with_time_array(@nospecialize(ids::IDS)) if :time ∈ fieldnames(typeof(ids)) && fieldtype_typeof(ids, :time) <: Vector{Float64} if ismissing(ids, :time) ids.time = Float64[] end - return ids.time + return ids else - return time_array_parent(parent(ids)) + return parent_ids_with_time_array(parent(ids)) end end -function time_array_parent(@nospecialize(ids::IDSvector)) - return time_array_parent(parent(ids)) +function parent_ids_with_time_array(@nospecialize(ids::IDSvector)) + return parent_ids_with_time_array(parent(ids)) end """ @@ -142,6 +154,29 @@ function time_array_local(@nospecialize(ids::IDSvector{<:IDSvectorTimeElement})) return (v.time for v in ns.ids) end +""" + thread_global_time(dd::DD) + +Returns thread-safe reference of `global_time` for current thread +""" +function thread_global_time(dd::DD) + _global_time = getfield(dd, :_global_time) + t_id = Threads.threadid() + # create global_time reference for individual threads if not there already + if t_id ∉ keys(_global_time) + threads_lock = getfield(dd, :_threads_lock) + lock(threads_lock) do + if isempty(_global_time) + _global_time[1] = Ref(0.0) + _global_time[t_id] = Ref(0.0) + elseif t_id ∉ keys(_global_time) + _global_time[t_id] = _global_time[1] + end + end + end + return _global_time[t_id]::Base.RefValue{Float64} +end + """ global_time(ids::Union{IDS,IDSvector}) @@ -153,12 +188,12 @@ function global_time(@nospecialize(ids::Union{IDS,IDSvector})) return global_time(top_dd(ids)) end -function global_time(::Nothing) - return Inf +function global_time(dd::DD) + return thread_global_time(dd)[] end -function global_time(dd::DD) - return getfield(dd, :global_time) +function global_time(::Nothing) + return Inf end """ @@ -167,7 +202,15 @@ end Set the dd.global_time of a given IDS """ function global_time(@nospecialize(ids::Union{IDS,IDSvector}), time0::Float64) - return setfield!(top_dd(ids), :global_time, time0) + return global_time(top_dd(ids), time0) +end + +function global_time(dd::DD, time0::Float64) + return thread_global_time(dd)[] = time0 +end + +function global_time(::Nothing, time0::Float64) + return error("Cannot set the global_time of an IDS detached from a `dd`") end export global_time @@ -190,7 +233,7 @@ Set value of a time-dependent array at time0 NOTE: updates the closest causal element of an array """ function set_time_array(@nospecialize(ids::IDS{T}), field::Symbol, time0::Float64, value) where {T<:Real} - time = time_array_parent(ids) + time = parent_ids_with_time_array(ids).time # no time information if isempty(time) i = 1 @@ -275,7 +318,7 @@ function get_time_array(ids::IDS, field::Symbol, time0::Float64, scheme::Symbol= if time_coordinate_index == 0 return getproperty(ids, field) elseif fieldtype_typeof(ids, field) <: AbstractVector - time = time_array_parent(ids) + time = parent_ids_with_time_array(ids).time vector = getproperty(ids, field) get_time_array(time, vector, time0, scheme, time_coordinate_index) else @@ -291,8 +334,9 @@ function dropdims_view(arr; dims::Int) end function get_time_array(@nospecialize(ids::IDS{T}), field::Symbol, time0::Vector{Float64}, scheme::Symbol=:linear) where {T<:Real} + @assert !isempty(time0) "get_time_array() `time0` must have some times specified" time_coordinate_index = time_coordinate(ids, field; error_if_not_time_dependent=true) - time = time_array_parent(ids) + time = parent_ids_with_time_array(ids).time if minimum(time0) < time[1] error("Asking for `$(location(ids, field))` at $time0 [s], before minimum time $(time[1]) [s]") end @@ -480,6 +524,49 @@ end export new_timeslice! push!(document[:Time], :new_timeslice!) +""" + resize!(@nospecialize(ids::IDSvector{T}); wipe::Bool=true) where {T<:IDSvectorTimeElement} + +Resize time dependent array at global_time +""" +function Base.resize!(@nospecialize(ids::IDSvector{T}); wipe::Bool=true) where {T<:IDSvectorTimeElement} + time0 = global_time(ids) + return resize!(ids, time0; wipe) +end + +""" + resize!(@nospecialize(ids::IDSvector{T}), time0::Float64; wipe::Bool=true) where {T<:IDSvectorTimeElement} + +Resize time dependent array based on time +""" +function Base.resize!(@nospecialize(ids::IDSvector{T}), time0::Float64; wipe::Bool=true) where {T<:IDSvectorTimeElement} + # append a time slice + if isempty(ids) || (time0 > ids[end].time) + k = length(ids) + 1 + resize!(ids, k; wipe) + ids[k].time = time0 + + else + # modify a time slice + k = findlast(time0 == ids[k].time for k in eachindex(ids)) + if k === nothing + error("Cannot resize $(location(ids)) at time $time0 for a time array structure already ranging between $(ids[1].time) and $(ids[end].time)") + end + if wipe + empty!(ids[k]) + end + ids[k].time = time0 + end + + time_ids = parent_ids_with_time_array(ids) + append!(empty!(time_ids.time), (sub_ids.time for sub_ids in ids)) + + return ids +end + +export resize! +push!(document[:Time], :resize!) + """ retime!(ids::IDS, time0::Float64) @@ -516,6 +603,84 @@ function retime!(@nospecialize(ids::IDSvector), time0::Float64) end end +""" + retime!(@nospecialize(ids::IDS{T}), times::AbstractVector{Float64}) where {T<:Real} + +Extend IDSvector{<:IDSvectorTimeElement} and time dependent data arrays with times +""" +function retime!(@nospecialize(ids::IDS{T}), times::AbstractVector{Float64}) where {T<:Real} + @assert all(diff(times) .> 0) "retime!() times must be increasing" + + for field in keys(ids) + if hasdata(ids, field) + value = getproperty(ids, field) + else + continue + end + + if typeof(value) <: IDS + retime!(value, times) + + elseif typeof(value) <: IDSvector{<:IDSvectorTimeElement} + if isempty(value) + last_time = -Inf + else + last_time = value[end].time + end + for time in times + if time > last_time + resize!(value, time) + end + end + + elseif typeof(value) <: IDSvector + for sub_ids in value + retime!(sub_ids, times) + end + + elseif field == :time && typeof(value) <: Vector + if isempty(value) + last_time = -Inf + else + last_time = value[end] + end + for time in times + if time > last_time + push!(value, time) + end + end + + elseif typeof(value) <: Array + time_coordinate_index = time_coordinate(ids, field; error_if_not_time_dependent=false) + if time_coordinate_index > 0 + times = coordinates(ids, field).values[time_coordinate_index] + if isempty(times) + last_time = -Inf + else + last_time = times[end] + end + M = length(times) + sum(times .> last_time) + if M > size(value)[time_coordinate_index] + current_size = size(value) + new_size = ntuple(i -> i == time_coordinate_index ? M : current_size[i], ndims(value)) + + # Create a new array filled with NaN of the desired size + new_value = T.(fill(NaN, new_size)) + + # Copy the values from the original array into the new array + indices = ntuple(i -> Colon(), ndims(value)) # Full indices for all dimensions + indices = Base.setindex(indices, 1:current_size[time_coordinate_index], time_coordinate_index) # Adjust the d-th dimension + new_value[indices...] = value + + setfield!(ids, field, new_value) + end + end + end + end + + return ids +end + export retime! push!(document[:Time], :retime!) @@ -548,12 +713,14 @@ end function get_timeslice!( @nospecialize(ids::IDS{T2}), @nospecialize(ids0::IDS{T1}), - time0::Float64=global_time(ids), - scheme::Symbol=:linear; - slice_pulse_schedule::Bool=false) where {T1<:Real,T2<:Real} + time0::Float64, + scheme::Symbol; + slice_pulse_schedule::Bool) where {T1<:Real,T2<:Real} + if typeof(ids0) <: DD ids0.global_time = time0 end + for field in keys(ids) if hasdata(ids, field) value = getproperty(ids, field) @@ -586,6 +753,7 @@ function get_timeslice!( end end end + return ids0 end @@ -594,12 +762,13 @@ function get_timeslice!( @nospecialize(ids0::T2), time0::Float64, scheme::Symbol; - slice_pulse_schedule) where {T1<:IDSvector{<:IDSvectorTimeElement},T2<:IDSvector{<:IDSvectorTimeElement}} + slice_pulse_schedule::Bool) where {T1<:IDSvector{<:IDSvectorTimeElement},T2<:IDSvector{<:IDSvectorTimeElement}} if !isempty(ids) resize!(ids0, 1) get_timeslice!(ids[time0], ids0[end], time0, scheme; slice_pulse_schedule) end + return ids0 end @@ -608,14 +777,117 @@ function get_timeslice!( @nospecialize(ids0::T2), time0::Float64, scheme::Symbol; - slice_pulse_schedule) where {T1<:IDSvector{<:IDSvectorElement},T2<:IDSvector{<:IDSvectorElement}} + slice_pulse_schedule::Bool) where {T1<:IDSvector{<:IDSvectorElement},T2<:IDSvector{<:IDSvectorElement}} resize!(ids0, length(ids)) for k in 1:length(ids) get_timeslice!(ids[k], ids0[k], time0, scheme; slice_pulse_schedule) end + return ids0 end export get_timeslice push!(document[:Time], :get_timeslice) + +""" + trim_time!(@nospecialize(ids::IDS), time_range::Tuple{Float64,Float64}; trim_pulse_schedule::Bool=false) + +Recursively remove all time dependent data tha occurs outside of `time_range` +""" +function trim_time!(@nospecialize(ids::IDS), time_range::Tuple{Float64,Float64}; trim_pulse_schedule::Bool=false) + @assert time_range[end] > time_range[1] + if time_range == (-Inf, Inf) + return ids + end + + # trim time dependent IDSvector, and time dependent data arrays + for field in keys(ids) + if hasdata(ids, field) + value = getproperty(ids, field) + else + continue + end + if typeof(value) <: IDS && (!(typeof(value) <: pulse_schedule) || trim_pulse_schedule) + trim_time!(value, time_range; trim_pulse_schedule) + elseif typeof(value) <: IDSvector{<:IDSvectorTimeElement} + if isempty(value) + # pass + else + for time in reverse!([subids.time for subids in value]) + if time > time_range[end] + pop!(value) + end + end + for time in [subids.time for subids in value] + if time < time_range[1] + popfirst!(value) + end + end + if isempty(value) + @warn "$(location(ids, field)) was emptied since time=[$(times[1])...$(times[end])] and time_range=$(time_range)" + end + end + elseif typeof(value) <: IDSvector + for sub_ids in value + trim_time!(sub_ids, time_range; trim_pulse_schedule) + end + elseif field == :time + # pass + elseif typeof(value) <: Array + time_coordinate_index = time_coordinate(ids, field; error_if_not_time_dependent=false) + if time_coordinate_index > 0 + times = coordinates(ids, field).values[time_coordinate_index] + if !isempty(times) + if times[1] > time_range[end] || times[end] < time_range[1] + @warn "$(location(ids, field)) was emptied since time=[$(times[1])...$(times[end])] and time_range=$(time_range)" + empty!(ids, field) + else + index = (times .>= time_range[1]) .&& (times .<= time_range[end]) + setfield!(ids, field, get_time_array(ids, field, times[index], :constant)) + end + end + end + end + end + + # trim time arrays + for field in keys(ids) + if hasdata(ids, field) + value = getproperty(ids, field) + else + continue + end + if typeof(value) <: IDS && (!(typeof(value) <: IMASdd.pulse_schedule) || trim_pulse_schedule) + trim_time!(value, time_range; trim_pulse_schedule) + elseif typeof(value) <: IDSvector{<:IDSvectorTimeElement} + # pass + elseif typeof(value) <: IDSvector + for sub_ids in value + trim_time!(sub_ids, time_range; trim_pulse_schedule) + end + elseif field == :time && typeof(value) <: Vector && !isempty(value) + times = value + if times[1] > time_range[end] || times[end] < time_range[1] + @warn "$(location(ids, field)) was emptied since time=[$(times[1])...$(times[end])] and time_range=$(time_range)" + empty!(ids, field) + else + index = (times .>= time_range[1]) .&& (times .<= time_range[end]) + setfield!(ids, field, times[index]) + end + end + end + + if typeof(ids) <: DD + if ids.global_time > time_range[end] + ids.global_time = time_range[end] + elseif ids.global_time < time_range[1] + ids.global_time = time_range[1] + end + end + + return ids +end + +export trim_time! +push!(document[:Time], :trim_time!) diff --git a/test/runtests_threads.jl b/test/runtests_threads.jl new file mode 100644 index 00000000..12f5fc6e --- /dev/null +++ b/test/runtests_threads.jl @@ -0,0 +1,23 @@ +using IMASdd +import IMASdd as IMAS +using Test + +include(joinpath(@__DIR__, "test_expressions_dicts.jl")) + +@testset "threads" begin + + dd = IMAS.dd() + + dd.global_time = -1.0 + Threads.@threads for k in range(1,10) + # test persistance of global time among threads + @test dd.global_time == -1.0 + end + + Threads.@threads for k in range(1,10) + # test independence of global time between threads + dd.global_time = k + @test dd.global_time != -1.0 + end + +end \ No newline at end of file