Skip to content

Commit 6fda620

Browse files
committed
strip conversion code
1 parent abfc1c8 commit 6fda620

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/conversion.jl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -195,20 +195,6 @@ function Expr(x::EXPR)
195195
Expr(:string, Expr.(x.args[2:end])...)
196196
elseif x.args === nothing
197197
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-
# end
208-
# Expr(:parameters, Expr.(ordered_args)...)
209-
# else
210-
# Expr(:parameters, Expr.(x.args)...)
211-
# end
212198
elseif x.head === :errortoken
213199
Expr(:error)
214200
else

0 commit comments

Comments
 (0)