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
{{ message }}
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
V8 now supports catch statements with no argument binding. Some of the Javascript code in node has begun to take a dependency on this syntax. I added argument bindings back in node-chakracore (via 1f550c9) but we need to remove these when ChakraCore supports this new syntax.
This new concise syntax looks like this, by the way:
try{// do something}catch{// no binding for an argument to catch}
The text was updated successfully, but these errors were encountered:
V8 now supports catch statements with no argument binding. Some of the Javascript code in node has begun to take a dependency on this syntax. I added argument bindings back in node-chakracore (via 1f550c9) but we need to remove these when ChakraCore supports this new syntax.
This new concise syntax looks like this, by the way:
The text was updated successfully, but these errors were encountered: