Base:
method
Visit
Microsoft.CodeAnalysis.CSharp.BoundTreeRewriterWithStackGuard.Visit(Microsoft.CodeAnalysis.CSharp.BoundNode)
9 references to Visit
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\Optimizer.cs (9)
2051
return (BoundStatement)scheduler.
Visit
(src);
2104
var left = (BoundExpression)this.
Visit
(child);
2109
var right = (BoundExpression)this.
Visit
(binary.Right);
2189
var right = (BoundExpression)
Visit
(node.Right);
2266
receiverOpt = (BoundExpression?)this.
Visit
(receiverOpt);
2322
exceptionSource = (BoundExpression)
Visit
(exceptionSource);
2329
filterPrologue = (filterPrologue != null) ? (BoundStatementList)this.
Visit
(filterPrologue) : null;
2333
filter = (BoundExpression)this.
Visit
(filter);
2339
body = (BoundBlock)this.
Visit
(body);