1 override of InstrumentForEachStatementConditionalGotoStart
Microsoft.CodeAnalysis.CSharp (1)
Lowering\Instrumentation\CompoundInstrumenter.cs (1)
124public override BoundStatement InstrumentForEachStatementConditionalGotoStart(BoundForEachStatement original, BoundStatement branchBack)
3 references to InstrumentForEachStatementConditionalGotoStart
Microsoft.CodeAnalysis.CSharp (3)
Lowering\Instrumentation\CompoundInstrumenter.cs (1)
126return Previous.InstrumentForEachStatementConditionalGotoStart(original, branchBack);
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (1)
149branchBack = Instrumenter.InstrumentForEachStatementConditionalGotoStart((BoundForEachStatement)original, branchBack);
Lowering\LocalRewriter\LocalRewriter_WhileStatement.cs (1)
79ifConditionGotoStart = Instrumenter.InstrumentForEachStatementConditionalGotoStart((BoundForEachStatement)loop, ifConditionGotoStart);