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
I acknowledge that issues using this template may be closed without further explanation at the maintainer's discretion.
Comment
SymbolFlagsAll is defined in go as 1 << 30 -1, which go parses as (1 << 30)-1. When this expression is copied to the SymbolFlags enum in TS it is parsed as 1 << (30 -1)
Acknowledgement
Comment
SymbolFlagsAllis defined in go as1 << 30 -1, which go parses as(1 << 30)-1. When this expression is copied to theSymbolFlagsenum in TS it is parsed as1 << (30 -1)