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.
Term
gen_expr
1 parent c3b0585 commit 1660338Copy full SHA for 1660338
test/fuzzlib.jl
@@ -207,7 +207,7 @@ function gen_expr(lvl=5)
207
n = rand(1:5)
208
args = [gen_expr(lvl-1) for i in 1:n]
209
210
- Term{Number}(f, first.(args)), f(last.(args)...)
+ _Term(Number, f, first.(args)), f(last.(args)...)
211
else
212
f = rand((-,/))
213
l = gen_expr(lvl-1)
@@ -217,7 +217,7 @@ function gen_expr(lvl=5)
217
end
218
args = [l, r]
219
220
221
222
223
0 commit comments