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

Unified Diff: test/inspector/runtime/call-function-on-async.js

Issue 2499273003: [inspector] introduced Script::TYPE_INSPECTOR (Closed)
Patch Set: rebased Created 4 years, 1 month 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 | « test/inspector/debugger/script-parsed-for-runtime-evaluate-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/runtime/call-function-on-async.js
diff --git a/test/inspector/runtime/call-function-on-async.js b/test/inspector/runtime/call-function-on-async.js
index 4a72bbd40f3b6f4aec1886f16c7a2808b3c91f5a..cf2e73494485197129788d0f06e0ba0e1e59c125 100644
--- a/test/inspector/runtime/call-function-on-async.js
+++ b/test/inspector/runtime/call-function-on-async.js
@@ -102,7 +102,7 @@ function callFunctionOn(objectExpression, functionDeclaration, argumentExpressio
var objectId;
var callArguments = [];
var promise = Protocol.Runtime.evaluate({ expression: objectExpression })
- .then((result) => objectId = result.result.result.objectId)
+ .then((result) => objectId = result.result.result.objectId);
for (let argumentExpression of argumentExpressions) {
promise = promise
.then(() => Protocol.Runtime.evaluate({ expression: argumentExpression }))
« no previous file with comments | « test/inspector/debugger/script-parsed-for-runtime-evaluate-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698