summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Object-parameterNames.js
blob: 3e3c5047141aab2fa7f12adfd9ac0ea623f17fa4 (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
load(libdir + 'array-compare.js');

var g = newGlobal({newCompartment: true});
var dbg = new Debugger;
var gDO = dbg.addDebuggee(g);
var hits = 0;

function check(expr, expected) {
  print("checking " + JSON.stringify(expr));

  let completion = gDO.executeInGlobal(expr);
  if (completion.throw)
    throw completion.throw.unsafeDereference();

  let fn = completion.return;
  if (expected === undefined)
    assertEq(fn.parameterNames, undefined);
  else
    assertEq(arraysEqual(fn.parameterNames, expected), true);
}

check('(function () {})', []);
check('(function (x) {})', ["x"]);
check('(function (a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) {})',
      ["a","b","c","d","e","f","g","h","i","j","k","l","m",
       "n","o","p","q","r","s","t","u","v","w","x","y","z"]);
check('(function (a, [b, c], {d, e:f}) { })',
      ["a", undefined, undefined]);
check('({a:1})', undefined);
check('Math.atan2', [undefined, undefined]);
check('(async function (a, b, c) {})', ["a", "b", "c"]);
check('(async function* (d, e, f) {})', ["d", "e", "f"]);