wasm-bindgen/crates/js-sys/tests/wasm/Object.js
2018-07-20 15:23:56 -07:00

12 lines
214 B
JavaScript

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 {};