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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bug fixes
Math.pow constant optimization behaves inconsistently in different versions of node (#2920) (ae8c46c)
use the pow function compiled by AS bootstrap to optimize the constant propagation of pow
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bug fixes
strictly check operator overload ambiguity (#2762) (dfc8a65)
Operator overload is an internal mechanism, it can support to compare user-defined class, but it need to be limited. a == b and b == a should run the same function and get the same result in semantic level. Allowing ambiguity is bug prone.
report error for mulitple union type (#2872) (1847c8f)