aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/lua.lua
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-08-11 01:27:32 +0200
committerRandy Palamar <randy@rnpnr.xyz>2024-03-27 06:04:21 -0600
commit4c4392d29df777ff702dfe99b4f3c23142976e05 (patch)
tree5355324abe18952f7d19d6cfc5dbeb5d6cb72b84 /lua/lexers/lua.lua
parent95bf9f59f8a9a37148bdc0787db378d62c7cd032 (diff)
downloadvis-4c4392d29df777ff702dfe99b4f3c23142976e05.tar.gz
vis-4c4392d29df777ff702dfe99b4f3c23142976e05.tar.xz
update lexers to orbitalquark/scintillua@b789dde
Rather than cherry pick patches from after 6.2 we will just grab everything as is.
Diffstat (limited to 'lua/lexers/lua.lua')
-rw-r--r--lua/lexers/lua.lua206
1 files changed, 91 insertions, 115 deletions
diff --git a/lua/lexers/lua.lua b/lua/lexers/lua.lua
index 03c37e0..ff749ec 100644
--- a/lua/lexers/lua.lua
+++ b/lua/lexers/lua.lua
@@ -1,118 +1,32 @@
--- Copyright 2006-2022 Mitchell. See LICENSE.
+-- Copyright 2006-2024 Mitchell. See LICENSE.
-- Lua LPeg lexer.
-- Original written by Peter Odding, 2007/04/04.
-local lexer = require('lexer')
-local token, word_match = lexer.token, lexer.word_match
+local lexer = lexer
local B, P, S = lpeg.B, lpeg.P, lpeg.S
-local lex = lexer.new('lua')
-
--- Whitespace.
-lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1))
+local lex = lexer.new(...)
-- Keywords.
-lex:add_rule('keyword', token(lexer.KEYWORD, word_match{
- 'and', 'break', 'do', 'else', 'elseif', 'end', 'false', 'for', 'function', 'if', 'in', 'local',
- 'nil', 'not', 'or', 'repeat', 'return', 'then', 'true', 'until', 'while',
- -- Added in 5.2.
- 'goto'
-}))
-
--- Functions and deprecated functions.
-local func = token(lexer.FUNCTION, word_match{
- 'assert', 'collectgarbage', 'dofile', 'error', 'getmetatable', 'ipairs', 'load', 'loadfile',
- 'next', 'pairs', 'pcall', 'print', 'rawequal', 'rawget', 'rawset', 'require', 'select',
- 'setmetatable', 'tonumber', 'tostring', 'type', 'xpcall',
- -- Added in 5.2.
- 'rawlen',
- -- Added in 5.4.
- 'warn'
-})
-local deprecated_func = token('deprecated_function', word_match{
- -- Deprecated in 5.2.
- 'getfenv', 'loadstring', 'module', 'setfenv', 'unpack'
-})
-lex:add_rule('function', -B('.') * (func + deprecated_func))
-lex:add_style('deprecated_function', lexer.styles['function'] .. {italics = true})
+lex:add_rule('keyword', lex:tag(lexer.KEYWORD, lex:word_match(lexer.KEYWORD)))
+
+-- Functions.
+local non_field = -B('.') + B('_G.') + B('..')
+local builtin_func = lex:word_match(lexer.FUNCTION_BUILTIN)
+local lib_func = lex:word_match(lexer.FUNCTION_BUILTIN .. '.library')
+local func = lex:tag(lexer.FUNCTION, lexer.word)
+local method = B(':') * lex:tag(lexer.FUNCTION_METHOD, lexer.word)
+lex:add_rule('function',
+ method + ((non_field * lex:tag(lexer.FUNCTION_BUILTIN, builtin_func + lib_func)) + func) *
+ #(lexer.space^0 * S('({\'"')))
-- Constants.
-lex:add_rule('constant', token(lexer.CONSTANT, -B('.') * word_match{
- '_G', '_VERSION',
- -- Added in 5.2.
- '_ENV'
-}))
-
--- Libraries and deprecated libraries.
-local library = token('library', word_match{
- -- Coroutine.
- 'coroutine', 'coroutine.create', 'coroutine.resume', 'coroutine.running', 'coroutine.status',
- 'coroutine.wrap', 'coroutine.yield',
- -- Coroutine added in 5.3.
- 'coroutine.isyieldable',
- -- Coroutine added in 5.4.
- 'coroutine.close',
- -- Module.
- 'package', 'package.cpath', 'package.loaded', 'package.loadlib', 'package.path',
- 'package.preload',
- -- Module added in 5.2.
- 'package.config', 'package.searchers', 'package.searchpath',
- -- UTF-8 added in 5.3.
- 'utf8', 'utf8.char', 'utf8.charpattern', 'utf8.codepoint', 'utf8.codes', 'utf8.len',
- 'utf8.offset',
- -- String.
- 'string', 'string.byte', 'string.char', 'string.dump', 'string.find', 'string.format',
- 'string.gmatch', 'string.gsub', 'string.len', 'string.lower', 'string.match', 'string.rep',
- 'string.reverse', 'string.sub', 'string.upper',
- -- String added in 5.3.
- 'string.pack', 'string.packsize', 'string.unpack',
- -- Table.
- 'table', 'table.concat', 'table.insert', 'table.remove', 'table.sort',
- -- Table added in 5.2.
- 'table.pack', 'table.unpack',
- -- Table added in 5.3.
- 'table.move',
- -- Math.
- 'math', 'math.abs', 'math.acos', 'math.asin', 'math.atan', 'math.ceil', 'math.cos', 'math.deg',
- 'math.exp', 'math.floor', 'math.fmod', 'math.huge', 'math.log', 'math.max', 'math.min',
- 'math.modf', 'math.pi', 'math.rad', 'math.random', 'math.randomseed', 'math.sin', 'math.sqrt',
- 'math.tan',
- -- Math added in 5.3.
- 'math.maxinteger', 'math.mininteger', 'math.tointeger', 'math.type', 'math.ult',
- -- IO.
- 'io', 'io.close', 'io.flush', 'io.input', 'io.lines', 'io.open', 'io.output', 'io.popen',
- 'io.read', 'io.stderr', 'io.stdin', 'io.stdout', 'io.tmpfile', 'io.type', 'io.write',
- -- OS.
- 'os', 'os.clock', 'os.date', 'os.difftime', 'os.execute', 'os.exit', 'os.getenv', 'os.remove',
- 'os.rename', 'os.setlocale', 'os.time', 'os.tmpname',
- -- Debug.
- 'debug', 'debug.debug', 'debug.gethook', 'debug.getinfo', 'debug.getlocal', 'debug.getmetatable',
- 'debug.getregistry', 'debug.getupvalue', 'debug.sethook', 'debug.setlocal', 'debug.setmetatable',
- 'debug.setupvalue', 'debug.traceback',
- -- Debug added in 5.2.
- 'debug.getuservalue', 'debug.setuservalue', 'debug.upvalueid', 'debug.upvaluejoin'
-})
-local deprecated_library = token('deprecated_library', word_match{
- -- Module deprecated in 5.2.
- 'package.loaders', 'package.seeall',
- -- Table deprecated in 5.2.
- 'table.maxn',
- -- Math deprecated in 5.2.
- 'math.log10',
- -- Math deprecated in 5.3.
- 'math.atan2', 'math.cosh', 'math.frexp', 'math.ldexp', 'math.pow', 'math.sinh', 'math.tanh',
- -- Bit32 deprecated in 5.3.
- 'bit32', 'bit32.arshift', 'bit32.band', 'bit32.bnot', 'bit32.bor', 'bit32.btest', 'bit32.extract',
- 'bit32.lrotate', 'bit32.lshift', 'bit32.replace', 'bit32.rrotate', 'bit32.rshift', 'bit32.xor',
- -- Debug deprecated in 5.2.
- 'debug.getfenv', 'debug.setfenv'
-})
-lex:add_rule('library', -B('.') * (library + deprecated_library))
-lex:add_style('library', lexer.styles.type)
-lex:add_style('deprecated_library', lexer.styles.type .. {italics = true})
+local builtin_const = lex:word_match(lexer.CONSTANT_BUILTIN)
+local lib_const = lex:word_match(lexer.CONSTANT_BUILTIN .. '.library')
+lex:add_rule('constant', non_field * lex:tag(lexer.CONSTANT_BUILTIN, builtin_const + lib_const))
-- Identifiers.
-lex:add_rule('identifier', token(lexer.IDENTIFIER, lexer.word))
+lex:add_rule('identifier', lex:tag(lexer.IDENTIFIER, lexer.word))
-- Strings.
local sq_str = lexer.range("'")
@@ -121,28 +35,27 @@ local longstring = lpeg.Cmt('[' * lpeg.C(P('=')^0) * '[', function(input, index,
local _, e = input:find(']' .. eq .. ']', index, true)
return (e or #input) + 1
end)
-lex:add_rule('string', token(lexer.STRING, sq_str + dq_str) + token('longstring', longstring))
-lex:add_style('longstring', lexer.styles.string)
+lex:add_rule('string', lex:tag(lexer.STRING, sq_str + dq_str) +
+ lex:tag(lexer.STRING .. '.longstring', longstring))
-- Comments.
local line_comment = lexer.to_eol('--')
local block_comment = '--' * longstring
-lex:add_rule('comment', token(lexer.COMMENT, block_comment + line_comment))
+lex:add_rule('comment', lex:tag(lexer.COMMENT, block_comment + line_comment))
-- Numbers.
local lua_integer = P('-')^-1 * (lexer.hex_num + lexer.dec_num)
-lex:add_rule('number', token(lexer.NUMBER, lexer.float + lua_integer))
+lex:add_rule('number', lex:tag(lexer.NUMBER, lexer.float + lua_integer))
-- Labels.
-lex:add_rule('label', token(lexer.LABEL, '::' * lexer.word * '::'))
+lex:add_rule('label', lex:tag(lexer.LABEL, '::' * lexer.word * '::'))
-- Attributes.
-lex:add_rule('attribute', token('attribute', '<' * lexer.space^0 * word_match('const close') *
- lexer.space^0 * '>'))
-lex:add_style('attribute', lexer.styles.class)
+lex:add_rule('attribute', lex:tag(lexer.ATTRIBUTE, '<' * lexer.space^0 *
+ lexer.word_match('const close') * lexer.space^0 * '>'))
-- Operators.
-lex:add_rule('operator', token(lexer.OPERATOR, '..' + S('+-*/%^#=<>&|~;:,.{}[]()')))
+lex:add_rule('operator', lex:tag(lexer.OPERATOR, '..' + S('+-*/%^#=<>&|~;:,.{}[]()')))
-- Fold points.
local function fold_longcomment(text, pos, line, s, symbol)
@@ -159,10 +72,73 @@ lex:add_fold_point(lexer.KEYWORD, 'function', 'end')
lex:add_fold_point(lexer.KEYWORD, 'repeat', 'until')
lex:add_fold_point(lexer.COMMENT, '[', fold_longcomment)
lex:add_fold_point(lexer.COMMENT, ']', fold_longcomment)
-lex:add_fold_point(lexer.COMMENT, lexer.fold_consecutive_lines('--'))
-lex:add_fold_point('longstring', '[', ']')
+lex:add_fold_point(lexer.FUNCTION .. '.longstring', '[', ']')
lex:add_fold_point(lexer.OPERATOR, '(', ')')
lex:add_fold_point(lexer.OPERATOR, '[', ']')
lex:add_fold_point(lexer.OPERATOR, '{', '}')
+-- Word lists.
+lex:set_word_list(lexer.KEYWORD, {
+ 'and', 'break', 'do', 'else', 'elseif', 'end', 'false', 'for', 'function', 'if', 'in', 'local',
+ 'or', 'nil', 'not', 'repeat', 'return', 'then', 'true', 'until', 'while', --
+ 'goto' -- 5.2
+})
+
+lex:set_word_list(lexer.FUNCTION_BUILTIN, {
+ 'assert', 'collectgarbage', 'dofile', 'error', 'getmetatable', 'ipairs', 'load', 'loadfile',
+ 'next', 'pairs', 'pcall', 'print', 'rawequal', 'rawget', 'rawset', 'require', 'select',
+ 'setmetatable', 'tonumber', 'tostring', 'type', 'xpcall', --
+ 'rawlen', -- 5.2
+ 'warn' -- 5.4
+})
+
+lex:set_word_list(lexer.FUNCTION_BUILTIN .. '.library', {
+ 'coroutine.create', 'coroutine.resume', 'coroutine.running', 'coroutine.status', 'coroutine.wrap',
+ 'coroutine.yield', --
+ 'coroutine.isyieldable', -- 5.3
+ 'coroutine.close', -- 5.4
+ 'package.loadlib', --
+ 'package.searchpath', -- 5.2
+ 'utf8.char', 'utf8.codepoint', 'utf8.codes', 'utf8.len', 'utf8.offset', -- 5.3
+ 'string.byte', 'string.char', 'string.dump', 'string.find', 'string.format', 'string.gmatch',
+ 'string.gsub', 'string.len', 'string.lower', 'string.match', 'string.rep', 'string.reverse',
+ 'string.sub', 'string.upper', --
+ 'string.pack', 'string.packsize', 'string.unpack', -- 5.3
+ 'table.concat', 'table.insert', 'table.remove', 'table.sort', --
+ 'table.pack', 'table.unpack', -- 5.2
+ 'table.move', -- 5.3
+ 'math.abs', 'math.acos', 'math.asin', 'math.atan', 'math.ceil', 'math.cos', 'math.deg',
+ 'math.exp', 'math.floor', 'math.fmod', 'math.log', 'math.max', 'math.min', 'math.modf',
+ 'math.rad', 'math.random', 'math.randomseed', 'math.sin', 'math.sqrt', 'math.tan', --
+ 'math.tointeger', 'math.type', 'math.ult', -- 5.3
+ 'io.close', 'io.flush', 'io.input', 'io.lines', 'io.open', 'io.output', 'io.popen', 'io.read',
+ 'io.tmpfile', 'io.type', 'io.write', --
+ 'os.clock', 'os.date', 'os.difftime', 'os.execute', 'os.exit', 'os.getenv', 'os.remove',
+ 'os.rename', 'os.setlocale', 'os.time', 'os.tmpname', --
+ 'debug', 'debug.debug', 'debug.gethook', 'debug.getinfo', 'debug.getlocal', 'debug.getmetatable',
+ 'debug.getregistry', 'debug.getupvalue', 'debug.sethook', 'debug.setlocal', 'debug.setmetatable',
+ 'debug.setupvalue', 'debug.traceback', --
+ 'debug.getuservalue', 'debug.setuservalue', 'debug.upvalueid', 'debug.upvaluejoin' -- 5.2
+})
+
+lex:set_word_list(lexer.CONSTANT_BUILTIN, {
+ '_G', '_VERSION', --
+ '_ENV' -- 5.2
+})
+
+lex:set_word_list(lexer.CONSTANT_BUILTIN .. '.library', {
+ 'coroutine', --
+ 'package', 'package.cpath', 'package.loaded', 'package.path', 'package.preload', --
+ 'package.config', 'package.searchers', -- 5.2
+ 'utf8', 'utf8.charpattern', -- 5.3
+ 'string', --
+ 'table', --
+ 'math', 'math.huge', 'math.pi', --
+ 'math.maxinteger', 'math.mininteger', -- 5.3
+ 'io', 'io.stderr', 'io.stdin', 'io.stdout', --
+ 'os'
+})
+
+lexer.property['scintillua.comment'] = '--'
+
return lex