diff options
Diffstat (limited to 'js/src/tests/js1_8_5/extensions/toSource-0.js')
-rw-r--r-- | js/src/tests/js1_8_5/extensions/toSource-0.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/tests/js1_8_5/extensions/toSource-0.js b/js/src/tests/js1_8_5/extensions/toSource-0.js new file mode 100644 index 000000000..cdec97be4 --- /dev/null +++ b/js/src/tests/js1_8_5/extensions/toSource-0.js @@ -0,0 +1,14 @@ +/* + * Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/licenses/publicdomain/ + */ + +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); |