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
39
40
41
42
43
44
45
46
47
|
/* 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.
"use strict";
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);
assertPausedAtSourceAndLine(
dbg,
findSource(dbg, "doc-step-in-uninitialized.html").id,
8
);
// We step past the 'let x' at the start of the function because it is not
// a breakpoint position.
Assert.equal(findNodeValue(dbg, "x"), "undefined", "x undefined");
Assert.equal(findNodeValue(dbg, "y"), "(uninitialized)", "y uninitialized");
await stepOver(dbg);
assertPausedAtSourceAndLine(
dbg,
findSource(dbg, "doc-step-in-uninitialized.html").id,
9
);
Assert.equal(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 getScopeNodeValue(dbg, index);
}
}
}
|