You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am learning Decorators and found issue running in IE11, but no problem in chrome and Edge....
only in IE11, Relect.getMetadata() will return undefined.... but in Chrome and edge.. there is no problem.. I only post related part here
function validate<T>(target: any, propertyKey: string, descriptor: TypedPropertyDescriptor<T>) {
let set = descriptor.set;
descriptor.set = function (value: T) {
let type = Reflect.getMetadata("design:type", target, propertyKey); // return undefined.
The text was updated successfully, but these errors were encountered:
jbedard
pushed a commit
to jbedard/reflect-metadata
that referenced
this issue
Feb 11, 2017
I am learning Decorators and found issue running in IE11, but no problem in chrome and Edge....
only in IE11, Relect.getMetadata() will return undefined.... but in Chrome and edge.. there is no problem.. I only post related part here
The text was updated successfully, but these errors were encountered: