-
Notifications
You must be signed in to change notification settings - Fork 0
/
builtinObject.js
286 lines (257 loc) · 8.1 KB
/
builtinObject.js
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*
Copyright (c) 2015, Kotaro Endo.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
'use strict';
// ECMAScript 5.1: 15.2 Object Objects
function Object_Call(thisValue, argumentsList) {
var value = argumentsList[0];
if (value === null || value === undefined) return Object_Construct(argumentsList);
return ToObject(value);
}
function Object_Construct(argumentsList) {
var value = argumentsList[0];
if (argumentsList.length >= 1) {
if (Type(value) === "Object") return value;
if (Type(value) === "String") return ToObject(value);
if (Type(value) === "Boolean") return ToObject(value);
if (Type(value) === "Number") return ToObject(value);
}
var obj = VMObject();
setAllTheInternalMethods(obj);
obj.Prototype = builtin_Object_prototype;
obj.Class = "Object";
obj.Extensible = true;
return obj;
}
function Object_getPrototypeOf(thisValue, argumentsList) {
var O = argumentsList[0];
if (Type(O) !== "Object") throw VMTypeError();
return O.Prototype;
}
function Object_getOwnPropertyDescriptor(thisValue, argumentsList) {
var O = argumentsList[0];
var P = argumentsList[1];
if (Type(O) !== "Object") throw VMTypeError();
var name = ToString(P);
var desc = O.GetOwnProperty(name);
return FromPropertyDescriptor(desc);
}
function Object_getOwnPropertyNames(thisValue, argumentsList) {
var O = argumentsList[0];
var P = argumentsList[1];
if (Type(O) !== "Object") throw VMTypeError();
var array = Array_Construct([]);
var n = 0;
var next = O.enumerator(true, false);
var name;
while ((name = next()) !== undefined) {
array.DefineOwnProperty(ToString(n), PropertyDescriptor({
Value : name,
Writable : true,
Enumerable : true,
Configurable : true
}), false);
n++;
}
return array;
}
function Object_create(thisValue, argumentsList) {
var O = argumentsList[0];
var Properties = argumentsList[1];
if (Type(O) !== "Object" && Type(O) !== "Null") throw VMTypeError();
var obj = Object_Construct([]);
obj.Prototype = O;
if (Properties !== undefined) {
Object_defineProperties(null, [ obj, Properties ]);
}
return obj;
}
function Object_defineProperty(thisValue, argumentsList) {
var O = argumentsList[0];
var P = argumentsList[1];
var Attributes = argumentsList[2];
if (Type(O) !== "Object") throw VMTypeError();
var name = ToString(P);
var desc = ToPropertyDescriptor(Attributes);
O.DefineOwnProperty(name, desc, true);
return O;
}
function Object_defineProperties(thisValue, argumentsList) {
var O = argumentsList[0];
var Properties = argumentsList[1];
if (Type(O) !== "Object") throw VMTypeError();
var props = ToObject(Properties);
var names = props.enumerator(true, true);
var descriptors = [];
var P;
while ((P = names()) !== undefined) {
var descObj = props.Get(P);
var desc = ToPropertyDescriptor(descObj);
descriptors.push([ P, desc ]);
}
for (var i = 0; i < descriptors.length; i++) {
var pair = descriptors[i];
var P = pair[0];
var desc = pair[1];
O.DefineOwnProperty(P, desc, true);
}
return O;
}
function Object_seal(thisValue, argumentsList) {
var O = argumentsList[0];
if (Type(O) !== "Object") throw VMTypeError();
var next = O.enumerator(true, false);
var P;
while ((P = next()) !== undefined) {
var desc = O.GetOwnProperty(P);
if (desc.Configurable === true) {
desc.Configurable = false;
}
O.DefineOwnProperty(P, desc, true);
}
O.Extensible = false;
return O;
}
function Object_freeze(thisValue, argumentsList) {
var O = argumentsList[0];
if (Type(O) !== "Object") throw VMTypeError();
var next = O.enumerator(true, false);
var P;
while ((P = next()) !== undefined) {
var desc = O.GetOwnProperty(P);
if (IsDataDescriptor(desc) === true) {
if (desc.Writable === true) {
desc.Writable = false;
}
}
if (desc.Configurable === true) {
desc.Configurable = false;
}
O.DefineOwnProperty(P, desc, true);
}
O.Extensible = false;
return O;
}
function Object_preventExtensions(thisValue, argumentsList) {
var O = argumentsList[0];
if (Type(O) !== "Object") throw VMTypeError();
O.Extensible = false;
return O;
}
function Object_isSealed(thisValue, argumentsList) {
var O = argumentsList[0];
if (Type(O) !== "Object") throw VMTypeError();
var next = O.enumerator(true, false);
var P;
while ((P = next()) !== undefined) {
var desc = O.GetOwnProperty(P);
if (desc.Configurable === true) return false;
}
if (O.Extensible === false) return true;
return false;
}
function Object_isFrozen(thisValue, argumentsList) {
var O = argumentsList[0];
if (Type(O) !== "Object") throw VMTypeError();
var next = O.enumerator(true, false);
var P;
while ((P = next()) !== undefined) {
var desc = O.GetOwnProperty(P);
if (IsDataDescriptor(desc) === true) {
if (desc.Writable === true) return false
}
if (desc.Configurable === true) return false;
}
if (O.Extensible === false) return true;
return false;
}
function Object_isExtensible(thisValue, argumentsList) {
var O = argumentsList[0];
if (Type(O) !== "Object") throw VMTypeError();
return O.Extensible;
}
function Object_keys(thisValue, argumentsList) {
var O = argumentsList[0];
if (Type(O) !== "Object") throw VMTypeError();
var next = O.enumerator(true, true);
var n = next.length;
var array = Array_Construct([ n ]);
var index = 0;
var P;
while ((P = next()) !== undefined) {
array.DefineOwnProperty(ToString(index), PropertyDescriptor({
Value : P,
Writable : true,
Enumerable : true,
Configurable : true
}), false);
index++;
}
return array;
}
function Object_prototype_toString(thisValue, argumentsList) {
if (thisValue === undefined) return "[object Undefined]";
if (thisValue === null) return "[object Null]";
var O = ToObject(thisValue);
return "[object " + O.Class + "]";
}
function Object_prototype_toLocaleString(thisValue, argumentsList) {
var O = ToObject(thisValue);
var toString = O.Get("toString");
if (IsCallable(toString) === false) throw VMTypeError();
return toString.Call(O, []);
}
function Object_prototype_valueOf(thisValue, argumentsList) {
var O = ToObject(thisValue);
return O;
}
function Object_prototype_hasOwnProperty(thisValue, argumentsList) {
var V = argumentsList[0];
var P = ToString(V);
var O = ToObject(thisValue);
var desc = O.GetOwnProperty(P);
if (desc === undefined) return false;
return true;
}
function Object_prototype_isPrototypeOf(thisValue, argumentsList) {
var V = argumentsList[0];
if (Type(V) !== "Object") return false;
var O = ToObject(thisValue);
while (true) {
var V = V.Prototype;
if (V === null) return false;
if (O === V) return true;
}
}
function Object_prototype_propertyIsEnumerable(thisValue, argumentsList) {
var V = argumentsList[0];
var P = ToString(V);
var O = ToObject(thisValue);
var desc = O.GetOwnProperty(P);
if (desc === undefined) return false;
return desc.Enumerable;
}