Base:
method
Visit
Microsoft.CodeAnalysis.CSharp.BoundTreeRewriterWithStackGuard.Visit(Microsoft.CodeAnalysis.CSharp.BoundNode)
9 references to Visit
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\Optimizer.cs (9)
2102return (BoundStatement)scheduler.Visit(src); 2155var left = (BoundExpression)this.Visit(child); 2160var right = (BoundExpression)this.Visit(binary.Right); 2241var right = (BoundExpression)Visit(node.Right); 2318receiverOpt = (BoundExpression?)this.Visit(receiverOpt); 2374exceptionSource = (BoundExpression)Visit(exceptionSource); 2381filterPrologue = (filterPrologue != null) ? (BoundStatementList)this.Visit(filterPrologue) : null; 2385filter = (BoundExpression)this.Visit(filter); 2391body = (BoundBlock)this.Visit(body);