Home | History | Annotate | Download | only in harmony

Lines Matching defs:moe

554     array_proto.moe = 'joe';
556 assertEquals(a["moe"], 'joe');
562 // When we take moe off the prototype it disappears from all arrays.
563 array_proto.moe = undefined;
564 assertEquals("undefined", typeof(c.moe));
624 Array.prototype.moe = 'joe';
626 assertEquals(a["moe"], 'joe');
631 // moe was not copied, but we can see it through the prototype
632 assertEquals("joe", c.moe);
634 // When we take moe off the prototype it disappears from all arrays.
635 Array.prototype.moe = undefined;
636 assertEquals("undefined", typeof(c.moe));
712 delete Array.prototype["moe"];