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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « src/parsing/parser-base.h ('k') | test/cctest/test-parsing.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <cmath> 5 #include <cmath>
6 6
7 #include "src/allocation.h" 7 #include "src/allocation.h"
8 #include "src/base/logging.h" 8 #include "src/base/logging.h"
9 #include "src/conversions-inl.h" 9 #include "src/conversions-inl.h"
10 #include "src/conversions.h" 10 #include "src/conversions.h"
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 } 1131 }
1132 1132
1133 LanguageMode class_language_mode = language_mode(); 1133 LanguageMode class_language_mode = language_mode();
1134 Scope* scope = NewScope(scope_, BLOCK_SCOPE); 1134 Scope* scope = NewScope(scope_, BLOCK_SCOPE);
1135 BlockState block_state(&scope_, scope); 1135 BlockState block_state(&scope_, scope);
1136 scope_->SetLanguageMode( 1136 scope_->SetLanguageMode(
1137 static_cast<LanguageMode>(class_language_mode | STRICT)); 1137 static_cast<LanguageMode>(class_language_mode | STRICT));
1138 // TODO(marja): Make PreParser use scope names too. 1138 // TODO(marja): Make PreParser use scope names too.
1139 // scope_->SetScopeName(name); 1139 // scope_->SetScopeName(name);
1140 1140
1141 // Parse optional type parameters.
1142 if (scope_->typed() && peek() == Token::LT) { // Braces required here.
1143 ParseTypeParameters(CHECK_OK);
1144 }
1145
1146 // Parse optional extends clause.
1141 bool has_extends = Check(Token::EXTENDS); 1147 bool has_extends = Check(Token::EXTENDS);
1142 if (has_extends) { 1148 if (has_extends) {
1143 ExpressionClassifier classifier(this); 1149 ExpressionClassifier classifier(this);
1144 ParseLeftHandSideExpression(&classifier, CHECK_OK); 1150 ParseLeftHandSideExpression(&classifier, CHECK_OK);
1145 ValidateExpression(&classifier, CHECK_OK); 1151 ValidateExpression(&classifier, CHECK_OK);
1146 } 1152 }
1147 1153
1154 // Parse optional implements clause.
1155 if (scope_->typed() && CheckContextualKeyword(CStrVector("implements"))) {
1156 do {
1157 ParseTypeReference(CHECK_OK);
1158 } while (Check(Token::COMMA));
1159 }
1160
1148 ClassLiteralChecker checker(this); 1161 ClassLiteralChecker checker(this);
1149 bool has_seen_constructor = false; 1162 bool has_seen_constructor = false;
1150 1163
1151 Expect(Token::LBRACE, CHECK_OK); 1164 Expect(Token::LBRACE, CHECK_OK);
1152 while (peek() != Token::RBRACE) { 1165 while (peek() != Token::RBRACE) {
1153 if (Check(Token::SEMICOLON)) continue; 1166 if (Check(Token::SEMICOLON)) continue;
1154 const bool in_class = true; 1167 const bool in_class = true;
1155 const bool is_static = false; 1168 const bool is_static = false;
1156 bool is_computed_name = false; // Classes do not care about computed 1169 bool is_computed_name = false; // Classes do not care about computed
1157 // property names here. 1170 // property names here.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
1204 Expect(Token::RBRACE, CHECK_OK); 1217 Expect(Token::RBRACE, CHECK_OK);
1205 return PreParserExpression::Default(); 1218 return PreParserExpression::Default();
1206 } 1219 }
1207 } 1220 }
1208 1221
1209 #undef CHECK_OK 1222 #undef CHECK_OK
1210 1223
1211 1224
1212 } // namespace internal 1225 } // namespace internal
1213 } // namespace v8 1226 } // namespace v8
OLDNEW
« 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