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

Unified Diff: src/lexer/lexer_py.re

Issue 171713005: Experimental parser: add backtracking (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 6 years, 10 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 | tools/gyp/v8.gyp » ('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 9ecc269f9d597421259409f76132a67b6d1848d7..ac4da01a06060c37556e3717d035035cec689d51 100644
--- a/src/lexer/lexer_py.re
+++ b/src/lexer/lexer_py.re
@@ -90,8 +90,6 @@ line_terminator_sequence = /[:line_terminator:]|(\r\n|\n\r)/;
"/*" <set_marker(2)||MultiLineComment>
"<!--" <||SingleLineComment>
-"<!-" <|backtrack(2, LT)|>
-"<!" <|backtrack(1, LT)|>
"-->" <if_line_terminator_backtrack(1, DEC)||SingleLineComment>
">>>=" <|token(ASSIGN_SHR)|>
« no previous file with comments | « no previous file | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698