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 5daea61 commit 4459f42Copy full SHA for 4459f42
src/expr.jl
@@ -10,6 +10,6 @@ children(e::Expr) = e.args
10
operation(e::Expr) = iscall(e) ? first(children(e)) : error("operation called on a non-function call expression")
11
arguments(e::Expr) = iscall(e) ? @view(e.args[2:end]) : error("arguments called on a non-function call expression")
12
13
-function maketerm(::Type{Expr}, head, args, symtype=nothing, metadata=nothing)
+function maketerm(::Type{Expr}, head, args, type=nothing, metadata=nothing)
14
Expr(head, args...)
15
end
0 commit comments