Source code
Revision control
Copy as Markdown
Other Tools
// |reftest| skip-if(!this.uneval)
/*
* Any copyright is dedicated to the Public Domain.
*/
var expect = 'pass';
var actual = expect;
function f({"\xF51F": x}) {}
try {
eval(uneval(f));
} catch (e) {
actual = '' + e;
}
reportCompare(expect, actual, "");