(key)
| 10032 | wrappers.set(window.Event.prototype, Event2); |
| 10033 | } |
| 10034 | function defineRedirectDescriptor(key) { |
| 10035 | return { |
| 10036 | get() { |
| 10037 | return pd(this).event[key]; |
| 10038 | }, |
| 10039 | set(value) { |
| 10040 | pd(this).event[key] = value; |
| 10041 | }, |
| 10042 | configurable: true, |
| 10043 | enumerable: true |
| 10044 | }; |
| 10045 | } |
| 10046 | function defineCallDescriptor(key) { |
| 10047 | return { |
| 10048 | value() { |
no outgoing calls
no test coverage detected
searching dependent graphs…