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.
test/limits.jl
1 parent 0d2d442 commit 5de78c7Copy full SHA for 5de78c7
test/limits.jl
@@ -85,7 +85,9 @@ module EvalLimited end
85
insert!(ex.args, 1, LineNumberNode(1, Symbol("fake.jl")))
86
end
87
modexs = collect(ExprSplitter(EvalLimited, ex))
88
- @static if VERSION >= v"1.11-"
+ @static if VERSION >= v"1.12-"
89
+ nstmts = 10*21 + 27 # 10 * 21 statements per iteration + α
90
+ elseif VERSION >= v"1.11-"
91
nstmts = 10*17 + 20 # 10 * 17 statements per iteration + α
92
elseif VERSION >= v"1.10-"
93
nstmts = 10*15 + 20 # 10 * 15 statements per iteration + α
0 commit comments