This repository was archived by the owner on Feb 26, 2024. It is now read-only.
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
registerElement should support callbacks coming from deep prototype chains #52
The following line:
zone.js/zone.js
Line 663 in 26a4dc2
Checks
if (opts.prototype[callback])and then usesObject.getOwnPropertyDescriptor(opts.prototype, callback)to retrieve it. If the callback comes from the prototype chain we cannot usegetOwnPropertyDescriptor.