Lines Matching defs:get
61 var fooGetter = { foo: { get: function() { return ctr3++; }}}; method
63 var fooAmbiguous = { foo: { get: function() { return ctr3++; }, method
124 enumerable: { get: function() { method
128 configurable: { get: function() { method
132 value: { get: function() { method
136 writable: { get: function() { method
140 get: { get: function() { method
144 set: { get: function() { method
152 var magicValueProps = { foo: Object.create(null, { value: { get: valueGet }})}; property
153 var magicGetterProps = { foo: Object.create(null, { get: { get: getterGet }})}; property
175 writable: { get: function() { method
202 Object.create(null, {foo: { get: 0 }}); property
216 Object.create(null, {foo: { set: 0, get: 0 }}); property