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

Unified Diff: src/lexer/lexer_py.re

Issue 59903027: Experimental parser: more escaping (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/regex_lexer.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 4d03a129cdc78c555feff8e2ef757c6e2c64d1c1..317e24d6797b34789dd062d6bb48bd948907b0ae 100644
--- a/src/lexer/lexer_py.re
+++ b/src/lexer/lexer_py.re
@@ -194,7 +194,7 @@ catch_all <<continue>>
<MultiLineComment>
"*/" <<skip>>
-/\*[^\057]/ <<continue>>
+/\*[^\/]/ <<continue>>
line_terminator { PUSH_LINE_TERMINATOR(); } <<continue>>
catch_all <<continue>>
« no previous file with comments | « no previous file | tools/lexer_generator/regex_lexer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698