Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: src/lexer/lexer.re

Issue 26183005: Experimental push model parser: Regexp fix. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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];
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698