Home | History | Annotate | Download | only in mjsunit

Lines Matching defs:obj1

32 var obj1 = {x: 10, y: 11, z: "test"};
64 assertTrue(sameValueBoth(obj1, obj1));
71 assertFalse(sameValueBoth(obj1, obj2));
74 assertFalse(sameValueBoth(obj1, true));
75 assertFalse(sameValueBoth(obj1, "foo"));
76 assertFalse(sameValueBoth(obj1, 1));
77 assertFalse(sameValueBoth(obj1, undefined));
78 assertFalse(sameValueBoth(obj1, NaN));
83 assertFalse(sameValueBoth(undefined, obj1));
89 assertFalse(sameValueBoth(NaN, obj1));
94 assertFalse(sameValueBoth("foo", obj1));
99 assertFalse(sameValueBoth(true, obj1));
105 assertFalse(sameValueBoth(1, obj1));