-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Browser implementation workarounds
Stephen Hicks edited this page Jun 26, 2017
·
5 revisions
Closure works around a number of browser implementation issues.
- ChakraCore #1496 is an optimizer bug that causes constructor invocations to return the class instead of the instance. Closure Library explicitly checks the user agent for Edge and considers it a non-ES6-compliant browser as a result.
-
ChakraCore #3217 is a bug in
Reflect.construct
that prevents the compiler's super() call transpilation from working correctly. The compiler checks for this bug and uses a slower polyfill that callsReflect.setPrototypeOf
instead.
- TODO(@concavelenz): eval scope issues, etc