js/src/jit-test/tests/jaeger/recompile/bug658211.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 function foo(x) {
     2   return bar(x);
     3 }
     4 function bar(x) {
     5   return x.f + 10;
     6 }
     7 var g = Object();
     8 g.f = 10;
     9 assertEq(foo(g), 20);
    10 assertEq(foo(g), 20);
    11 assertEq(foo(g), 20);
    12 eval("g.f = 'three'");
    13 assertEq(foo(g), 'three10');

mercurial