1 instantiation of BinaryPatternSyntax
Microsoft.CodeAnalysis.CSharp (1)
55 references to BinaryPatternSyntax
Microsoft.CodeAnalysis.CSharp (23)
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
5826public BinaryPatternSyntax Update(PatternSyntax left, SyntaxToken operatorToken, PatternSyntax right)
5830var newNode = SyntaxFactory.BinaryPattern(this.Kind(), left, operatorToken, right);
5838public BinaryPatternSyntax WithLeft(PatternSyntax left) => Update(left, this.OperatorToken, this.Right);
5839public BinaryPatternSyntax WithOperatorToken(SyntaxToken operatorToken) => Update(this.Left, operatorToken, this.Right);
5840public BinaryPatternSyntax WithRight(PatternSyntax right) => Update(this.Left, this.OperatorToken, right);
Binder\Binder_Patterns.cs (6)
620BinaryPatternSyntax p => BindBinaryPattern(p, ref unionType, inputType, permitDesignations, hasErrors, diagnostics, hasUnionMatching: out hasUnionMatching),
2437BinaryPatternSyntax node,
2447var binaryPatternStack = ArrayBuilder<(BinaryPatternSyntax pat, bool permitDesignations)>.GetInstance();
2448BinaryPatternSyntax? currentNode = node;
2454currentNode = currentNode.Left as BinaryPatternSyntax;
2489BinaryPatternSyntax 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)