1 instantiation of BinaryPatternSyntax
Microsoft.CodeAnalysis.CSharp (1)
55 references to BinaryPatternSyntax
Microsoft.CodeAnalysis.CSharp (23)
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
5825public BinaryPatternSyntax Update(PatternSyntax left, SyntaxToken operatorToken, PatternSyntax right)
5829var newNode = SyntaxFactory.BinaryPattern(this.Kind(), left, operatorToken, right);
5837public BinaryPatternSyntax WithLeft(PatternSyntax left) => Update(left, this.OperatorToken, this.Right);
5838public BinaryPatternSyntax WithOperatorToken(SyntaxToken operatorToken) => Update(this.Left, operatorToken, this.Right);
5839public BinaryPatternSyntax WithRight(PatternSyntax right) => Update(this.Left, this.OperatorToken, right);
Binder\Binder_Patterns.cs (6)
380BinaryPatternSyntax p => BindBinaryPattern(p, ref unionType, inputType, permitDesignations, hasErrors, diagnostics, hasUnionMatching: out hasUnionMatching),
2184BinaryPatternSyntax node,
2194var binaryPatternStack = ArrayBuilder<(BinaryPatternSyntax pat, bool permitDesignations)>.GetInstance();
2195BinaryPatternSyntax? currentNode = node;
2201currentNode = currentNode.Left as BinaryPatternSyntax;
2236BinaryPatternSyntax node,
Microsoft.CodeAnalysis.CSharp.CodeStyle (11)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
Microsoft.CodeAnalysis.CSharp.Features (7)
Microsoft.CodeAnalysis.CSharp.Workspaces (6)
Roslyn.Diagnostics.CSharp.Analyzers (6)