src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Extensions\Symbols\ISymbolExtensions_Accessibility.cs (9)
45return IsSymbolAccessibleCore(symbol, within, throughType, out _);
71return IsSymbolAccessibleCore(symbol, within, throughType, out failedThroughTypeCheck);
98return IsSymbolAccessibleCore(((IAliasSymbol)symbol).Target, within, throughType, out failedThroughTypeCheck);
101return IsSymbolAccessibleCore(((IArrayTypeSymbol)symbol).ElementType, within, null, out failedThroughTypeCheck);
104return IsSymbolAccessibleCore(((IPointerTypeSymbol)symbol).PointedAtType, within, null, out failedThroughTypeCheck);
108if (!IsSymbolAccessibleCore(funcPtrSignature.ReturnType, within, null, out failedThroughTypeCheck))
115if (!IsSymbolAccessibleCore(param.Type, within, null, out failedThroughTypeCheck))
165return IsSymbolAccessibleCore(pointerType.PointedAtType, within, null, out failedThroughTypeCheck);
197!IsSymbolAccessibleCore(typeArg, within, null, out _))