OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2011 the V8 project authors. All rights reserved. | |
2 // Redistribution and use in source and binary forms, with or without | |
3 // modification, are permitted provided that the following conditions are | |
4 // met: | |
5 // | |
6 // * Redistributions of source code must retain the above copyright | |
7 // notice, this list of conditions and the following disclaimer. | |
8 // * Redistributions in binary form must reproduce the above | |
9 // copyright notice, this list of conditions and the following | |
10 // disclaimer in the documentation and/or other materials provided | |
11 // with the distribution. | |
12 // * Neither the name of Google Inc. nor the names of its | |
13 // contributors may be used to endorse or promote products derived | |
14 // from this software without specific prior written permission. | |
15 // | |
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
27 | |
28 | |
29 // This file relies on the fact that the following declaration has been made | |
30 // in runtime.js: | |
31 // const $Object = global.Object; | |
32 const $WeakMap = global.WeakMap; | |
33 | |
34 // ------------------------------------------------------------------- | |
35 | |
36 // Set the WeakMap function and constructor. | |
37 %SetCode($WeakMap, function(x) { | |
38 return %WeakMapCreate(this); | |
39 }); | |
40 | |
41 | |
42 function WeakMapGet(key) { | |
43 if (!IS_OBJECT(key)) { | |
rossberg
2011/08/02 12:33:38
You probably want IS_SPEC_OBJECT here (and below).
Michael Starzinger
2011/08/02 14:05:22
Done.
| |
44 throw %MakeTypeError('invalid_weakmap_key', [this, key]); | |
45 } | |
46 return %WeakMapGet(this, key); | |
47 } | |
48 | |
49 | |
50 function WeakMapSet(key, value) { | |
51 if (!IS_OBJECT(key)) { | |
52 throw %MakeTypeError('invalid_weakmap_key', [this, key]); | |
53 } | |
54 return %WeakMapSet(this, key, value); | |
55 } | |
56 | |
57 // ------------------------------------------------------------------- | |
58 | |
59 function SetupWeakMap() { | |
60 // Setup the constructor property on the WeakMap prototype object. | |
61 //%SetProperty($WeakMap.prototype, "constructor", $WeakMap, DONT_ENUM); | |
rossberg
2011/08/02 12:33:38
Is there a reason that this is commented out?
Michael Starzinger
2011/08/02 14:05:22
Done.
| |
62 | |
63 // Setup the non-enumerable functions on the WeakMap prototype object. | |
64 InstallFunctionsOnHiddenPrototype($WeakMap.prototype, DONT_ENUM, $Array( | |
65 "get", WeakMapGet, | |
66 "set", WeakMapSet | |
67 )); | |
68 } | |
69 | |
70 | |
71 SetupWeakMap(); | |
OLD | NEW |