src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\ISymbolExtensions_Accessibility.cs (9)
43return IsSymbolAccessibleCore(symbol, within, throughType, out _);
69return IsSymbolAccessibleCore(symbol, within, throughType, out failedThroughTypeCheck);
96return IsSymbolAccessibleCore(((IAliasSymbol)symbol).Target, within, throughType, out failedThroughTypeCheck);
99return IsSymbolAccessibleCore(((IArrayTypeSymbol)symbol).ElementType, within, null, out failedThroughTypeCheck);
102return IsSymbolAccessibleCore(((IPointerTypeSymbol)symbol).PointedAtType, within, null, out failedThroughTypeCheck);
106if (!IsSymbolAccessibleCore(funcPtrSignature.ReturnType, within, null, out failedThroughTypeCheck))
113if (!IsSymbolAccessibleCore(param.Type, within, null, out failedThroughTypeCheck))
162return IsSymbolAccessibleCore(pointerType.PointedAtType, within, null, out failedThroughTypeCheck);
194!IsSymbolAccessibleCore(typeArg, within, null, out _))