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
The reason will be displayed to describe this comment to others. Learn more.
I'm very glad to see you implementing Reflect also. The reason I started to implement it for es6-shim was to get it into 6to5, which just recently switched to core.js. I'm surprised that it hasn't been shimmed earlier.
The reason will be displayed to describe this comment to others. Learn more.
@Victorystick I'm not sure that it is really needed. Completely - only for playig with Proxy in FF. Without Proxy usefull only Reflect.ownKeys and Reflect.construct. Reflect.construct can help with spreading for constructors in 6to5, but for replace _applyConstructor it must be available in es6-shim too. Standalone shim with wrapper for old style V8 Proxy available in harmony-reflect.
0047c98
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm very glad to see you implementing Reflect also. The reason I started to implement it for es6-shim was to get it into 6to5, which just recently switched to core.js. I'm surprised that it hasn't been shimmed earlier.
0047c98
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Victorystick I'm not sure that it is really needed. Completely - only for playig with
Proxy
in FF. WithoutProxy
usefull onlyReflect.ownKeys
andReflect.construct
.Reflect.construct
can help with spreading for constructors in 6to5, but for replace_applyConstructor
it must be available in es6-shim too. Standalone shim with wrapper for old style V8Proxy
available in harmony-reflect.