js/src/jit-test/tests/jaeger/bug621522.js

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

     2 /* Don't crash. */
     3 function f() {
     4     var x;
     5     x.a;
     6     x = {};
     7 }
     9 try {
    10     f();
    11     assertEq(0, 1);
    12 } catch(e) {
    14 }

mercurial