~ubuntu-branches/ubuntu/trusty/mozjs24/trusty-proposed

« back to all changes in this revision

Viewing changes to js/src/tests/test262/ch12/12.10/S12.10_A1.7_T4.js

  • Committer: Package Import Robot
  • Author(s): Tim Lunn
  • Date: 2014-02-11 21:55:34 UTC
  • Revision ID: package-import@ubuntu.com-20140211215534-m1zyq5aj59md3y07
Tags: upstream-24.2.0
ImportĀ upstreamĀ versionĀ 24.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2009 the Sputnik authors.  All rights reserved.
 
2
// This code is governed by the BSD license found in the LICENSE file.
 
3
 
 
4
/**
 
5
 * The with statement adds a computed object to the front of the
 
6
 * scope chain of the current execution context
 
7
 *
 
8
 * @path ch12/12.10/S12.10_A1.7_T4.js
 
9
 * @description Calling a function within "with" statement declared within the statement, leading to completion by exception
 
10
 * @noStrict
 
11
 */
 
12
 
 
13
this.p1 = 1;
 
14
this.p2 = 2;
 
15
this.p3 = 3;
 
16
var result = "result";
 
17
var myObj = {p1: 'a', 
 
18
             p2: 'b', 
 
19
             p3: 'c',
 
20
             value: 'myObj_value',
 
21
             valueOf : function(){return 'obj_valueOf';},
 
22
             parseInt : function(){return 'obj_parseInt';},
 
23
             NaN : 'obj_NaN',
 
24
             Infinity : 'obj_Infinity',
 
25
             eval     : function(){return 'obj_eval';},
 
26
             parseFloat : function(){return 'obj_parseFloat';},
 
27
             isNaN      : function(){return 'obj_isNaN';},
 
28
             isFinite   : function(){return 'obj_isFinite';}
 
29
}
 
30
var del;
 
31
var st_p1 = "p1";
 
32
var st_p2 = "p2";
 
33
var st_p3 = "p3";
 
34
var st_parseInt = "parseInt";
 
35
var st_NaN = "NaN";
 
36
var st_Infinity = "Infinity";
 
37
var st_eval = "eval";
 
38
var st_parseFloat = "parseFloat";
 
39
var st_isNaN = "isNaN";
 
40
var st_isFinite = "isFinite";
 
41
 
 
42
try {
 
43
  with(myObj){
 
44
    var f = function(){
 
45
      st_p1 = p1;
 
46
      st_p2 = p2;
 
47
      st_p3 = p3;
 
48
      st_parseInt = parseInt;
 
49
      st_NaN = NaN;
 
50
      st_Infinity = Infinity;
 
51
      st_eval = eval;
 
52
      st_parseFloat = parseFloat;
 
53
      st_isNaN = isNaN;
 
54
      st_isFinite = isFinite;
 
55
      p1 = 'x1';
 
56
      this.p2 = 'x2';
 
57
      del = delete p3;
 
58
      var p4 = 'x4';
 
59
      p5 = 'x5';
 
60
      var value = 'value';
 
61
      throw value;
 
62
    }
 
63
    f();
 
64
  }
 
65
} catch(e){
 
66
  result = e;
 
67
}
 
68
 
 
69
if(!(result === "value")){
 
70
  $ERROR('#0: result === "value". Actual:  result ==='+ result  );
 
71
}
 
72
 
 
73
if(!(p1 === 1)){
 
74
  $ERROR('#1: p1 === 1. Actual:  p1 ==='+ p1  );
 
75
}
 
76
 
 
77
if(!(p2 === "x2")){
 
78
  $ERROR('#2: p2 === "x2". Actual:  p2 ==='+ p2  );
 
79
}
 
80
 
 
81
if(!(p3 === 3)){
 
82
  $ERROR('#3: p3 === 3. Actual:  p3 ==='+ p3  );
 
83
}
 
84
 
 
85
try {
 
86
  p4;
 
87
  $ERROR('#4: p4 is not defined');
 
88
} catch(e) {    
 
89
}
 
90
 
 
91
if(!(p5 === "x5")){
 
92
  $ERROR('#5: p5 === "x5". Actual:  p5 ==='+ p5  );
 
93
}
 
94
 
 
95
if(!(myObj.p1 === "x1")){
 
96
  $ERROR('#6: myObj.p1 === "x1". Actual:  myObj.p1 ==='+ myObj.p1  );
 
97
}
 
98
 
 
99
if(!(myObj.p2 === "b")){
 
100
  $ERROR('#7: myObj.p2 === "b". Actual:  myObj.p2 ==='+ myObj.p2  );
 
101
}
 
102
 
 
103
if(!(myObj.p3 === undefined)){
 
104
  $ERROR('#8: myObj.p3 === undefined. Actual:  myObj.p3 ==='+ myObj.p3  );
 
105
}
 
106
 
 
107
if(!(myObj.p4 === undefined)){
 
108
  $ERROR('#9: myObj.p4 === undefined. Actual:  myObj.p4 ==='+ myObj.p4  );
 
109
}
 
110
 
 
111
if(!(myObj.p5 === undefined)){
 
112
  $ERROR('#10: myObj.p5 === undefined. Actual:  myObj.p5 ==='+ myObj.p5  );
 
113
}
 
114
 
 
115
if(!(st_parseInt !== parseInt)){
 
116
  $ERROR('#11: myObj.parseInt !== parseInt');
 
117
}
 
118
 
 
119
if(!(st_NaN === "obj_NaN")){
 
120
  $ERROR('#12: myObj.NaN !== NaN');
 
121
}
 
122
 
 
123
if(!(st_Infinity !== Infinity)){
 
124
  $ERROR('#13: myObj.Infinity !== Infinity');
 
125
}
 
126
 
 
127
if(!(st_eval !== eval)){
 
128
  $ERROR('#14: myObj.eval !== eval');
 
129
}
 
130
 
 
131
if(!(st_parseFloat !== parseFloat)){
 
132
  $ERROR('#15: myObj.parseFloat !== parseFloat');
 
133
}
 
134
 
 
135
if(!(st_isNaN !== isNaN)){
 
136
  $ERROR('#16: myObj.isNaN !== isNaN');
 
137
}
 
138
 
 
139
if(!(st_isFinite !== isFinite)){
 
140
  $ERROR('#17: myObj.isFinite !== isFinite');
 
141
}
 
142
 
 
143
try{
 
144
  value;
 
145
  $ERROR('#18: value is not defined');
 
146
}
 
147
catch(e){
 
148
}
 
149
 
 
150
if(!(myObj.value === "myObj_value")){
 
151
  $ERROR('#19: myObj.value === "myObj_value". Actual:  myObj.value ==='+ myObj.value  );
 
152
}
 
153