mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
510 B
16 lines
510 B
8 years ago
|
'use strict';
|
||
|
const common = require('../../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
// testing api calls for symbol
|
||
|
const test_symbol = require(`./build/${common.buildType}/test_symbol`);
|
||
|
|
||
|
const fooSym = test_symbol.New('foo');
|
||
|
const myObj = {};
|
||
|
myObj['foo'] = 'bar';
|
||
|
myObj[fooSym] = 'baz';
|
||
|
Object.keys(myObj); // -> [ 'foo' ]
|
||
|
Object.getOwnPropertyNames(myObj); // -> [ 'foo' ]
|
||
|
Object.getOwnPropertySymbols(myObj); // -> [ Symbol(foo) ]
|
||
|
assert.strictEqual(Object.getOwnPropertySymbols(myObj)[0], fooSym);
|