| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 })(); |
| OLD | NEW |