summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/arguments/strict-nested-assign-shadow-function-call.js
blob: a9430e3247ffd38fd33f4811f367596bee96e2c0 (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
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */
load(libdir + 'array-compare.js');

var obj = {};

function strictNestedAssignShadowFunctionCall(p)
{
  "use strict";
  function inner()
  {
    function p() { }
    p = 1776;
  }
  inner();
  return arguments;
}

var a1, a2, a3, a4;
for (var i = 0; i < 5; i++)
{
  a1 = strictNestedAssignShadowFunctionCall();
  a2 = strictNestedAssignShadowFunctionCall(99);
  a3 = strictNestedAssignShadowFunctionCall("");
  a4 = strictNestedAssignShadowFunctionCall(obj);
}

assertEq(arraysEqual(a1, []), true);
assertEq(arraysEqual(a2, [99]), true);
assertEq(arraysEqual(a3, [""]), true);
assertEq(arraysEqual(a4, [obj]), true);