2 writes to _enclosingExceptionHandler
Microsoft.CodeAnalysis (2)
CodeGen\LocalScopeManager.cs (2)
44
_enclosingExceptionHandler
= (ExceptionHandlerScope)scope;
68
_enclosingExceptionHandler
= GetEnclosingExceptionHandler();
4 references to _enclosingExceptionHandler
Microsoft.CodeAnalysis (4)
CodeGen\LocalScopeManager.cs (4)
39
var scope = CurrentScope.OpenScope(scopeType, exceptionType,
_enclosingExceptionHandler
);
47
Debug.Assert(
_enclosingExceptionHandler
== GetEnclosingExceptionHandler());
71
Debug.Assert(
_enclosingExceptionHandler
== GetEnclosingExceptionHandler());
74
internal ExceptionHandlerScope EnclosingExceptionHandler =>
_enclosingExceptionHandler
;