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

Unified Diff: test/mjsunit/harmony/async-function-stacktrace.js

Issue 2151433005: Slight cleanup of TryCatch parsing/variable declaration (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/async-function-stacktrace.js
diff --git a/test/mjsunit/harmony/async-function-stacktrace.js b/test/mjsunit/harmony/async-function-stacktrace.js
index 50df44d033fda61e01c003a27c15aeb62cf27b90..921f06350056fd95be13874fff642176d17c0171 100644
--- a/test/mjsunit/harmony/async-function-stacktrace.js
+++ b/test/mjsunit/harmony/async-function-stacktrace.js
@@ -97,7 +97,7 @@ async function runTests() {
} catch (e) {
throw new Error("FAIL");
}
- }, ["e"]); // TODO(caitp): FuncNameInferer is doing some weird stuff...
+ }, ["async"]);
await test(async() => {
await 1;
@@ -106,7 +106,7 @@ async function runTests() {
} catch (e) {
throw new Error("FAIL");
}
- }, ["e"]);
+ }, ["async"]);
}
runTests().catch(e => {
« no previous file with comments | « src/parsing/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698