Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: src/weak-collection.js

Issue 1109343004: Wrap v8natives.js into a function. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: alpha sort Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/v8natives.js ('k') | test/mjsunit/compiler/jsnatives.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 (function() { 5 (function() {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 %SetCode(GlobalWeakMap, WeakMapConstructor); 84 %SetCode(GlobalWeakMap, WeakMapConstructor);
85 %FunctionSetLength(GlobalWeakMap, 0); 85 %FunctionSetLength(GlobalWeakMap, 0);
86 %FunctionSetPrototype(GlobalWeakMap, new GlobalObject()); 86 %FunctionSetPrototype(GlobalWeakMap, new GlobalObject());
87 %AddNamedProperty(GlobalWeakMap.prototype, "constructor", GlobalWeakMap, 87 %AddNamedProperty(GlobalWeakMap.prototype, "constructor", GlobalWeakMap,
88 DONT_ENUM); 88 DONT_ENUM);
89 %AddNamedProperty(GlobalWeakMap.prototype, symbolToStringTag, "WeakMap", 89 %AddNamedProperty(GlobalWeakMap.prototype, symbolToStringTag, "WeakMap",
90 DONT_ENUM | READ_ONLY); 90 DONT_ENUM | READ_ONLY);
91 91
92 // Set up the non-enumerable functions on the WeakMap prototype object. 92 // Set up the non-enumerable functions on the WeakMap prototype object.
93 InstallFunctions(GlobalWeakMap.prototype, DONT_ENUM, [ 93 $installFunctions(GlobalWeakMap.prototype, DONT_ENUM, [
94 "get", WeakMapGet, 94 "get", WeakMapGet,
95 "set", WeakMapSet, 95 "set", WeakMapSet,
96 "has", WeakMapHas, 96 "has", WeakMapHas,
97 "delete", WeakMapDelete 97 "delete", WeakMapDelete
98 ]); 98 ]);
99 99
100 // ------------------------------------------------------------------- 100 // -------------------------------------------------------------------
101 // Harmony WeakSet 101 // Harmony WeakSet
102 102
103 function WeakSetConstructor(iterable) { 103 function WeakSetConstructor(iterable) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 155
156 %SetCode(GlobalWeakSet, WeakSetConstructor); 156 %SetCode(GlobalWeakSet, WeakSetConstructor);
157 %FunctionSetLength(GlobalWeakSet, 0); 157 %FunctionSetLength(GlobalWeakSet, 0);
158 %FunctionSetPrototype(GlobalWeakSet, new GlobalObject()); 158 %FunctionSetPrototype(GlobalWeakSet, new GlobalObject());
159 %AddNamedProperty(GlobalWeakSet.prototype, "constructor", GlobalWeakSet, 159 %AddNamedProperty(GlobalWeakSet.prototype, "constructor", GlobalWeakSet,
160 DONT_ENUM); 160 DONT_ENUM);
161 %AddNamedProperty(GlobalWeakSet.prototype, symbolToStringTag, "WeakSet", 161 %AddNamedProperty(GlobalWeakSet.prototype, symbolToStringTag, "WeakSet",
162 DONT_ENUM | READ_ONLY); 162 DONT_ENUM | READ_ONLY);
163 163
164 // Set up the non-enumerable functions on the WeakSet prototype object. 164 // Set up the non-enumerable functions on the WeakSet prototype object.
165 InstallFunctions(GlobalWeakSet.prototype, DONT_ENUM, [ 165 $installFunctions(GlobalWeakSet.prototype, DONT_ENUM, [
166 "add", WeakSetAdd, 166 "add", WeakSetAdd,
167 "has", WeakSetHas, 167 "has", WeakSetHas,
168 "delete", WeakSetDelete 168 "delete", WeakSetDelete
169 ]); 169 ]);
170 170
171 })(); 171 })();
OLDNEW
« no previous file with comments | « src/v8natives.js ('k') | test/mjsunit/compiler/jsnatives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698