js/src/jit-test/tests/debug/Frame-evalWithBindings-12.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 // evalWithBindings correctly handles optional custom url option
     2 var g = newGlobal();
     3 var dbg = new Debugger(g);
     4 var count = 0;
     6 function testUrl (options, expected) {
     7     count++;
     8     dbg.onDebuggerStatement = function (frame) {
     9         dbg.onNewScript = function (script) {
    10             dbg.onNewScript = undefined;
    11             assertEq(script.url, expected);
    12             count--;
    13         };
    14         frame.evalWithBindings("", {}, options);
    15     };
    16     g.eval("debugger;");
    17 }
    20 testUrl(undefined, "debugger eval code");
    21 testUrl(null, "debugger eval code");
    22 testUrl({ url: undefined }, "debugger eval code");
    23 testUrl({ url: null }, "null");
    24 testUrl({ url: 5 }, "5");
    25 testUrl({ url: "test" }, "test");
    26 assertEq(count, 0);

mercurial