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 was archived by the owner on Dec 15, 2022. It is now read-only.
// Got expected syntax highlightingconstx=(y,z=1)=>{};functionx(y,z=1){}functionx(y,z=getOne()){}functionx(y,z=newMap()){}// Did not get expected syntax highlightingconstx=(y,z=getOne())=>{};constx=(y,z=newMap())=>{};
I would expect the parameters to be highlighted the same way as they are in the working examples.