We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 49616fa + cdfa245 commit 857f61dCopy full SHA for 857f61d
1 file changed
tests/syntax.lua
@@ -8,12 +8,12 @@
8
local char = ("").char
9
print(char == string.char and "yes" or "no")
10
local pc, _ = pcall(function()
11
- return (0)[char]
+ return (0).char
12
end)
13
14
-- Checks for unparser bug
15
print(pc == false and "yes" or "no")
16
local ok = pcall(function(...)
17
print("hello " .. ...)
18
19
-print(ok and "no" or "yes")
+print(ok and "no" or "yes")
0 commit comments