summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_5/Scope/regress-185485.js
blob: a75bf885a9342f4c1a5e5f6a62cd6f73039b3622 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/*
 *
 * Date:    16 Dec 2002
 * SUMMARY: Testing |with (x) {function f() {}}| when |x.f| already exists
 * See http://bugzilla.mozilla.org/show_bug.cgi?id=185485
 *
 * The idea is this: if |x| does not already have a property named |f|,
 * a |with| statement cannot be used to define one. See, for example,
 *
 *       http://bugzilla.mozilla.org/show_bug.cgi?id=159849#c11
 *       http://bugzilla.mozilla.org/show_bug.cgi?id=184107
 *
 *
 * However, if |x| already has a property |f|, a |with| statement can be
 * used to modify the value it contains:
 *
 *                 with (x) {f = 1;}
 *
 * This should work even if we use a |var| statement, like this:
 *
 *                 with (x) {var f = 1;}
 *
 * However, it should NOT work if we use a |function| statement, like this:
 *
 *                 with (x) {function f() {}}
 *
 * Instead, this should newly define a function f in global scope.
 * See http://bugzilla.mozilla.org/show_bug.cgi?id=185485
 *
 */
//-----------------------------------------------------------------------------
var UBound = 0;
var BUGNUMBER = 185485;
var summary = 'Testing |with (x) {function f() {}}| when |x.f| already exists';
var status = '';
var statusitems = [];
var actual = '';
var actualvalues = [];
var expect= '';
var expectedvalues = [];

var x = { f:0, g:0 };

with (x)
{
  f = 1;
}
status = inSection(1);
actual = x.f;
expect = 1;
addThis();

with (x)
{
  var f = 2;
}
status = inSection(2);
actual = x.f;
expect = 2;
addThis();

/*
 * Use of a function statement under the with-block should not affect
 * the local property |f|, but define a function |f| in global scope -
 */
with (x)
{
  function f() {}
}
status = inSection(3);
actual = x.f;
expect = 2;
addThis();

status = inSection(4);
actual = typeof this.f;
expect = 'function';
addThis();


/*
 * Compare use of function expression instead of function statement.
 * Note it is important that |x.g| already exists. Otherwise, this
 * would newly define |g| in global scope -
 */
with (x)
{
  var g = function() {}
}
status = inSection(5);
actual = x.g.toString();
expect = (function() {}).toString();
addThis();



//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------



function addThis()
{
  statusitems[UBound] = status;
  actualvalues[UBound] = actual;
  expectedvalues[UBound] = expect;
  UBound++;
}


function test()
{
  enterFunc('test');
  printBugNumber(BUGNUMBER);
  printStatus(summary);

  for (var i=0; i<UBound; i++)
  {
    reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
  }

  exitFunc ('test');
}