5 references to GetRightmostName
Microsoft.CodeAnalysis.CSharp.CodeStyle (5)
CSharpRemoveUnnecessaryLambdaExpressionDiagnosticAnalyzer.cs (1)
144var invokedTypeArguments = invokedExpression.GetRightmostName() is GenericNameSyntax genericName
CSharpUseAutoPropertyAnalyzer.cs (1)
85var rightmostName = expression.GetRightmostName()?.Identifier.ValueText;
CSharpUseNameofInNullableAttributeDiagnosticAnalyzer.cs (1)
61var attributeName = attribute.Name.GetRightmostName()?.Identifier.ValueText;
ExpressionSyntaxExtensions.cs (1)
695return conditional.WhenNotNull.GetRightmostName();
TypeStyleHelper.cs (1)
98var memberName = GetRightmostInvocationExpression(initializerExpression).GetRightmostName();