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
// breaks when '{' start in a new line behind a '('constfoo=()=>({num: 1,foo: 'foo',bar: `bar`,// '=' break all following highlightingbaz: `baz=${123}`,});classTestColorextendsFoo{publicinit(){}}
// all will be fineconstfoo=()=>({num: 1,foo: 'foo',bar: `bar`,baz: `baz=${123}`,});classTestColorextendsFoo{publicinit(){}}