js/src/jit-test/tests/baseline/bug844383.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 s = newGlobal()
     2 try {
     3     evalcx("\
     4         function g() {\
     5             h()\
     6         }\
     7         for (p in this) {\
     8             function h(h) {\
     9                 ''instanceof 5\
    10             }\
    11         }\
    12         h.valueOf=g;\
    13         h==9\
    14     ", s)
    15 } catch (e) {}
    16 try {
    17     evalcx("throw h", s)
    18 } catch (e) {
    19     try {
    20 	"" + e
    21     } catch(e) {}
    22 }

mercurial