1 instantiation of BinaryPatternSyntax
Microsoft.CodeAnalysis.CSharp (1)
55 references to BinaryPatternSyntax
Microsoft.CodeAnalysis.CSharp (23)
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
5881public BinaryPatternSyntax Update(PatternSyntax left, SyntaxToken operatorToken, PatternSyntax right)
5885var newNode = SyntaxFactory.BinaryPattern(this.Kind(), left, operatorToken, right);
5893public BinaryPatternSyntax WithLeft(PatternSyntax left) => Update(left, this.OperatorToken, this.Right);
5894public BinaryPatternSyntax WithOperatorToken(SyntaxToken operatorToken) => Update(this.Left, operatorToken, this.Right);
5895public BinaryPatternSyntax WithRight(PatternSyntax right) => Update(this.Left, this.OperatorToken, right);
Binder\Binder_Patterns.cs (6)
712BinaryPatternSyntax p => BindBinaryPattern(p, ref unionType, inputType, permitDesignations, hasErrors, diagnostics, hasUnionMatching: out hasUnionMatching),
2567BinaryPatternSyntax node,
2577var binaryPatternStack = ArrayBuilder<(BinaryPatternSyntax pat, bool permitDesignations)>.GetInstance();
2578BinaryPatternSyntax? currentNode = node;
2584currentNode = currentNode.Left as BinaryPatternSyntax;
2619BinaryPatternSyntax 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)