OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 gc() // Promote existing symbols and then allocate some more. | 52 gc() // Promote existing symbols and then allocate some more. |
53 } | 53 } |
54 } | 54 } |
55 TestNew() | 55 TestNew() |
56 | 56 |
57 | 57 |
58 function TestType() { | 58 function TestType() { |
59 for (var i in symbols) { | 59 for (var i in symbols) { |
60 assertEquals("symbol", typeof symbols[i]) | 60 assertEquals("symbol", typeof symbols[i]) |
61 assertTrue(typeof symbols[i] === "symbol") | 61 assertTrue(typeof symbols[i] === "symbol") |
| 62 assertFalse(%SymbolIsPrivate(symbols[i])) |
62 assertEquals(null, %_ClassOf(symbols[i])) | 63 assertEquals(null, %_ClassOf(symbols[i])) |
63 assertEquals("Symbol", %_ClassOf(new Symbol(symbols[i]))) | 64 assertEquals("Symbol", %_ClassOf(new Symbol(symbols[i]))) |
64 assertEquals("Symbol", %_ClassOf(Object(symbols[i]))) | 65 assertEquals("Symbol", %_ClassOf(Object(symbols[i]))) |
65 } | 66 } |
66 } | 67 } |
67 TestType() | 68 TestType() |
68 | 69 |
69 | 70 |
70 function TestPrototype() { | 71 function TestPrototype() { |
71 assertSame(Object.prototype, Symbol.prototype.__proto__) | 72 assertSame(Object.prototype, Symbol.prototype.__proto__) |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 // but not between scavenges. This must also apply for symbol keys. | 343 // but not between scavenges. This must also apply for symbol keys. |
343 var key = Symbol("key"); | 344 var key = Symbol("key"); |
344 var a = {}; | 345 var a = {}; |
345 a[key] = "abc"; | 346 a[key] = "abc"; |
346 | 347 |
347 for (var i = 0; i < 1000000; i++) { | 348 for (var i = 0; i < 1000000; i++) { |
348 a[key] += "a"; // Allocations cause a scavenge. | 349 a[key] += "a"; // Allocations cause a scavenge. |
349 } | 350 } |
350 } | 351 } |
351 TestCachedKeyAfterScavenge(); | 352 TestCachedKeyAfterScavenge(); |
OLD | NEW |