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

Unified Diff: src/scanner.h

Issue 160073006: Implement handling of arrow functions in the parser (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Removed ParamListFinder Created 6 years, 6 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
Index: src/scanner.h
diff --git a/src/scanner.h b/src/scanner.h
index 8fee1b19595f3a3d54ba1d334fd2a7e56317ade6..b0838be7d040375e13a8bec2c9490e4293da8fe8 100644
--- a/src/scanner.h
+++ b/src/scanner.h
@@ -451,6 +451,8 @@ class Scanner {
// be empty).
bool ScanRegExpFlags();
+ bool IdentifierIsFutureStrictReserved(const AstRawString* string) const;
+
private:
// The current and look-ahead token.
struct TokenDesc {
@@ -634,6 +636,7 @@ class Scanner {
bool harmony_numeric_literals_;
};
+
} } // namespace v8::internal
#endif // V8_SCANNER_H_

Powered by Google App Engine
This is Rietveld 408576698