(Created page with "-- Imported from: https://runescape.wiki/w/Module:Module%20toc -- <nowiki> local p = {} local function getNewlineLocations( content ) local locs = {} local pos = 0 repeat pos = mw.ustring.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...") |
m (1 revision imported) |
(No difference)
|
Latest revision as of 17:27, 28 March 2024
This documentation is transcluded from Module:Module toc/doc. Changes can be proposed in the talk page.
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 6 — getNewlineLocations L 18 — findLineNumber L 34 — getFunctionLocations L 59 — p.main L 74 — 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 -- <nowiki> local p = {} local function getNewlineLocations( content ) local locs = {} local pos = 0 repeat pos = mw.ustring.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 = mw.ustring.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 = mw.ustring.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 = mw.ustring.gsub( title.text, '/[Dd]oc$', '' ) if not title:inNamespaces( 828 ) then return '' end local fullModuleName = mw.ustring.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 mw.ustring.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, mw.ustring.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 -- </nowiki>