You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Base.getproperty(x::DFGVariable,f::Symbol) = begin
101
-
# if f == :estimateDict
102
-
# @warn "estimateDict is deprecated, use ppeDict instead"
103
-
# getfield(x, :ppeDict)
104
-
# elseif f == :solvable
105
-
# getfield(x,:_dfgNodeParams).solvable
106
-
# elseif f == :_internalId
107
-
# getfield(x,:_dfgNodeParams)._internalId
108
-
# else
109
-
# getfield(x,f)
110
-
# end
111
-
# end
112
-
#
113
-
# Base.setproperty!(x::DFGVariable,f::Symbol, val) = begin
114
-
# if f == :estimateDict
115
-
# error("estimateDict is deprecated, use ppeDict instead")
116
-
# elseif f == :solvable
117
-
# getfield(x,:_dfgNodeParams).solvable = val
118
-
# elseif f == :_internalId
119
-
# getfield(x,:_dfgNodeParams)._internalId = val
120
-
# else
121
-
# setfield!(x,f,val)
122
-
# end
123
-
# end
124
-
#
125
-
# Base.getproperty(x::DFGVariableSummary,f::Symbol) = begin
126
-
# if f == :estimateDict
127
-
# @warn "estimateDict is deprecated, use ppeDict instead"
128
-
# getfield(x, :ppeDict)
129
-
# else
130
-
# getfield(x,f)
131
-
# end
132
-
# end
133
-
#
134
-
#
135
-
#
136
-
# Base.getproperty(x::GenericFunctionNodeData,f::Symbol) = begin
137
-
# f == :fncargvID && Base.depwarn("GenericFunctionNodeData field fncargvID will be deprecated, use `getVariableOrder` instead",:getproperty)#@warn "fncargvID is deprecated, use `getVariableOrder` instead"
138
-
#
139
-
# getfield(x, f)
140
-
#
141
-
# end
142
-
#
143
-
# Base.setproperty!(x::GenericFunctionNodeData,f::Symbol, val) = begin
144
-
# f == :fncargvID && Base.depwarn("GenericFunctionNodeData field fncargvID will be deprecated, use `getVariableOrder` instead",:getproperty)#@warn "fncargvID is deprecated, use `getVariableOrder` instead"
0 commit comments