Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/debugger/wasm-stepping-byte-offsets.js')
-rw-r--r--deps/v8/test/inspector/debugger/wasm-stepping-byte-offsets.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/deps/v8/test/inspector/debugger/wasm-stepping-byte-offsets.js b/deps/v8/test/inspector/debugger/wasm-stepping-byte-offsets.js
index d3c19329735..70f73d6cace 100644
--- a/deps/v8/test/inspector/debugger/wasm-stepping-byte-offsets.js
+++ b/deps/v8/test/inspector/debugger/wasm-stepping-byte-offsets.js
@@ -104,7 +104,7 @@ async function waitForPauseAndStep(stepAction) {
InspectorTest.log(`at ${functionName} (${lineNumber}:${columnNumber}):`);
for (var scope of frame.scopeChain) {
InspectorTest.logObject(' - scope (' + scope.type + '):');
- if (scope.type === 'global') {
+ if (scope.type === 'module' || scope.type === 'global') {
InspectorTest.logObject(' -- skipped');
} else {
const {result: {result: {value}}} =
@@ -114,9 +114,7 @@ async function waitForPauseAndStep(stepAction) {
returnByValue: true
});
if (scope.type === 'local') {
- if (value.locals)
- InspectorTest.log(` locals: ${JSON.stringify(value.locals)}`);
- InspectorTest.log(` stack: ${JSON.stringify(value.stack)}`);
+ InspectorTest.log(` locals: ${JSON.stringify(value.locals)}`);
} else {
InspectorTest.log(` ${JSON.stringify(value)}`);
}