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.
2 parents 483f48e + 4d633d9 commit 166c713Copy full SHA for 166c713
src/conversion.jl
@@ -215,6 +215,11 @@ function to_codeobject(x::EXPR)
215
int !== nothing && return int
216
217
Expr(Symbol(lowercase(String(x.head))))
218
+ elseif VERSION < v"1.7.0-DEV.1129" && x.head === :ncat
219
+ dim = tryparse(Int, String(x.args[1].head))
220
+ dim == nothing && return Expr(:error)
221
+ head = dim == 1 ? :hcat : :vcat
222
+ Expr(head, to_codeobject.(x.args[2:end])...)
223
elseif x.head === :errortoken
224
Expr(:error)
225
else
0 commit comments