Base:
method
Visit
Microsoft.CodeAnalysis.CSharp.BoundTreeRewriterWithStackGuard.Visit(Microsoft.CodeAnalysis.CSharp.BoundNode)
9 references to Visit
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\Optimizer.cs (9)
2100return (BoundStatement)scheduler.Visit(src); 2153var left = (BoundExpression)this.Visit(child); 2158var right = (BoundExpression)this.Visit(binary.Right); 2239var right = (BoundExpression)Visit(node.Right); 2316receiverOpt = (BoundExpression?)this.Visit(receiverOpt); 2372exceptionSource = (BoundExpression)Visit(exceptionSource); 2379filterPrologue = (filterPrologue != null) ? (BoundStatementList)this.Visit(filterPrologue) : null; 2383filter = (BoundExpression)this.Visit(filter); 2389body = (BoundBlock)this.Visit(body);