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

Unified Diff: test/cctest/test-parsing.cc

Issue 2695973003: ParserBase should accept ESCAPED_STRICT_RESERVED_WORD as an identifier (Closed)
Patch Set: Add cctest, improve mjsunit Created 3 years, 10 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/mjsunit/regress/regress-v8-5692.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-parsing.cc
diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc
index 287b61b02c27b9fbbc206fff4b74f5d6b2dce74a..59ee11896f3334f1ece84a62b6558bf1a9247a52 100644
--- a/test/cctest/test-parsing.cc
+++ b/test/cctest/test-parsing.cc
@@ -9449,3 +9449,24 @@ TEST(NoPessimisticContextAllocation) {
}
}
}
+
+TEST(EscapedStrictReservedWord) {
+ // Test that identifiers which are both escaped and only reserved in the
+ // strict mode are accepted in non-strict mode.
+ v8::V8::Initialize();
+ v8::HandleScope scope(CcTest::isolate());
+ v8::Context::Scope context_scope(v8::Context::New(CcTest::isolate()));
+ const char* scripts[] = {
+ "if (true) l\u0065t: ;", "function l\u0065t() { }",
+ "(function l\u0065t() { })", "async function l\u0065t() { }",
+ "(async function l\u0065t() { })", "async l\u0065t => 42"};
+ for (const char* script : scripts) {
+ v8::TryCatch try_catch(CcTest::isolate());
+ v8_compile(script);
vabr (Chromium) 2017/02/14 23:58:53 I'm not at all sure that I'm doing the right thing
+ if (try_catch.HasCaught()) {
+ v8::String::Utf8Value exception(try_catch.Exception());
+ v8::base::OS::Print("Compiling %s failed with %s.", script, *exception);
+ CHECK(false);
+ }
+ }
+}
« no previous file with comments | « src/parsing/parser-base.h ('k') | test/mjsunit/regress/regress-v8-5692.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698