Home | History | Annotate | Download | only in harmony

Lines Matching refs:configurable

26     Object.defineProperty(target, p, {value: 42, configurable: false});
91 // Trap returns trueish and target property is configurable.
97 // Trap returns trueish but target property is not configurable.
99 Object.defineProperty(target, p, {value: 42, configurable: false});
118 Object.defineProperty(target, p, {configurable: false});
125 // Trap returns trueish but target property is not configurable. In contrast
126 // to above, here the target property was configurable before the trap call.
161 // Trap returns falsish and target property is configurable.
171 // Trap returns falsish and target property is not configurable.
173 Object.defineProperty(target, p, {value: 42, configurable: false});