summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/debugger/class-private-methods-nested-super.js
blob: d3c04ef9a87d3ddfbac53e5dd8b3aacc4079bea7 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright 2021 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.

utils.load('test/inspector/private-class-member-inspector-test.js');

let { session, contextGroup, Protocol } = InspectorTest.start(
  "Test getting private class methods from an instance that calls nested super()"
);

contextGroup.addScript(`
function run() {
  class A {}
  class B extends A {
    #b() {}
    constructor() {
      (() => super())();
    }
    test() { debugger; }
  };
  (new B()).test();

  class C extends B {
    get #c() {}
    constructor() {
      const callSuper = () => super();
      callSuper();
    }
    test() { debugger; }
  };
  (new C()).test();

  class D extends C {
    set #d(val) {}
    constructor(str) {
      eval(str);
    }
    test() { debugger; }
  };
  (new D('super();')).test();
}`);

InspectorTest.runAsyncTestSuite([
  async function testScopesPaused() {
    Protocol.Debugger.enable();
    Protocol.Runtime.evaluate({ expression: "run()" });

    let {
      params: { callFrames }
    } = await Protocol.Debugger.oncePaused(); // inside B constructor
    let frame = callFrames[0];

    InspectorTest.log('private members after super() is called in IIFE');
    await printPrivateMembers(Protocol, InspectorTest, { objectId: frame.this.objectId });

    Protocol.Debugger.resume();

    ({ params: { callFrames } }
        = await Protocol.Debugger.oncePaused());  // inside C constructor
    frame = callFrames[0];
    InspectorTest.log('private members after super() is called in arrow function');
    await printPrivateMembers(Protocol, InspectorTest, { objectId: frame.this.objectId });

    Protocol.Debugger.resume();
    ({ params: { callFrames } }
        = await Protocol.Debugger.oncePaused());  // inside D constructor
    frame = callFrames[0];

    InspectorTest.log('private members after super() is called in eval()');
    await printPrivateMembers(Protocol, InspectorTest, { objectId: frame.this.objectId });
    Protocol.Debugger.resume();

    Protocol.Debugger.disable();
  }
]);