Lines Matching refs:prop
207 has(stream, prop) {
209 return (prop in stream) || (prop in ref);
212 get(stream, prop) {
213 switch (prop) {
219 return FunctionPrototypeBind(stream[prop], stream);
222 return stream[prop];
243 const value = ref[prop];
255 set(stream, prop, value) {
256 switch (prop) {
265 stream[prop] = value;
283 ref[prop] = value;