projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
62b3296df6fc5e33fe6bb5ef39aac8bdc19d8962
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var d = require('d')
4
5
, defineProperty = Object.defineProperty;
6
7
module.exports = function (T, a) {
8
var symbol = T('test'), x = {};
9
defineProperty(x, symbol, d('foo'));
10
a(x.test, undefined, "Name");
11
a(x[symbol], 'foo', "Get");
12
};