4 references to Update
Microsoft.CodeAnalysis.CSharp (4)
Syntax.xml.Main.Generated.cs (1)
1804
=> node.
Update
((PatternSyntax?)Visit(node.Left) ?? throw new ArgumentNullException("left"), VisitToken(node.OperatorToken), (PatternSyntax?)Visit(node.Right) ?? throw new ArgumentNullException("right"));
Syntax.xml.Syntax.Generated.cs (3)
5792
public BinaryPatternSyntax WithLeft(PatternSyntax left) =>
Update
(left, this.OperatorToken, this.Right);
5793
public BinaryPatternSyntax WithOperatorToken(SyntaxToken operatorToken) =>
Update
(this.Left, operatorToken, this.Right);
5794
public BinaryPatternSyntax WithRight(PatternSyntax right) =>
Update
(this.Left, this.OperatorToken, right);