OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 assertTrue(m instanceof WeakMap); | 130 assertTrue(m instanceof WeakMap); |
131 | 131 |
132 | 132 |
133 // Test some common JavaScript idioms | 133 // Test some common JavaScript idioms |
134 var m = new WeakMap; | 134 var m = new WeakMap; |
135 assertTrue(m instanceof WeakMap); | 135 assertTrue(m instanceof WeakMap); |
136 assertTrue(WeakMap.prototype.set instanceof Function) | 136 assertTrue(WeakMap.prototype.set instanceof Function) |
137 assertTrue(WeakMap.prototype.get instanceof Function) | 137 assertTrue(WeakMap.prototype.get instanceof Function) |
138 assertTrue(WeakMap.prototype.has instanceof Function) | 138 assertTrue(WeakMap.prototype.has instanceof Function) |
139 assertTrue(WeakMap.prototype.delete instanceof Function) | 139 assertTrue(WeakMap.prototype.delete instanceof Function) |
| 140 |
| 141 |
| 142 // Regression test for WeakMap prototype. |
140 assertTrue(WeakMap.prototype.constructor === WeakMap) | 143 assertTrue(WeakMap.prototype.constructor === WeakMap) |
| 144 assertTrue(Object.getPrototypeOf(WeakMap.prototype) === Object.prototype) |
141 | 145 |
142 | 146 |
143 // Regression test for issue 1617: The prototype of the WeakMap constructor | 147 // Regression test for issue 1617: The prototype of the WeakMap constructor |
144 // needs to be unique (i.e. different from the one of the Object constructor). | 148 // needs to be unique (i.e. different from the one of the Object constructor). |
145 assertFalse(WeakMap.prototype === Object.prototype); | 149 assertFalse(WeakMap.prototype === Object.prototype); |
146 var o = Object.create({}); | 150 var o = Object.create({}); |
147 assertFalse("get" in o); | 151 assertFalse("get" in o); |
148 assertFalse("set" in o); | 152 assertFalse("set" in o); |
149 assertEquals(undefined, o.get); | 153 assertEquals(undefined, o.get); |
150 assertEquals(undefined, o.set); | 154 assertEquals(undefined, o.set); |
151 var o = Object.create({}, { myValue: { | 155 var o = Object.create({}, { myValue: { |
152 value: 10, | 156 value: 10, |
153 enumerable: false, | 157 enumerable: false, |
154 configurable: true, | 158 configurable: true, |
155 writable: true | 159 writable: true |
156 }}); | 160 }}); |
157 assertEquals(10, o.myValue); | 161 assertEquals(10, o.myValue); |
158 | 162 |
159 | 163 |
160 // Stress Test | 164 // Stress Test |
161 // There is a proposed stress-test available at the es-discuss mailing list | 165 // There is a proposed stress-test available at the es-discuss mailing list |
162 // which cannot be reasonably automated. Check it out by hand if you like: | 166 // which cannot be reasonably automated. Check it out by hand if you like: |
163 // https://mail.mozilla.org/pipermail/es-discuss/2011-May/014096.html | 167 // https://mail.mozilla.org/pipermail/es-discuss/2011-May/014096.html |
OLD | NEW |