Lines Matching defs:moe
84 array_proto.moe = 'joe';
86 assertEquals(a["moe"], 'joe');
92 // When we take moe off the prototype it disappears from all arrays.
93 array_proto.moe = undefined;
94 assertEquals("undefined", typeof(c.moe));
154 Array.prototype.moe = 'joe';
156 assertEquals(a["moe"], 'joe');
161 // moe was not copied, but we can see it through the prototype
162 assertEquals("joe", c.moe);
164 // When we take moe off the prototype it disappears from all arrays.
165 Array.prototype.moe = undefined;
166 assertEquals("undefined", typeof(c.moe));