diff options
author | mitchell <unknown> | 2020-04-25 16:26:31 -0400 |
---|---|---|
committer | mitchell <unknown> | 2020-04-25 16:26:31 -0400 |
commit | fad15f79b1230b3076be515d6894c8919562809b (patch) | |
tree | 72c848ef02c3331de5ca54eff7adaea3a9a6fb88 /lexlua/verilog.lua | |
parent | 1fd02a367dec125c0b49dd9246a0928433866b96 (diff) | |
download | scintilla-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/verilog.lua')
-rw-r--r-- | lexlua/verilog.lua | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lexlua/verilog.lua b/lexlua/verilog.lua index efae1ebbd..e3b5bf454 100644 --- a/lexlua/verilog.lua +++ b/lexlua/verilog.lua @@ -46,11 +46,11 @@ lex:add_rule('type', token(lexer.TYPE, word_match[[ lex:add_rule('identifier', token(lexer.IDENTIFIER, lexer.word)) -- Strings. -lex:add_rule('string', token(lexer.STRING, lexer.delimited_range('"'))) +lex:add_rule('string', token(lexer.STRING, lexer.range('"'))) -- Comments. -local line_comment = '//' * lexer.nonnewline^0 -local block_comment = '/*' * (lexer.any - '*/')^0 * P('*/')^-1 +local line_comment = lexer.to_eol('//') +local block_comment = lexer.range('/*', '*/') lex:add_rule('comment', token(lexer.COMMENT, line_comment + block_comment)) -- Numbers. @@ -58,9 +58,8 @@ local bin_suffix = S('bB') * S('01_xXzZ')^1 local oct_suffix = S('oO') * S('01234567_xXzZ')^1 local dec_suffix = S('dD') * S('0123456789_xXzZ')^1 local hex_suffix = S('hH') * S('0123456789abcdefABCDEF_xXzZ')^1 -lex:add_rule('number', token(lexer.NUMBER, (lexer.digit + '_')^1 + - "'" * (bin_suffix + oct_suffix + - dec_suffix + hex_suffix))) +lex:add_rule('number', token(lexer.NUMBER, (lexer.digit + '_')^1 + "'" * + (bin_suffix + oct_suffix + dec_suffix + hex_suffix))) -- Operators. lex:add_rule('operator', token(lexer.OPERATOR, S('=~+-/*<>%&|^~,:;()[]{}'))) |