Base:
method
Visit
Microsoft.CodeAnalysis.CSharp.BoundTreeRewriterWithStackGuard.Visit(Microsoft.CodeAnalysis.CSharp.BoundNode)
9 references to Visit
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\Optimizer.cs (9)
2041return (BoundStatement)scheduler.Visit(src); 2094var left = (BoundExpression)this.Visit(child); 2099var right = (BoundExpression)this.Visit(binary.Right); 2179var right = (BoundExpression)Visit(node.Right); 2256receiverOpt = (BoundExpression?)this.Visit(receiverOpt); 2312exceptionSource = (BoundExpression)Visit(exceptionSource); 2319filterPrologue = (filterPrologue != null) ? (BoundStatementList)this.Visit(filterPrologue) : null; 2323filter = (BoundExpression)this.Visit(filter); 2329body = (BoundBlock)this.Visit(body);