We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abfc1c8 commit 6fda620Copy full SHA for 6fda620
src/conversion.jl
@@ -195,20 +195,6 @@ function Expr(x::EXPR)
195
Expr(:string, Expr.(x.args[2:end])...)
196
elseif x.args === nothing
197
Expr(Symbol(lowercase(String(x.head))))
198
- # elseif x.head === :parameters
199
- # if length(x.args) > 1 && any(a -> a.head === :parameters, x.args)
200
- # ordered_args = EXPR[]
201
- # for arg in x.args
202
- # if arg.head === :parameters
203
- # pushfirst!(ordered_args, arg)
204
- # else
205
- # push!(ordered_args, arg)
206
- # end
207
208
- # Expr(:parameters, Expr.(ordered_args)...)
209
210
- # Expr(:parameters, Expr.(x.args)...)
211
212
elseif x.head === :errortoken
213
Expr(:error)
214
else
0 commit comments