10 references to UnsafeGetSpecialTypeMethod
Microsoft.CodeAnalysis.CSharp (10)
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (3)
2020var method = UnsafeGetSpecialTypeMethod(syntax, member); 2043method = UnsafeGetSpecialTypeMethod(syntax, member); 2081var method = UnsafeGetSpecialTypeMethod(syntax, member);
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (4)
78lengthGet = UnsafeGetSpecialTypeMethod(forEachSyntax, SpecialMember.System_String__Length); 79indexerGet = UnsafeGetSpecialTypeMethod(forEachSyntax, SpecialMember.System_String__Chars); 1054MethodSymbol getLowerBoundMethod = UnsafeGetSpecialTypeMethod(forEachSyntax, SpecialMember.System_Array__GetLowerBound); 1055MethodSymbol getUpperBoundMethod = UnsafeGetSpecialTypeMethod(forEachSyntax, SpecialMember.System_Array__GetUpperBound);
Lowering\LocalRewriter\LocalRewriter_StringConcat.cs (3)
194var method = UnsafeGetSpecialTypeMethod(originalSyntax, concatMember); 560var method = UnsafeGetSpecialTypeMethod(current.Syntax, member); 615var objectToStringMethod = UnsafeGetSpecialTypeMethod(syntax, SpecialMember.System_Object__ToString);