Lines Matching refs:prop
195 [_get] (target, prop, receiver) {
196 if (this[_data].has(prop)) {
197 return this[_data].get(prop)
200 if (this[prop] !== undefined) {
201 return Reflect.get(this, prop, this)
204 return Reflect.get(target, prop, receiver)
208 [_set] (target, prop, value) {
209 if (prop === 'env') {
216 if (prop === 'argv') {
224 return this[_data].set(prop, value)