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

Unified Diff: src/parsing/parser.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 | « no previous file | src/parsing/parser-base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/parser.cc
diff --git a/src/parsing/parser.cc b/src/parsing/parser.cc
index 8af7f22ae96ca7e6f56877059d616f1e959f428e..63fde1dc0770447577db296c756a1412787991cd 100644
--- a/src/parsing/parser.cc
+++ b/src/parsing/parser.cc
@@ -4849,16 +4849,46 @@ ClassLiteral* Parser::ParseClassLiteral(const AstRawString* name,
Declare(declaration, DeclarationDescriptor::NORMAL, true, CHECK_OK);
}
+ // Parse optional type parameters.
+ typename TypeSystem::TypeParameters type_parameters =
+ this->NullTypeParameters();
+ if (scope_->typed() && peek() == Token::LT) { // Braces required here.
+ type_parameters = ParseTypeParameters(CHECK_OK);
+ }
+ USE(type_parameters); // TODO(nikolaos): really use them!
+
+ bool started_scope = false;
+
+ // Parse optional extends clause.
Expression* extends = NULL;
if (Check(Token::EXTENDS)) {
block_scope->set_start_position(scanner()->location().end_pos);
+ started_scope = true;
+ // TODO(nikolaos): If this remains an expression, we have to explicitly
+ // allow type arguments.
ExpressionClassifier classifier(this);
extends = ParseLeftHandSideExpression(&classifier, CHECK_OK);
RewriteNonPattern(&classifier, CHECK_OK);
- } else {
- block_scope->set_start_position(scanner()->location().end_pos);
}
+ // Parse optional implements clause.
+ ZoneList<typesystem::Type*>* implements = nullptr;
+ if (scope_->typed() && CheckContextualKeyword(CStrVector("implements"))) {
+ implements = new (zone()) ZoneList<typesystem::Type*>(1, zone());
+ if (!started_scope) {
+ block_scope->set_start_position(scanner()->location().end_pos);
+ started_scope = true;
+ }
+ do {
+ typesystem::Type* class_or_interface = ParseTypeReference(CHECK_OK);
+ implements->Add(class_or_interface, zone());
+ } while (Check(Token::COMMA));
+ }
+ USE(implements); // TODO(nikolaos): really use it!
+
+ if (!started_scope) {
+ block_scope->set_start_position(scanner()->location().end_pos);
+ }
ClassLiteralChecker checker(this);
ZoneList<ObjectLiteral::Property*>* properties = NewPropertyList(4, zone());
@@ -4880,6 +4910,8 @@ ClassLiteral* Parser::ParseClassLiteral(const AstRawString* name,
ObjectLiteral::Property* property = ParsePropertyDefinition(
&checker, in_class, has_extends, is_static, &is_computed_name,
&has_seen_constructor, &classifier, &property_name, CHECK_OK);
+ // Ignore member variable declarations in typed mode.
+ if (property == nullptr) continue;
RewriteNonPattern(&classifier, CHECK_OK);
if (has_seen_constructor && constructor == NULL) {
« no previous file with comments | « no previous file | src/parsing/parser-base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698