Reviewers: marja, ulan,

Message:
Committed patchset #1 manually as r17212 (presubmit successful).

Description:
Experimental push model parser: Regexp fix.

BUG=
[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=17212

Please review this at https://codereview.chromium.org/26183005/

SVN Base: https://v8.googlecode.com/svn/branches/experimental/parser

Affected files (+2, -2 lines):
  M src/lexer/lexer.re


Index: src/lexer/lexer.re
diff --git a/src/lexer/lexer.re b/src/lexer/lexer.re
index da431c554e447170b3027cf8ed8f754b356c0474..6cdeca76ebab04660471b299b042b54510a5e527 100644
--- a/src/lexer/lexer.re
+++ b/src/lexer/lexer.re
@@ -169,8 +169,8 @@ public:
     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.

Reply via email to