mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 11:20:54 +01:00
Let's try this
This commit is contained in:
parent
5522631be4
commit
6d6fd12fee
1 changed files with 2 additions and 1 deletions
|
@ -295,8 +295,9 @@ end
|
||||||
|
|
||||||
|
|
||||||
-- testing syntax limits
|
-- testing syntax limits
|
||||||
|
local syntaxdepth = if limitedstack then 200 else 1000
|
||||||
local function testrep (init, rep)
|
local function testrep (init, rep)
|
||||||
local s = "local a; "..init .. string.rep(rep, 300)
|
local s = "local a; "..init .. string.rep(rep, syntaxdepth)
|
||||||
local a,b = loadstring(s)
|
local a,b = loadstring(s)
|
||||||
assert(not a) -- and string.find(b, "syntax levels"))
|
assert(not a) -- and string.find(b, "syntax levels"))
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue