summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-onStep-06.js
blob: ba5d7ea7734e3a62b9a8f6f601553614f3eb428a (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
// After returning from an implicit toString call, the calling frame's onStep
// hook fires.

var g = newGlobal({newCompartment: true});
g.eval("var originalX = {toString: function () { debugger; log += 'x'; return 1; }};\n");

var dbg = Debugger(g);
dbg.onDebuggerStatement = function (frame) {
    g.log += 'd';
    frame.older.onStep = function () {
        if (!g.log.match(/[sy]$/))
            g.log += 's';
    };
};

// expr is an expression that will trigger an implicit toString call.
function check(expr) {
    g.log = '';
    g.x = g.originalX;
    g.eval(expr + ";\n" +
	   "log += 'y';\n");
    assertEq(g.log, 'dxsy');
}

check("'' + x");
check("0 + x");
check("0 - x");
check("0 * x");
check("0 / x");
check("0 % x");
check("+x");
check("x in {}");
check("x++");
check("++x");
check("x--");
check("--x");
check("x < 0");
check("x > 0");
check("x >= 0");
check("x <= 0");
check("x == 0");
check("x != 0");
check("x & 1");
check("x | 1");
check("x ^ 1");
check("~x");
check("x << 1");
check("x >> 1");
check("x >>> 1");

g.eval("var getter = { get x() { debugger; return log += 'x'; } }");
check("getter.x");

g.eval("var setter = { set x(v) { debugger; return log += 'x'; } }");
check("setter.x = 1");

g.eval("Object.defineProperty(this, 'thisgetter', { get: function() { debugger; log += 'x'; }});");
check("thisgetter");