https://github.com/mozilla/gecko-dev
Raw File
Tip revision: adf0e3d21b644138b0d744c9d557f3b45de5b15a authored by ffxbld on 23 May 2012, 18:22:00 UTC
Added FIREFOX_13_0b5_RELEASE FIREFOX_13_0b5_BUILD1 tag(s) for changeset 5de6e4bd8ede. DONTBUILD CLOSED TREE a=release
Tip revision: adf0e3d
bug507448.js
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");

function f() {}
function g(a,b) {}
function h(me, too, here) { var x = 1; }
function annoying(a, b, a, b, b, a) {}
function manyLocals(a, b, c, d, e, f, g, h, i, j, k, l, m) {
  var n, o, p, q, r, s, t, u, v, w, x, y, z;
}

assertArraysEqual(jsd.wrapValue(f).script.getParameterNames(), []);
assertArraysEqual(jsd.wrapValue(g).script.getParameterNames(), ["a", "b"]);
assertArraysEqual(jsd.wrapValue(h).script.getParameterNames(), ["me", "too", "here"]);
assertArraysEqual(jsd.wrapValue(annoying).script.getParameterNames(),
                  ["a", "b", "a", "b", "b", "a"]);
assertArraysEqual(jsd.wrapValue(manyLocals).script.getParameterNames(),
                  "abcdefghijklm".split(""));

if (!jsdOnAtStart) {
  // turn JSD off if it wasn't on when this test started
  jsd.off();
  ok(!jsd.isOn, "JSD shouldn't be running at the end of this test.");
}

SimpleTest.finish();
back to top