1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
-- Copyright (c) 2014-2017 Piotr Orzechowski [drzewo.org]. See LICENSE.
-- Xtend LPeg lexer.
local l = require('lexer')
local token, word_match = l.token, l.word_match
local P, R, S = lpeg.P, lpeg.R, lpeg.S
local M = {_NAME = 'xtend'}
-- Whitespace.
local ws = token(l.WHITESPACE, l.space^1)
-- Comments.
local line_comment = '//' * l.nonnewline_esc^0
local block_comment = '/*' * (l.any - '*/')^0 * P('*/')^-1
local comment = token(l.COMMENT, line_comment + block_comment)
-- Strings.
local sq_str = l.delimited_range("'", true)
local dq_str = l.delimited_range('"', true)
local string = token(l.STRING, sq_str + dq_str)
-- Templates.
local templ_str = "'''" * (l.any - P("'''"))^0 * P("'''")^-1
local template = token('template', templ_str, true)
-- Numbers.
local small_suff = S('lL')
local med_suff = P(S('bB') * S('iI'))
local large_suff = S('dD') + S('fF') + P(S('bB') * S('dD'))
local exp = S('eE') * l.digit^1
local dec_inf = ('_' * l.digit^1)^0
local hex_inf = ('_' * l.xdigit^1)^0
local float_pref = l.digit^1 * '.' * l.digit^1
local float_suff = exp^-1 * med_suff^-1 * large_suff^-1
local dec = l.digit * dec_inf * (small_suff^-1 + float_suff)
local hex = l.hex_num * hex_inf * P('#' * (small_suff + med_suff))^-1
local float = float_pref * dec_inf * float_suff
local number = token(l.NUMBER, float + hex + dec)
-- Keywords.
local keyword = token(l.KEYWORD, word_match{
-- General.
'abstract', 'annotation', 'as', 'case', 'catch', 'class', 'create', 'def',
'default', 'dispatch', 'do', 'else', 'enum', 'extends', 'extension', 'final',
'finally', 'for', 'if', 'implements', 'import', 'interface', 'instanceof',
'it', 'new', 'override', 'package', 'private', 'protected', 'public',
'return', 'self', 'static', 'super', 'switch', 'synchronized', 'this',
'throw', 'throws', 'try', 'typeof', 'val', 'var', 'while',
-- Templates.
-- 'AFTER', 'BEFORE', 'ENDFOR', 'ENDIF', 'FOR', 'IF', 'SEPARATOR',
-- Literals.
'true', 'false', 'null'
})
-- Types.
local type = token(l.TYPE, word_match{
'boolean', 'byte', 'char', 'double', 'float', 'int', 'long', 'short', 'void',
'Boolean', 'Byte', 'Character', 'Double', 'Float', 'Integer', 'Long', 'Short',
'String'
})
-- Identifiers.
local identifier = token(l.IDENTIFIER, l.word)
-- Operators.
local operator = token(l.OPERATOR, S('+-/*%<>!=^&|?~:;.()[]{}#'))
-- Annotations.
local annotation = token('annotation', '@' * l.word)
-- Functions.
local func = token(l.FUNCTION, l.word) * #P('(')
-- Classes.
local class = token(l.KEYWORD, P('class')) * ws^1 * token(l.CLASS, l.word)
-- Rules.
M._rules = {
{'whitespace', ws},
{'class', class},
{'keyword', keyword},
{'type', type},
{'function', func},
{'identifier', identifier},
{'template', template},
{'string', string},
{'comment', comment},
{'number', number},
{'annotation', annotation},
{'operator', operator},
{'error', token(l.ERROR, l.any)},
}
-- Token styles.
M._tokenstyles = {
annotation = l.STYLE_PREPROCESSOR,
template = l.STYLE_EMBEDDED
}
-- Folding.
M._foldsymbols = {
_patterns = {'[{}]', '/%*', '%*/', '//', 'import'},
[l.OPERATOR] = {['{'] = 1, ['}'] = -1},
[l.COMMENT] = {['/*'] = 1, ['*/'] = -1, ['//'] = l.fold_line_comments('//')},
[l.KEYWORD] = {['import'] = l.fold_line_comments('import')}
}
return M
|