summaryrefslogtreecommitdiffstats
path: root/vendor/js-sys/tests/wasm/Object.js
blob: 3f82fc9b7ce0d618f6ef5b7faf18c9302ed19075 (plain)
1
2
3
4
5
6
7
8
9
10
11
const symbol_key = Symbol();

exports.map_with_symbol_key = function() {
  return { [symbol_key]: 42 };
};
exports.symbol_key = function() {
  return symbol_key;
};

exports.Foo = class {};
exports.Bar = class {};