aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlua/actionscript.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lexlua/actionscript.lua')
-rw-r--r--lexlua/actionscript.lua13
1 files changed, 6 insertions, 7 deletions
diff --git a/lexlua/actionscript.lua b/lexlua/actionscript.lua
index 69dcc80fc..401ae77c0 100644
--- a/lexlua/actionscript.lua
+++ b/lexlua/actionscript.lua
@@ -33,19 +33,18 @@ lex:add_rule('type', token(lexer.TYPE, word_match[[
lex:add_rule('identifier', token(lexer.IDENTIFIER, lexer.word))
-- Strings.
-local sq_str = lexer.delimited_range("'", true)
-local dq_str = lexer.delimited_range('"', true)
-local ml_str = '<![CDATA[' * (lexer.any - ']]>')^0 * ']]>'
+local sq_str = lexer.range("'", true)
+local dq_str = lexer.range('"', true)
+local ml_str = lexer.range('<![CDATA[', ']]>')
lex:add_rule('string', token(lexer.STRING, sq_str + dq_str + ml_str))
-- 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.
-lex:add_rule('number', token(lexer.NUMBER, (lexer.float + lexer.integer) *
- S('LlUuFf')^-2))
+lex:add_rule('number', token(lexer.NUMBER, lexer.number * S('LlUuFf')^-2))
-- Operators.
lex:add_rule('operator', token(lexer.OPERATOR, S('=!<>+-/*%&|^~.,;?()[]{}')))