Source code

Revision control

Copy as Markdown

Other Tools

// |reftest| skip-if(!this.uneval)
/*
* Any copyright is dedicated to the Public Domain.
*/
assertEq(eval(uneval('\x001')), '\x001');
f = eval('(' + (function () { return '\x001'; }).toString() + ')');
assertEq(f(), '\x001');
assertEq(eval('\x001'.toSource()) == '\x001', true);
if (typeof reportCompare === 'function')
reportCompare(true, true);