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

Unified Diff: src/lexer/lexer_py.re

Issue 82543004: Experimental lexer generator: lexing regression fixes. (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 | « src/lexer/even-more-experimental-scanner.h ('k') | no next file » | 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 1b88868b65c7bcdf6538dc148618542f2527b701..794350accd962d97d62c4f3a9388ccacb3f3e754 100644
--- a/src/lexer/lexer_py.re
+++ b/src/lexer/lexer_py.re
@@ -152,7 +152,7 @@ line_terminator+ <|push_line_terminator|>
"do" <|push_token(DO)|>
"else" <|push_token(ELSE)|>
"enum" <|push_token(FUTURE_RESERVED_WORD)|>
-"export" <|push_harmony_token(modules, EXPORT, FUTURE_STRICT_RESERVED_WORD)|>
+"export" <|push_harmony_token(modules, EXPORT, FUTURE_RESERVED_WORD)|>
"extends" <|push_token(FUTURE_RESERVED_WORD)|>
"false" <|push_token(FALSE_LITERAL)|>
"finally" <|push_token(FINALLY)|>
@@ -160,7 +160,7 @@ line_terminator+ <|push_line_terminator|>
"function" <|push_token(FUNCTION)|>
"if" <|push_token(IF)|>
"implements" <|push_token(FUTURE_STRICT_RESERVED_WORD)|>
-"import" <|push_harmony_token(modules, IMPORT, FUTURE_STRICT_RESERVED_WORD)|>
+"import" <|push_harmony_token(modules, IMPORT, FUTURE_RESERVED_WORD)|>
"in" <|push_token(IN)|>
"instanceof" <|push_token(INSTANCEOF)|>
"interface" <|push_token(FUTURE_STRICT_RESERVED_WORD)|>
« no previous file with comments | « src/lexer/even-more-experimental-scanner.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698