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 1261477 commit 257b287Copy full SHA for 257b287
src/utils.jl
@@ -3,7 +3,7 @@ function Expression(ex;mod=Main)
3
ex.head === :if && (ex = Expr(:call, ifelse, ex.args...))
4
ex.head === :call || throw(ArgumentError("internal representation does not support non-call Expr"))
5
6
- op = getproperty(mod,ex.args[1])
+ op = getproperty(mod,Symbol(ex.args[1]))
7
args = convert.(Expression, ex.args[2:end])
8
9
return Operation(op, args)
0 commit comments