aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlua/matlab.lua
diff options
context:
space:
mode:
authormitchell <unknown>2020-04-25 16:26:31 -0400
committermitchell <unknown>2020-04-25 16:26:31 -0400
commitfad15f79b1230b3076be515d6894c8919562809b (patch)
tree72c848ef02c3331de5ca54eff7adaea3a9a6fb88 /lexlua/matlab.lua
parent1fd02a367dec125c0b49dd9246a0928433866b96 (diff)
downloadscintilla-mirror-fad15f79b1230b3076be515d6894c8919562809b.tar.gz
Reformatted Lua LPeg lexers and added new convenience functions and pattern.
`lexer.range()` replaces `lexer.delimited_range()` and `lexer.nested_pair()`. `lexer.to_eol()` replaces `patt * lexer.nonnewline^0` constructs. `lexer.number` replaces `lexer.float + lexer.integer`. Also added unit tests for lexer functions.
Diffstat (limited to 'lexlua/matlab.lua')
-rw-r--r--lexlua/matlab.lua17
1 files changed, 8 insertions, 9 deletions
diff --git a/lexlua/matlab.lua b/lexlua/matlab.lua
index d371ebc96..7800a421c 100644
--- a/lexlua/matlab.lua
+++ b/lexlua/matlab.lua
@@ -54,23 +54,22 @@ lex:add_rule('variable', token(lexer.VARIABLE, word_match[[
lex:add_rule('identifier', token(lexer.IDENTIFIER, lexer.word))
-- Strings.
-lex:add_rule('string', token(lexer.STRING, lexer.delimited_range("'", true) +
- lexer.delimited_range('"') +
- lexer.delimited_range('`')))
+local sq_str = lexer.range("'", true)
+local dq_str = lexer.range('"')
+local bq_str = lexer.range('`')
+lex:add_rule('string', token(lexer.STRING, sq_str + dq_str + bq_str))
-- Comments.
-local line_comment = (P('%') + '#') * lexer.nonnewline^0
-local block_comment = '%{' * (lexer.any - '%}')^0 * P('%}')^-1
+local line_comment = lexer.to_eol(P('%') + '#')
+local block_comment = lexer.range('%{', '%}')
lex:add_rule('comment', token(lexer.COMMENT, block_comment + line_comment))
-- Numbers.
-lex:add_rule('number', token(lexer.NUMBER, lexer.float + lexer.integer +
- lexer.dec_num + lexer.hex_num +
- lexer.oct_num))
+lex:add_rule('number', token(lexer.NUMBER, lexer.number))
-- Operators.
lex:add_rule('operator', token(lexer.OPERATOR,
- S('!%^&*()[]{}-=+/\\|:;.,?<>~`´')))
+ S('!%^&*()[]{}-=+/\\|:;.,?<>~`´')))
-- Fold points.
lex:add_fold_point(lexer.KEYWORD, 'if', 'end')