js/src/jit-test/tests/truthiness/obj-obj-not-equal.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 function f(v1, v2, value)
     2 {
     3   var b = v1 != v2;
     4   assertEq(b, value,
     5            "failed: " + v1 + ", " + v2 + ": " + value);
     6 }
     8 var obj = {};
     9 var emul = objectEmulatingUndefined();
    11 f(obj, obj, false);
    12 f(obj, obj, false);
    13 f(emul, obj, true);
    14 f(emul, obj, true);
    15 f(obj, emul, true);
    16 f(obj, emul, true);
    17 f(Object.prototype, obj, true);
    18 f(Object.prototype, obj, true);
    19 f(emul, emul, false);
    20 f(objectEmulatingUndefined(), emul, true);
    21 f(objectEmulatingUndefined(), emul, true);
    22 f(emul, objectEmulatingUndefined(), true);
    23 f(emul, objectEmulatingUndefined(), true);

mercurial