Base:
method
Visit
Microsoft.CodeAnalysis.CSharp.BoundTreeRewriterWithStackGuard.Visit(Microsoft.CodeAnalysis.CSharp.BoundNode)
9 references to Visit
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\Optimizer.cs (9)
1975return (BoundStatement)scheduler.Visit(src); 2028var left = (BoundExpression)this.Visit(child); 2033var right = (BoundExpression)this.Visit(binary.Right); 2113var right = (BoundExpression)Visit(node.Right); 2140receiverOpt = (BoundExpression?)this.Visit(receiverOpt); 2190exceptionSource = (BoundExpression)Visit(exceptionSource); 2197filterPrologue = (filterPrologue != null) ? (BoundStatementList)this.Visit(filterPrologue) : null; 2201filter = (BoundExpression)this.Visit(filter); 2207body = (BoundBlock)this.Visit(body);