summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg-step-in-uninitialized.js
blob: 13c4d404c4243a18c551b8b79c419fc160dd3b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */

// When stepping into a function, 'let' variables should show as uninitialized
// instead of undefined.

add_task(async function test() {
  const dbg = await initDebugger("doc-step-in-uninitialized.html");
  invokeInTab("main");
  await waitForPaused(dbg, "doc-step-in-uninitialized.html");

  await stepOver(dbg);
  await stepIn(dbg);

  assertDebugLine(dbg, 8);
  assertPausedLocation(dbg);

  // We step past the 'let x' at the start of the function because it is not
  // a breakpoint position.
  ok(findNodeValue(dbg, "x") == "undefined", "x undefined");
  ok(findNodeValue(dbg, "y") == "(uninitialized)", "y uninitialized");

  await stepOver(dbg);

  assertDebugLine(dbg, 9);

  ok(findNodeValue(dbg, "y") == "3", "y initialized");
});

function findNodeValue(dbg, text) {
  for (let index = 0;; index++) {
    const elem = findElement(dbg, "scopeNode", index);
    if (elem?.innerText == text) {
      return findElement(dbg, "scopeValue", index).innerText;
    }
  }
}