Codebase list lua-ldoc / 1dfcf2e
Handle failure to parse module call Peter Melnichenko 7 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
245245 --return nil
246246 else
247247 mod,t,v = lang:parse_module_call(tok,t,v)
248 if mod ~= '...' then
248 if mod and mod ~= '...' then
249249 add_module(Tags.new{summary='(no description)'},mod,true)
250250 first_comment = false
251251 module_found = true