Base:
method
Visit
Microsoft.CodeAnalysis.CSharp.BoundTreeRewriterWithStackGuard.Visit(Microsoft.CodeAnalysis.CSharp.BoundNode)
9 references to Visit
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\Optimizer.cs (9)
2042return (BoundStatement)scheduler.Visit(src); 2095var left = (BoundExpression)this.Visit(child); 2100var right = (BoundExpression)this.Visit(binary.Right); 2180var right = (BoundExpression)Visit(node.Right); 2257receiverOpt = (BoundExpression?)this.Visit(receiverOpt); 2313exceptionSource = (BoundExpression)Visit(exceptionSource); 2320filterPrologue = (filterPrologue != null) ? (BoundStatementList)this.Visit(filterPrologue) : null; 2324filter = (BoundExpression)this.Visit(filter); 2330body = (BoundBlock)this.Visit(body);