diff options
| author | mitchell <unknown> | 2020-07-14 10:09:33 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2020-07-14 10:09:33 -0400 |
| commit | a4a5a6907acf6361618a8aa723a4bacc489f270a (patch) | |
| tree | d1a946fe3d01eb3403bd602ee06a241f4089426d /lexlua/pure.lua | |
| parent | 6dcfbc6a747c0a20e21b53ef0a780bc0ad24da05 (diff) | |
| download | scintilla-mirror-a4a5a6907acf6361618a8aa723a4bacc489f270a.tar.gz | |
lexlua: Minor pattern refactoring.
Diffstat (limited to 'lexlua/pure.lua')
| -rw-r--r-- | lexlua/pure.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lexlua/pure.lua b/lexlua/pure.lua index 5e8f04aa9..6905f4d5d 100644 --- a/lexlua/pure.lua +++ b/lexlua/pure.lua @@ -3,7 +3,7 @@ local lexer = require('lexer') local token, word_match = lexer.token, lexer.word_match -local P, R, S = lpeg.P, lpeg.R, lpeg.S +local P, S = lpeg.P, lpeg.S local lex = lexer.new('pure') @@ -28,8 +28,8 @@ lex:add_rule('keyword', token(lexer.KEYWORD, word_match[[ -- Numbers. local bin = '0' * S('Bb') * S('01')^1 -local hex = '0' * S('Xx') * (R('09') + R('af') + R('AF'))^1 -local dec = R('09')^1 +local hex = lexer.hex_num +local dec = lexer.dec_num local int = (bin + hex + dec) * P('L')^-1 local rad = P('.') - '..' local exp = (S('Ee') * S('+-')^-1 * int)^-1 |
