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

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

Issue 203243004: Implement ES6 symbol registry and predefined symbols (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixed bug Created 6 years, 9 months 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
« src/symbol.js ('K') | « 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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 var objectOwnSymbols = Object.getOwnPropertySymbols(object) 403 var objectOwnSymbols = Object.getOwnPropertySymbols(object)
404 assertEquals(objectOwnSymbols.length, syms.length / 2) 404 assertEquals(objectOwnSymbols.length, syms.length / 2)
405 405
406 for (var i = 0; i < objectOwnSymbols.length; i++) { 406 for (var i = 0; i < objectOwnSymbols.length; i++) {
407 assertEquals(objectOwnSymbols[i], syms[i * 2]) 407 assertEquals(objectOwnSymbols[i], syms[i * 2])
408 } 408 }
409 } 409 }
410 TestGetOwnPropertySymbolsWithProto() 410 TestGetOwnPropertySymbolsWithProto()
411 411
412 412
413 function TestGetOwnPropertySymbolsWithPrivateSymbols() { 413 function TestRegistry() {
414 var privateSymbol = %CreatePrivateSymbol("private") 414 assertFalse(Symbol.for("@@create") === Symbol.create)
415 var publicSymbol = Symbol() 415 assertFalse(Symbol.for("@@iterator") === Symbol.iterator)
416 var publicSymbol2 = Symbol() 416 assertTrue(Symbol.keyFor(Symbol.create) === undefined)
417 var obj = {} 417 assertTrue(Symbol.keyFor(Symbol.iterator) === undefined)
418 obj[publicSymbol] = 1 418
419 obj[privateSymbol] = 2 419 var symbol1 = Symbol.for("x1")
420 obj[publicSymbol2] = 3 420 var symbol2 = Symbol.for("x2")
421 var syms = Object.getOwnPropertySymbols(obj) 421 assertFalse(symbol1 === symbol2)
422 assertEquals(syms, [publicSymbol, publicSymbol2]) 422
423 assertSame(symbol1, Symbol.for("x1"))
424 assertSame(symbol2, Symbol.for("x2"))
425 assertSame("x1", Symbol.keyFor(symbol1))
426 assertSame("x2", Symbol.keyFor(symbol2))
427
428 assertSame(Symbol.for("1"), Symbol.for(1))
429 assertThrows(function() { Symbol.keyFor("bla") }, TypeError)
430 assertThrows(function() { Symbol.keyFor({}) }, TypeError)
431
432 var realm = Realm.create()
433 assertFalse(Symbol === Realm.eval(realm, "Symbol"))
434 assertFalse(Symbol.for === Realm.eval(realm, "Symbol.for"))
435 assertFalse(Symbol.keyFor === Realm.eval(realm, "Symbol.keyFor"))
436 assertSame(Symbol.create, Realm.eval(realm, "Symbol.create"))
437 assertSame(Symbol.iterator, Realm.eval(realm, "Symbol.iterator"))
438
439 assertSame(symbol1, Realm.eval(realm, "Symbol.for")("x1"))
440 assertSame(symbol1, Realm.eval(realm, "Symbol.for('x1')"))
441 assertSame("x1", Realm.eval(realm, "Symbol.keyFor")(symbol1))
442 Realm.shared = symbol1
443 assertSame("x1", Realm.eval(realm, "Symbol.keyFor(Realm.shared)"))
444
445 var symbol3 = Realm.eval(realm, "Symbol.for('x3')")
446 assertFalse(symbol1 === symbol3)
447 assertFalse(symbol2 === symbol3)
448 assertSame(symbol3, Symbol.for("x3"))
449 assertSame("x3", Symbol.keyFor(symbol3))
423 } 450 }
424 TestGetOwnPropertySymbolsWithPrivateSymbols() 451 TestRegistry()
OLDNEW
« src/symbol.js ('K') | « test/mjsunit/harmony/private.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698