Skip to content

Commit 6a350c6

Browse files
committedJun 3, 2017
Update and fix selene
loading selene's parser afterwards allows use to use unmodified selene
1 parent e02d68b commit 6a350c6

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed
 

‎src/main/java/pcl/lc/irc/hooks/JNLuaSandbox.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ public int invoke(LuaState luaState) {
100100
luaState.load(luasb, "=luasb");
101101
luaState.call(0, 0);
102102

103-
System.out.println(runScriptInSandbox("_selene_parser_ =(function()\n" + sparser + "\nend)()"));
104-
System.out.println(runScriptInSandbox("if _selene_parser_ then selene = (function()\n" + selene + "\nend)() end"));
105-
System.out.println(runScriptInSandbox("if selene then selene.load() end"));
103+
System.out.println(runScriptInSandbox("selene = (function()\n" + selene + "\nend)()"));
104+
System.out.println(runScriptInSandbox("selene.parser =(function()\n" + sparser + "\nend)()"));
105+
System.out.println(runScriptInSandbox("selene.load()"));
106106
}
107107

108108
static String runScriptInSandbox(String script) {

‎src/main/resources/jnlua/selene/init.lua

+3-2
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ local fmt = {
244244
return fnc._fnc(...)
245245
end,
246246
__len = function(fnc)
247-
return #fnc._fnc
247+
return parCount(fnc)
248248
end,
249249
__pairs = function(fnc)
250250
return pairs(fnc._fnc)
@@ -1215,7 +1215,8 @@ end
12151215
local selene = {}
12161216

12171217
do
1218-
selene.parser = _selene_parser_
1218+
local s, p = pcall(require, "selene.parser") -- This might not be possible in every environment
1219+
selene.parser = s and p or nil
12191220
end
12201221

12211222
local function parse(chunk, stripcomments)

‎src/main/resources/jnlua/selene/parser.lua

+9-5
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,9 @@ local function findForeach(tokens, i, part, line)
350350
local step = i - 1
351351
local params = {}
352352
while not start do
353-
if tokens[step][1] == "for" then
353+
if not tokens[step] then
354+
return false
355+
elseif tokens[step][1] == "for" then
354356
start = step + 1
355357
else
356358
table.insert(params, 1, tokens[step][1])
@@ -362,7 +364,9 @@ local function findForeach(tokens, i, part, line)
362364
local stop
363365
local vars = {}
364366
while not stop do
365-
if tokens[step][1] == "do" then
367+
if not tokens[step] then
368+
return false
369+
elseif tokens[step][1] == "do" then
366370
stop = step - 1
367371
else
368372
vars[#vars + 1] = tokens[step][1]
@@ -525,8 +529,8 @@ local function parse(chunk, stripcomments)
525529
while i <= #tokens do
526530
local part = tokens[i][1]
527531
if keywords[part] then
528-
if not tokens[i + 1] then tokens[i + 1] = {""} end
529-
if not tokens[i - 1] then tokens[i - 1] = {""} end
532+
if not tokens[i + 1] then tokens[i + 1] = {"", tokens[i][2], false} end
533+
if not tokens[i - 1] then tokens[i - 1] = {"", tokens[i][2], false} end
530534
local start, stop = keywords[part](tokens, i, part, tokens[i][2], stripcomments)
531535
if start then
532536
chunk = nil
@@ -569,4 +573,4 @@ function selenep.setTimeoutHandler(func, time, timefunc)
569573
timeout.time = timefunc
570574
end
571575

572-
return selenep
576+
return selenep

0 commit comments

Comments
 (0)
Please sign in to comment.