2 instantiations of TryCatchFinallyHandler
System.Linq.Expressions (2)
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
2080new TryCatchFinallyHandler(tryStart, tryEnd, gotoEnd.TargetIndex, 2089new TryCatchFinallyHandler(tryStart, tryEnd, gotoEnd.TargetIndex, exHandlers.ToArray()));
4 references to TryCatchFinallyHandler
System.Linq.Expressions (4)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (3)
263private TryCatchFinallyHandler? _tryHandler; 265internal void SetTryHandler(TryCatchFinallyHandler tryHandler) 271internal TryCatchFinallyHandler? Handler => _tryHandler;
System\Linq\Expressions\Interpreter\LightLambda.cs (1)
59TryCatchFinallyHandler handler = enterTryCatchFinally.Handler!;