Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:Property

104 // Property accessor parameter named 'eval'.
107 // Property accessor parameter named 'arguments'.
337 // object literal with string literal property names
461 delete o.property;
470 Object.defineProperty(object, "property", { value: "property_value" });
476 assertEquals(object.property, "property_value");
779 o.property = "value";
791 Object.defineProperty(o, "property", { value: 7 });
793 assertThrows(function() { o.property = "new value"; }, TypeError);
794 assertThrows(function() { o.property += 10; }, TypeError);
795 assertThrows(function() { o.property -= 10; }, TypeError);
796 assertThrows(function() { o.property *= 10; }, TypeError);
797 assertThrows(function() { o.property /= 10; }, TypeError);
798 assertThrows(function() { o.property++; }, TypeError);
799 assertThrows(function() { o.property--; }, TypeError);
800 assertThrows(function() { ++o.property; }, TypeError);
801 assertThrows(function() { --o.property; }, TypeError);
814 assertEquals(o.property, 7);
821 Object.defineProperty(o, "property", { value: 7 });
1016 pill.property = "value";
1018 assertThrows(function() { 'use strict'; pill.property = "value"; },
1040 pill.property = "value";
1042 assertThrows(function() { 'use strict'; pill.property = "value"; },
1097 property: "property_value",
1103 assertEquals(o.property, "property_value");