2 writes to m_currentCatch
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1290
m_currentCatch
= 0;
1341
m_currentCatch
++;
11 references to m_currentCatch
System.Private.CoreLib (11)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
388
current.m_filterAddr[current.
m_currentCatch
- 1] = GetTokenFor(rtType);
src\System\Reflection\Emit\RuntimeILGenerator.cs (10)
1303
int currentCatch =
m_currentCatch
;
1382
Debug.Assert(
m_currentCatch
> 0);
1383
Debug.Assert(m_catchAddr[
m_currentCatch
- 1] > 0);
1384
Debug.Assert(m_catchEndAddr[
m_currentCatch
- 1] == -1);
1385
m_catchEndAddr[
m_currentCatch
- 1] = endAddr;
1431
return
m_currentCatch
;
1460
Debug.Assert(
m_currentCatch
> 0);
1461
Debug.Assert(exc.
m_currentCatch
> 0);
1463
int exclast = exc.
m_currentCatch
- 1;
1464
int last =
m_currentCatch
- 1;