From 8dd3115f622c1093c5b7b2a20efaa174c998c861 Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 30 Dec 2008 23:04:58 +0000 Subject: [PATCH] fixed multiline comments --- lib/as3/tokenizer.lex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/as3/tokenizer.lex b/lib/as3/tokenizer.lex index 85513d5..cd20485 100644 --- a/lib/as3/tokenizer.lex +++ b/lib/as3/tokenizer.lex @@ -240,7 +240,7 @@ NUMBER -?[0-9]+(\.[0-9]*)? STRING ["](\\[\x00-\xff]|[^\\"\n])*["]|['](\\[\x00-\xff]|[^\\'\n])*['] S [ \n\r\t] -MULTILINE_COMMENT [/][*]+([*][^/]|[^/*]|[\x00-\x1f])*[*]+[/] +MULTILINE_COMMENT [/][*]+([*][^/]|[^/*]|[^*][/]|[\x00-\x1f])*[*]+[/] SINGLELINE_COMMENT \/\/[^\n]*\n REGEXP [/]([^/\n]|\\[/])*[/][a-zA-Z]* %% -- 1.7.10.4