Revision: 17212
Author: [email protected]
Date: Tue Oct 15 09:43:20 2013 UTC
Log: Experimental push model parser: Regexp fix.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/26183005
http://code.google.com/p/v8/source/detail?r=17212
Modified:
/branches/experimental/parser/src/lexer/lexer.re
=======================================
--- /branches/experimental/parser/src/lexer/lexer.re Tue Oct 15 09:23:22
2013 UTC
+++ /branches/experimental/parser/src/lexer/lexer.re Tue Oct 15 09:43:20
2013 UTC
@@ -169,8 +169,8 @@
any = [\000-\377];
whitespace_char = [ \t\v\f\r];
whitespace = whitespace_char+;
- identifier_start_ = [$_\\a-zA-z];
- identifier_char = [$_\\a-zA-z0-9];
+ identifier_start_ = [$_\\a-zA-Z];
+ identifier_char = [$_\\a-zA-Z0-9];
line_terminator = [\n\r]+;
digit = [0-9];
hex_digit = [0-9a-fA-F];
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.