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

Side by Side Diff: test/cctest/test-parsing.cc

Issue 480543002: Parse 'super' keyword. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Patch for review Created 6 years, 4 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 | Annotate | Revision Log
« src/scanner.cc ('K') | « src/typing.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1202 } 1202 }
1203 1203
1204 1204
1205 enum ParserFlag { 1205 enum ParserFlag {
1206 kAllowLazy, 1206 kAllowLazy,
1207 kAllowNativesSyntax, 1207 kAllowNativesSyntax,
1208 kAllowHarmonyScoping, 1208 kAllowHarmonyScoping,
1209 kAllowModules, 1209 kAllowModules,
1210 kAllowGenerators, 1210 kAllowGenerators,
1211 kAllowHarmonyNumericLiterals, 1211 kAllowHarmonyNumericLiterals,
1212 kAllowArrowFunctions 1212 kAllowArrowFunctions,
1213 kAllowClasses
1213 }; 1214 };
1214 1215
1215 1216
1216 enum ParserSyncTestResult { 1217 enum ParserSyncTestResult {
1217 kSuccessOrError, 1218 kSuccessOrError,
1218 kSuccess, 1219 kSuccess,
1219 kError 1220 kError
1220 }; 1221 };
1221 1222
1222 template <typename Traits> 1223 template <typename Traits>
1223 void SetParserFlags(i::ParserBase<Traits>* parser, 1224 void SetParserFlags(i::ParserBase<Traits>* parser,
1224 i::EnumSet<ParserFlag> flags) { 1225 i::EnumSet<ParserFlag> flags) {
1225 parser->set_allow_lazy(flags.Contains(kAllowLazy)); 1226 parser->set_allow_lazy(flags.Contains(kAllowLazy));
1226 parser->set_allow_natives_syntax(flags.Contains(kAllowNativesSyntax)); 1227 parser->set_allow_natives_syntax(flags.Contains(kAllowNativesSyntax));
1227 parser->set_allow_harmony_scoping(flags.Contains(kAllowHarmonyScoping)); 1228 parser->set_allow_harmony_scoping(flags.Contains(kAllowHarmonyScoping));
1228 parser->set_allow_modules(flags.Contains(kAllowModules)); 1229 parser->set_allow_modules(flags.Contains(kAllowModules));
1229 parser->set_allow_generators(flags.Contains(kAllowGenerators)); 1230 parser->set_allow_generators(flags.Contains(kAllowGenerators));
1230 parser->set_allow_harmony_numeric_literals( 1231 parser->set_allow_harmony_numeric_literals(
1231 flags.Contains(kAllowHarmonyNumericLiterals)); 1232 flags.Contains(kAllowHarmonyNumericLiterals));
1232 parser->set_allow_arrow_functions(flags.Contains(kAllowArrowFunctions)); 1233 parser->set_allow_arrow_functions(flags.Contains(kAllowArrowFunctions));
1234 parser->set_allow_classes(flags.Contains(kAllowClasses));
1233 } 1235 }
1234 1236
1235 1237
1236 void TestParserSyncWithFlags(i::Handle<i::String> source, 1238 void TestParserSyncWithFlags(i::Handle<i::String> source,
1237 i::EnumSet<ParserFlag> flags, 1239 i::EnumSet<ParserFlag> flags,
1238 ParserSyncTestResult result) { 1240 ParserSyncTestResult result) {
1239 i::Isolate* isolate = CcTest::i_isolate(); 1241 i::Isolate* isolate = CcTest::i_isolate();
1240 i::Factory* factory = isolate->factory(); 1242 i::Factory* factory = isolate->factory();
1241 1243
1242 uintptr_t stack_limit = isolate->stack_guard()->real_climit(); 1244 uintptr_t stack_limit = isolate->stack_guard()->real_climit();
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
1505 int always_true_flags_len = 0) { 1507 int always_true_flags_len = 0) {
1506 v8::HandleScope handles(CcTest::isolate()); 1508 v8::HandleScope handles(CcTest::isolate());
1507 v8::Handle<v8::Context> context = v8::Context::New(CcTest::isolate()); 1509 v8::Handle<v8::Context> context = v8::Context::New(CcTest::isolate());
1508 v8::Context::Scope context_scope(context); 1510 v8::Context::Scope context_scope(context);
1509 1511
1510 CcTest::i_isolate()->stack_guard()->SetStackLimit(GetCurrentStackPosition() - 1512 CcTest::i_isolate()->stack_guard()->SetStackLimit(GetCurrentStackPosition() -
1511 128 * 1024); 1513 128 * 1024);
1512 1514
1513 static const ParserFlag default_flags[] = { 1515 static const ParserFlag default_flags[] = {
1514 kAllowLazy, kAllowHarmonyScoping, kAllowModules, 1516 kAllowLazy, kAllowHarmonyScoping, kAllowModules,
1515 kAllowGenerators, kAllowNativesSyntax, kAllowArrowFunctions}; 1517 kAllowGenerators, kAllowNativesSyntax, kAllowArrowFunctions,
1518 kAllowClasses};
1516 ParserFlag* generated_flags = NULL; 1519 ParserFlag* generated_flags = NULL;
1517 if (flags == NULL) { 1520 if (flags == NULL) {
1518 flags = default_flags; 1521 flags = default_flags;
1519 flags_len = ARRAY_SIZE(default_flags); 1522 flags_len = ARRAY_SIZE(default_flags);
1520 if (always_true_flags != NULL) { 1523 if (always_true_flags != NULL) {
1521 // Remove always_true_flags from default_flags. 1524 // Remove always_true_flags from default_flags.
1522 CHECK(always_true_flags_len < flags_len); 1525 CHECK(always_true_flags_len < flags_len);
1523 generated_flags = new ParserFlag[flags_len - always_true_flags_len]; 1526 generated_flags = new ParserFlag[flags_len - always_true_flags_len];
1524 int flag_index = 0; 1527 int flag_index = 0;
1525 for (int i = 0; i < flags_len; ++i) { 1528 for (int i = 0; i < flags_len; ++i) {
(...skipping 1810 matching lines...) Expand 10 before | Expand all | Expand 10 after
3336 3339
3337 // Arrow has more precedence, this is the same as: foo ? bar : (baz = {}) 3340 // Arrow has more precedence, this is the same as: foo ? bar : (baz = {})
3338 "foo ? bar : baz => {}", 3341 "foo ? bar : baz => {}",
3339 NULL 3342 NULL
3340 }; 3343 };
3341 3344
3342 static const ParserFlag always_flags[] = {kAllowArrowFunctions}; 3345 static const ParserFlag always_flags[] = {kAllowArrowFunctions};
3343 RunParserSyncTest(context_data, statement_data, kSuccess, NULL, 0, 3346 RunParserSyncTest(context_data, statement_data, kSuccess, NULL, 0,
3344 always_flags, ARRAY_SIZE(always_flags)); 3347 always_flags, ARRAY_SIZE(always_flags));
3345 } 3348 }
3349
3350
3351 TEST(NoErrorsSuper) {
3352 // Tests that parser and preparser accept 'super' keyword in right places.
3353 const char* context_data[][2] = {{"", ";"},
3354 {"k = ", ";"},
3355 {"foo(", ");"},
3356 {NULL, NULL}};
3357
3358 const char* statement_data[] = {
3359 "super.x",
3360 "super[27]",
3361 "new super",
3362 "new super()",
3363 "new super(12, 45)",
3364 "new new super",
3365 "new new super()",
3366 "new new super()()",
3367 "z.super", // Ok, property lookup.
3368 NULL};
3369
3370 static const ParserFlag always_flags[] = {kAllowClasses};
3371 RunParserSyncTest(context_data, statement_data, kSuccess, NULL, 0,
3372 always_flags, ARRAY_SIZE(always_flags));
3373 }
3374
3375
3376 TEST(ErrorsSuper) {
3377 // Tests that parser and preparser generate same errors for 'super'.
3378 const char* context_data[][2] = {{"", ";"},
3379 {"k = ", ";"},
3380 {"foo(", ");"},
3381 {NULL, NULL}};
3382
3383 const char* statement_data[] = {
3384 "super = x",
3385 "y = super",
3386 "f(super)",
3387 NULL};
3388
3389 static const ParserFlag always_flags[] = {kAllowClasses};
3390 RunParserSyncTest(context_data, statement_data, kError, NULL, 0,
3391 always_flags, ARRAY_SIZE(always_flags));
3392 }
OLDNEW
« src/scanner.cc ('K') | « src/typing.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698