Base:
method
InstrumentGotoStatement
Microsoft.CodeAnalysis.CSharp.Instrumenter.InstrumentGotoStatement(Microsoft.CodeAnalysis.CSharp.BoundGotoStatement, Microsoft.CodeAnalysis.CSharp.BoundStatement)
3 overrides of InstrumentGotoStatement
Microsoft.CodeAnalysis.CSharp (3)
Lowering\Instrumentation\CodeCoverageInstrumenter.cs (1)
344public override BoundStatement InstrumentGotoStatement(BoundGotoStatement original, BoundStatement rewritten)
Lowering\Instrumentation\DebugInfoInjector.cs (1)
158public override BoundStatement InstrumentGotoStatement(BoundGotoStatement original, BoundStatement rewritten)
Lowering\Instrumentation\ModuleCancellationInstrumenter.cs (1)
115public override BoundStatement InstrumentGotoStatement(BoundGotoStatement original, BoundStatement rewritten)
3 references to InstrumentGotoStatement
Microsoft.CodeAnalysis.CSharp (3)
Lowering\Instrumentation\CodeCoverageInstrumenter.cs (1)
346return AddDynamicAnalysis(original, base.InstrumentGotoStatement(original, rewritten));
Lowering\Instrumentation\DebugInfoInjector.cs (1)
160return AddSequencePoint(base.InstrumentGotoStatement(original, rewritten));
Lowering\Instrumentation\ModuleCancellationInstrumenter.cs (1)
116=> InstrumentStatement(base.InstrumentGotoStatement(original, rewritten));