4 references to Update
Microsoft.CodeAnalysis.CSharp (4)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1816
=> node.
Update
((PatternSyntax?)Visit(node.Left) ?? throw new ArgumentNullException("left"), VisitToken(node.OperatorToken), (PatternSyntax?)Visit(node.Right) ?? throw new ArgumentNullException("right"));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
5837
public BinaryPatternSyntax WithLeft(PatternSyntax left) =>
Update
(left, this.OperatorToken, this.Right);
5838
public BinaryPatternSyntax WithOperatorToken(SyntaxToken operatorToken) =>
Update
(this.Left, operatorToken, this.Right);
5839
public BinaryPatternSyntax WithRight(PatternSyntax right) =>
Update
(this.Left, this.OperatorToken, right);