Skip to content

Commit dc612f5

Browse files
authored
fix: Return original inputs in find_module if search_for_token fails (#396)
1 parent 7bdcb29 commit dc612f5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

ldoc/lang.lua

+5-2
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,12 @@ end
111111
-- that we must infer the module name.
112112
function Lua:find_module(tok,t,v)
113113
local res
114-
res,t,v = self:search_for_token(tok,'iden','module',t,v)
114+
-- st and sv are temporaries, which exist to ensure that `t` and `v`
115+
-- are not clobbered if `res` is false-y.
116+
local st, sv
117+
res,st,sv = self:search_for_token(tok,'iden','module',t,v)
115118
if not res then return nil,t,v end
116-
return self:parse_module_call(tok,t,v)
119+
return self:parse_module_call(tok,st,sv)
117120
end
118121

119122
local function parse_lua_parameters (tags,tok)

0 commit comments

Comments
 (0)