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

Unified Diff: src/parsing/preparser.cc

Issue 1850663002: Add parsing for class declarations (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@types-1839393002-aliases
Patch Set: Add more tests Created 4 years, 8 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 | « src/parsing/parser-base.h ('k') | test/cctest/test-parsing.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/preparser.cc
diff --git a/src/parsing/preparser.cc b/src/parsing/preparser.cc
index 51d7f50ec6592d6b6d0c280ec024b92986bed047..fd125e8919a04642a21b5a128cb956bc75a77c1e 100644
--- a/src/parsing/preparser.cc
+++ b/src/parsing/preparser.cc
@@ -1138,6 +1138,12 @@ PreParserExpression PreParser::ParseClassLiteral(
// TODO(marja): Make PreParser use scope names too.
// scope_->SetScopeName(name);
+ // Parse optional type parameters.
+ if (scope_->typed() && peek() == Token::LT) { // Braces required here.
+ ParseTypeParameters(CHECK_OK);
+ }
+
+ // Parse optional extends clause.
bool has_extends = Check(Token::EXTENDS);
if (has_extends) {
ExpressionClassifier classifier(this);
@@ -1145,6 +1151,13 @@ PreParserExpression PreParser::ParseClassLiteral(
ValidateExpression(&classifier, CHECK_OK);
}
+ // Parse optional implements clause.
+ if (scope_->typed() && CheckContextualKeyword(CStrVector("implements"))) {
+ do {
+ ParseTypeReference(CHECK_OK);
+ } while (Check(Token::COMMA));
+ }
+
ClassLiteralChecker checker(this);
bool has_seen_constructor = false;
« no previous file with comments | « src/parsing/parser-base.h ('k') | test/cctest/test-parsing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698