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

Unified Diff: src/lexer/lexer_py.re

Issue 70103016: Experimental parser: small cleanup (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years, 1 month 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 | tools/lexer_generator/automaton.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lexer/lexer_py.re
diff --git a/src/lexer/lexer_py.re b/src/lexer/lexer_py.re
index ee383b502161b7d3c2c75447e7ec2e87dedeebc4..b18399a73e7f3ad0f383a8fc2c2bc50eda785a01 100644
--- a/src/lexer/lexer_py.re
+++ b/src/lexer/lexer_py.re
@@ -208,7 +208,7 @@ catch_all <||continue>
"*/" <|skip|>
# TODO find a way to generate the below rule
/\*[^\/]/ <||continue>
-line_terminator <|push_line_terminator|continue>
+line_terminator <push_line_terminator||continue>
catch_all <||continue>
<<HtmlComment>>
@@ -216,5 +216,5 @@ catch_all <||continue>
# TODO find a way to generate the below rules
/--./ <||continue>
/-./ <||continue>
-line_terminator <|push_line_terminator|continue>
+line_terminator <push_line_terminator||continue>
catch_all <||continue>
« no previous file with comments | « no previous file | tools/lexer_generator/automaton.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698