4 references to Update
Microsoft.CodeAnalysis.CSharp (4)
Syntax.xml.Main.Generated.cs (1)
1813
=> 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)
5836
public BinaryPatternSyntax WithLeft(PatternSyntax left) =>
Update
(left, this.OperatorToken, this.Right);
5837
public BinaryPatternSyntax WithOperatorToken(SyntaxToken operatorToken) =>
Update
(this.Left, operatorToken, this.Right);
5838
public BinaryPatternSyntax WithRight(PatternSyntax right) =>
Update
(this.Left, this.OperatorToken, right);