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

regress-10319.js « regress « debug « debugger « test « v8 « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ab901958d2b3e3ba6575f059ccd546ca985c939 (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
39
40
41
42
43
44
45
46
// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

var Debug = debug.Debug;

var frame;

Debug.setListener(function (event, exec_state, event_data, data) {
  if (event == Debug.DebugEvent.Break) {
    frame = exec_state.frame(0);

    // Try changing the value, which hasn't yet been initialized.
    assertEquals(3, frame.evaluate("result = 3").value());
    assertEquals(3, frame.evaluate("result").value());
  }
});

function makeCounter() {
  // If the variable `result` were stack-allocated, it would be 3 at this point
  // due to the debugging activity during function entry. However, for a
  // heap-allocated variable, the debugger evaluated `result = 3` in a temporary
  // scope instead and had no effect on this variable.
  assertEquals(undefined, result);

  var result = 0;

  // Regardless of how `result` is allocated, it should now be initialized.
  assertEquals(0, result);

  // Close over `result` to cause it to be heap-allocated.
  return () => ++result;
}

// Break on entry to a function which includes heap-allocated variables.
%ScheduleBreak();
makeCounter();

// Check the frame state which was collected during the breakpoint.
assertEquals(1, frame.localCount());
assertEquals('result', frame.localName(0));
assertEquals(undefined, frame.localValue(0).value());
assertEquals(3, frame.scopeCount());
assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType());
assertEquals(debug.ScopeType.Script, frame.scope(1).scopeType());
assertEquals(debug.ScopeType.Global, frame.scope(2).scopeType());