11 references to OperatorToken
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1824
=> node.Update((PatternSyntax?)Visit(node.Left) ?? throw new ArgumentNullException("left"), VisitToken(node.
OperatorToken
), (PatternSyntax?)Visit(node.Right) ?? throw new ArgumentNullException("right"));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
5828
if (left != this.Left || operatorToken != this.
OperatorToken
|| right != this.Right)
5838
public BinaryPatternSyntax WithLeft(PatternSyntax left) => Update(left, this.
OperatorToken
, this.Right);
5840
public BinaryPatternSyntax WithRight(PatternSyntax right) => Update(this.Left, this.
OperatorToken
, right);
Binder\Binder_Patterns.cs (2)
2503
MessageID.IDS_FeatureOrPattern.CheckFeatureAvailability(diagnostics, node.
OperatorToken
);
2523
MessageID.IDS_FeatureAndPattern.CheckFeatureAvailability(diagnostics, node.
OperatorToken
);
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
src\roslyn\src\Analyzers\CSharp\Analyzers\AddRequiredParentheses\CSharpAddRequiredPatternParenthesesDiagnosticAnalyzer.cs (1)
34
return (binaryPattern.Left, binaryPattern.
OperatorToken
, binaryPattern.Right);
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1418
operatorToken = binaryPattern.
OperatorToken
;
Microsoft.CodeAnalysis.CSharp.Features (1)
src\roslyn\src\Analyzers\CSharp\Analyzers\AddRequiredParentheses\CSharpAddRequiredPatternParenthesesDiagnosticAnalyzer.cs (1)
34
return (binaryPattern.Left, binaryPattern.
OperatorToken
, binaryPattern.Right);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1418
operatorToken = binaryPattern.
OperatorToken
;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1418
operatorToken = binaryPattern.
OperatorToken
;