This documentation is transcluded from Module:Module toc/doc. Changes can be proposed in the talk page.
Module:Module toc is imported from Module:Module toc on StarCitizen.
This module is imported from StarCitizen. Although the visual appearance is similar, some functionality has been altered. Please refer to the Star Citizen page for detailed documentation.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Function list |
---|
L 5 — getNewlineLocations L 17 — findLineNumber L 33 — getFunctionLocations L 58 — p.main L 73 — substMutilineComment |
This module is used to generate a table of content consists of functions of a Lua module. See Module:Module toc on RuneScape Wiki for more details.
-- Imported from: https://runescape.wiki/w/Module:Module%20toc
local p = {}
local function getNewlineLocations( content )
local locs = {}
local pos = 0
repeat
pos = string.find( content, '\n', pos + 1, true )
table.insert( locs, pos )
until not pos
return locs
end
local function findLineNumber( pos, newLineLocs )
local max = #newLineLocs
local min = 1
repeat
local i = math.ceil( (max + min) / 2 )
if newLineLocs[i] < pos then
min = i
elseif newLineLocs[i] >= pos then
max = i
end
until newLineLocs[i] > pos and (newLineLocs[i - 1] or 0) < pos
return max
end
local function getFunctionLocations( content )
local locs = {}
local newLineLocs = getNewlineLocations( content )
local start = 0
repeat
local name
name, start = string.match( content, '%sfunction%s+([^%s%(]+)%s*%(()', start + 1 )
if start then
table.insert( locs, { name=name, line = findLineNumber( start, newLineLocs ) } )
end
until not start
start = 0
repeat
local name
name, start = string.match( content, '%s([^%s=])%s*=%s*function%s*%(()', start + 1 )
if start then
table.insert( locs, { name=name, line = findLineNumber( start, newLineLocs ) } )
end
until not start
return locs
end
function p.main()
local title = mw.title.getCurrentTitle()
local moduleName = string.gsub( title.text, '/[Dd]oc$', '' )
if not title:inNamespaces( 828 ) then
return ''
end
local fullModuleName = string.gsub( title.fullText, '/[Dd]oc$', '' )
local content = mw.title.new( fullModuleName ):getContent()
if not content then
return ''
end
local function substMutilineComment( match )
local lineCount = #getNewlineLocations( match )
return string.rep( '\n', lineCount ) or ''
end
content = content:gsub( '(%-%-%[(=-)%[.-%]%2%])', substMutilineComment ):gsub( '%-%-[^\n]*', '' ) -- Strip comments
local functionLocs = getFunctionLocations( content )
table.sort( functionLocs, function(lhs, rhs) return lhs.line < rhs.line end )
if #functionLocs == 0 then
return ''
end
local res = {}
for _, func in ipairs( functionLocs ) do
table.insert( res, string.format( 'L %d — [%s#L-%d %s]', func.line, title:fullUrl():gsub( '/[Dd]oc$', '' ), func.line, func.name ) )
end
local tbl = mw.html.create( 'table' ):addClass( 'wikitable mw-collapsible mw-collapsed' )
tbl:tag( 'tr' )
:tag( 'th' ):wikitext( 'Function list' ):done()
:tag( 'tr' )
:tag( 'td' ):wikitext( table.concat( res, '<br>' ) )
return tostring( tbl )
end
return p