Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: test/mjsunit/harmony/symbols.js

Issue 48923002: Provide private symbols through internal APIs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Mo comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/harmony/private.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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();
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/private.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698