regress-621814.js (318B)
1 // |reftest| skip-if(!this.uneval) 2 3 /* 4 * Any copyright is dedicated to the Public Domain. 5 * http://creativecommons.org/licenses/publicdomain/ 6 */ 7 var expect = 'pass'; 8 var actual = expect; 9 function f({"\xF51F": x}) {} 10 try { 11 eval(uneval(f)); 12 } catch (e) { 13 actual = '' + e; 14 } 15 reportCompare(expect, actual, "");