2 writes to m_currentCatch
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1280
m_currentCatch
= 0;
1331
m_currentCatch
++;
11 references to m_currentCatch
System.Private.CoreLib (11)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
366
current.m_filterAddr[current.
m_currentCatch
- 1] = GetTokenFor(rtType);
src\System\Reflection\Emit\RuntimeILGenerator.cs (10)
1293
int currentCatch =
m_currentCatch
;
1372
Debug.Assert(
m_currentCatch
> 0);
1373
Debug.Assert(m_catchAddr[
m_currentCatch
- 1] > 0);
1374
Debug.Assert(m_catchEndAddr[
m_currentCatch
- 1] == -1);
1375
m_catchEndAddr[
m_currentCatch
- 1] = endAddr;
1421
return
m_currentCatch
;
1450
Debug.Assert(
m_currentCatch
> 0);
1451
Debug.Assert(exc.
m_currentCatch
> 0);
1453
int exclast = exc.
m_currentCatch
- 1;
1454
int last =
m_currentCatch
- 1;