js/src/tests/ecma_5/extensions/strict-function-toSource.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 /*
     2  * Bug 800407 - Functions defined with Function construcor
     3  * do have strict mode when JSOPTION_STRICT_MODE is on.
     4  */
     6 options("strict_mode");
     7 function testRunOptionStrictMode(str, arg, result) {
     8     var strict_inner = new Function('return typeof this == "undefined";');
     9     return strict_inner;
    10 }
    11 assertEq(eval(uneval(testRunOptionStrictMode()))(), true);
    13 if (typeof decompileBody !== "undefined") {
    14     assertEq(decompileBody(new Function('x', 'return x*2;')).contains('\n"use strict"'), true);
    15 }
    17 reportCompare(true, true);

mercurial