50 references to GreaterThanGreaterThanEqualsToken
Microsoft.CodeAnalysis.CSharp (14)
Binder\Semantics\Operators\OperatorFacts.cs (1)
108case SyntaxKind.GreaterThanGreaterThanEqualsToken: return WellKnownMemberNames.RightShiftAssignmentOperatorName;
Parser\Blender.Reader.cs (1)
304case SyntaxKind.GreaterThanGreaterThanEqualsToken:
Parser\DocumentationCommentParser.cs (3)
1073SyntaxKind.GreaterThanGreaterThanEqualsToken, 1111operatorToken = tryParseCompoundAssignmentOperatorToken(operatorToken, SyntaxKind.GreaterThanGreaterThanEqualsToken); 1128Debug.Assert(kind is not (SyntaxKind.GreaterThanGreaterThanEqualsToken or SyntaxKind.GreaterThanGreaterThanGreaterThanEqualsToken)); // Reaching this code path is not expected
Parser\LanguageParser.cs (4)
3959opToken = SyntaxFactory.Token(opToken.GetLeadingTrivia(), SyntaxKind.GreaterThanGreaterThanEqualsToken, opToken2.GetTrailingTrivia()); 11422token1Kind = SyntaxKind.GreaterThanGreaterThanEqualsToken; 11450if (operatorTokenKind is SyntaxKind.GreaterThanGreaterThanToken or SyntaxKind.GreaterThanGreaterThanEqualsToken) 12812case SyntaxKind.GreaterThanGreaterThanEqualsToken:
Syntax\SyntaxKindFacts.cs (5)
551case SyntaxKind.GreaterThanGreaterThanEqualsToken: 727case SyntaxKind.GreaterThanGreaterThanEqualsToken: 753case SyntaxKind.GreaterThanGreaterThanEqualsToken: 1141case WellKnownMemberNames.RightShiftAssignmentOperatorName: return SyntaxKind.GreaterThanGreaterThanEqualsToken; 1543case SyntaxKind.GreaterThanGreaterThanEqualsToken:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
427case SyntaxKind.GreaterThanGreaterThanEqualsToken:
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (3)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs (1)
2241or SyntaxKind.GreaterThanGreaterThanEqualsToken
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\LanguageServices\CSharpTypeInferenceService.TypeInferrer.cs (2)
961case SyntaxKind.GreaterThanGreaterThanEqualsToken: 1063case SyntaxKind.GreaterThanGreaterThanEqualsToken:
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (1)
Symbols\UserDefinedCompoundAssignmentOperatorsTests.cs (1)
7886">>=" => SyntaxKind.GreaterThanGreaterThanEqualsToken,
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\NullConditionalAssignmentTests.cs (1)
89[InlineData(SyntaxKind.GreaterThanGreaterThanEqualsToken)]
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (24)
Parsing\CrefParsingTests.cs (12)
544[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 580[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 617[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 663[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 712[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 769[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 1120[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 1165[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 1211[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 1266[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 1323[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 1388[InlineData("}}=", SyntaxKind.GreaterThanGreaterThanEqualsToken)]
Parsing\ExpressionParsingTests.cs (2)
695TestAssignment(SyntaxKind.GreaterThanGreaterThanEqualsToken); 6790N(SyntaxKind.GreaterThanGreaterThanEqualsToken);
Parsing\MemberDeclarationParsingTests.cs (9)
12390[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 12443[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 12497[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 12558[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 13479[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 13545[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 13620[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 13669[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)] 13726[InlineData(">>=", SyntaxKind.GreaterThanGreaterThanEqualsToken)]
Parsing\NullConditionalAssignmentParsingTests.cs (1)
343[InlineData(SyntaxKind.GreaterThanGreaterThanEqualsToken)]
Microsoft.CodeAnalysis.CSharp.Workspaces (5)
Classification\ClassificationHelpers.cs (1)
429case SyntaxKind.GreaterThanGreaterThanEqualsToken:
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
427case SyntaxKind.GreaterThanGreaterThanEqualsToken:
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs (1)
2241or SyntaxKind.GreaterThanGreaterThanEqualsToken
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\LanguageServices\CSharpTypeInferenceService.TypeInferrer.cs (2)
961case SyntaxKind.GreaterThanGreaterThanEqualsToken: 1063case SyntaxKind.GreaterThanGreaterThanEqualsToken:
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
MetadataAsSource\MetadataAsSourceTests.CSharp.cs (1)
891">>=" => SyntaxKind.GreaterThanGreaterThanEqualsToken,