Source code
Revision control
Copy as Markdown
Other Tools
// |jit-test| --enable-symbols-as-weakmap-keys; skip-if: getBuildConfiguration("release_or_beta")
var map = new WeakMap();
try {
map.set(1, 1);
} catch (e) {
assertEq(!!e.message.match(/an unregistered symbol/), true);
}