Lines Matching full:props
488 var props = %GetOwnProperty(ToObject(obj), ToString(p));
490 if (IS_UNDEFINED(props)) return void 0;
493 if (props[0]) {
494 desc.setGet(props[1]);
495 desc.setSet(props[2]);
497 desc.setValue(props[1]);
498 desc.setWritable(props[2]);
500 desc.setEnumerable(props[3]);
501 desc.setConfigurable(props[4]);
680 var props = ToObject(properties);
682 for (var key in props) {
683 if (%HasLocalProperty(props, key)) {
685 var value = props[key];