Test if the given node has the given SymbolFlags set.
SymbolFlags
declare const symbol: ts.Symbol;if (isSymbolFlagSet(symbol, ts.SymbolFlags.Accessor)) { // ...} Copy
declare const symbol: ts.Symbol;if (isSymbolFlagSet(symbol, ts.SymbolFlags.Accessor)) { // ...}
Test if the given node has the given
SymbolFlags
set.