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

Side by Side Diff: test/mjsunit/es6/mirror-symbols.js

Issue 297513006: Implement Mirror object for Symbols. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Flags: --expose-debug-as debug --harmony-symbols
6 // Test the mirror object for symbols.
7
8 function testSymbolMirror(symbol, name) {
9 // Create mirror and JSON representation.
10 var mirror = debug.MakeMirror(symbol);
11 var serializer = debug.MakeMirrorSerializer();
12 var json = JSON.stringify(serializer.serializeValue(mirror));
13
14 // Check the mirror hierachy.
15 assertTrue(mirror instanceof debug.Mirror);
16 assertTrue(mirror instanceof debug.ValueMirror);
17 assertTrue(mirror instanceof debug.SymbolMirror);
18
19 // Check the mirror properties.
20 assertTrue(mirror.isSymbol());
21 assertEquals(name, mirror.name());
22 assertEquals('symbol', mirror.type());
23 assertTrue(mirror.isPrimitive());
24 assertEquals('Symbol "' + name + '"', mirror.toText());
25 assertSame(symbol, mirror.value());
26
27 // Parse JSON representation and check.
28 var fromJSON = eval('(' + json + ')');
29 assertEquals('symbol', fromJSON.type);
30 assertEquals(name, fromJSON.name);
31 }
32
33 // Test a number of different symbols.
34 testSymbolMirror(Symbol("a"), "a");
35 testSymbolMirror(Symbol(12), "12");
36 testSymbolMirror(Symbol.for("b"), "b");
37 testSymbolMirror(Symbol(), undefined);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698