Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 |
| 11 // with the distribution. | 11 // with the distribution. |
| 12 // * Neither the name of Google Inc. nor the names of its | 12 // * Neither the name of Google Inc. nor the names of its |
| 13 // contributors may be used to endorse or promote products derived | 13 // contributors may be used to endorse or promote products derived |
| 14 // from this software without specific prior written permission. | 14 // from this software without specific prior written permission. |
| 15 // | 15 // |
| 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 // Flags: --harmony-collections --expose-gc | 28 // Flags: --harmony-collections --expose-gc --allow-natives-syntax |
| 29 | 29 |
| 30 | 30 |
| 31 // Test valid getter and setter calls on Sets. | 31 // Test valid getter and setter calls on Sets. |
| 32 function TestValidSetCalls(m) { | 32 function TestValidSetCalls(m) { |
| 33 assertDoesNotThrow(function () { m.add(new Object) }); | 33 assertDoesNotThrow(function () { m.add(new Object) }); |
| 34 assertDoesNotThrow(function () { m.has(new Object) }); | 34 assertDoesNotThrow(function () { m.has(new Object) }); |
| 35 assertDoesNotThrow(function () { m.delete(new Object) }); | 35 assertDoesNotThrow(function () { m.delete(new Object) }); |
| 36 } | 36 } |
| 37 TestValidSetCalls(new Set); | 37 TestValidSetCalls(new Set); |
| 38 | 38 |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 247 | 247 |
| 248 // Test some common JavaScript idioms for WeakMaps | 248 // Test some common JavaScript idioms for WeakMaps |
| 249 var m = new WeakMap; | 249 var m = new WeakMap; |
| 250 assertTrue(m instanceof WeakMap); | 250 assertTrue(m instanceof WeakMap); |
| 251 assertTrue(WeakMap.prototype.set instanceof Function) | 251 assertTrue(WeakMap.prototype.set instanceof Function) |
| 252 assertTrue(WeakMap.prototype.get instanceof Function) | 252 assertTrue(WeakMap.prototype.get instanceof Function) |
| 253 assertTrue(WeakMap.prototype.has instanceof Function) | 253 assertTrue(WeakMap.prototype.has instanceof Function) |
| 254 assertTrue(WeakMap.prototype.delete instanceof Function) | 254 assertTrue(WeakMap.prototype.delete instanceof Function) |
| 255 | 255 |
| 256 | 256 |
| 257 // Test type of the Set, Map and WeakMap prototype. | |
|
rossberg
2013/04/11 13:15:14
"type" -> "class"
Also, you may want to add tests
Michael Starzinger
2013/04/11 13:31:28
Done.
| |
| 258 assertEquals("Object", %_ClassOf(Set.prototype)) | |
| 259 assertEquals("Object", %_ClassOf(Map.prototype)) | |
| 260 assertEquals("Object", %_ClassOf(WeakMap.prototype)) | |
| 261 | |
| 262 | |
| 263 // Test constructor property of the Set, Map and WeakMap prototype. | |
| 264 function TestConstructor(C) { | |
| 265 assertFalse(C === Object.prototype.constructor); | |
| 266 assertSame(C, C.prototype.constructor); | |
| 267 assertSame(C, C().__proto__.constructor); | |
| 268 assertSame(C, (new C).__proto__.constructor); | |
| 269 } | |
| 270 TestConstructor(Set); | |
| 271 TestConstructor(Map); | |
| 272 TestConstructor(WeakMap); | |
| 273 | |
| 274 | |
| 257 // Regression test for WeakMap prototype. | 275 // Regression test for WeakMap prototype. |
| 258 assertTrue(WeakMap.prototype.constructor === WeakMap) | 276 assertTrue(WeakMap.prototype.constructor === WeakMap) |
| 259 assertTrue(Object.getPrototypeOf(WeakMap.prototype) === Object.prototype) | 277 assertTrue(Object.getPrototypeOf(WeakMap.prototype) === Object.prototype) |
| 260 | 278 |
| 261 | 279 |
| 262 // Regression test for issue 1617: The prototype of the WeakMap constructor | 280 // Regression test for issue 1617: The prototype of the WeakMap constructor |
| 263 // needs to be unique (i.e. different from the one of the Object constructor). | 281 // needs to be unique (i.e. different from the one of the Object constructor). |
| 264 assertFalse(WeakMap.prototype === Object.prototype); | 282 assertFalse(WeakMap.prototype === Object.prototype); |
| 265 var o = Object.create({}); | 283 var o = Object.create({}); |
| 266 assertFalse("get" in o); | 284 assertFalse("get" in o); |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 363 s.clear(); | 381 s.clear(); |
| 364 assertFalse(s.has(42)); | 382 assertFalse(s.has(42)); |
| 365 assertEquals(0, s.size); | 383 assertEquals(0, s.size); |
| 366 | 384 |
| 367 var m = new Map(); | 385 var m = new Map(); |
| 368 m.set(42, true); | 386 m.set(42, true); |
| 369 assertTrue(m.has(42)); | 387 assertTrue(m.has(42)); |
| 370 m.clear(); | 388 m.clear(); |
| 371 assertFalse(m.has(42)); | 389 assertFalse(m.has(42)); |
| 372 assertEquals(0, m.size); | 390 assertEquals(0, m.size); |
| OLD | NEW |