2 writes to m_currentCatch
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeILGenerator.cs (2)
1286
m_currentCatch
= 0;
1337
m_currentCatch
++;
11 references to m_currentCatch
System.Private.CoreLib (11)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
372
current.m_filterAddr[current.
m_currentCatch
- 1] = GetTokenFor(rtType);
src\System\Reflection\Emit\RuntimeILGenerator.cs (10)
1299
int currentCatch =
m_currentCatch
;
1378
Debug.Assert(
m_currentCatch
> 0);
1379
Debug.Assert(m_catchAddr[
m_currentCatch
- 1] > 0);
1380
Debug.Assert(m_catchEndAddr[
m_currentCatch
- 1] == -1);
1381
m_catchEndAddr[
m_currentCatch
- 1] = endAddr;
1427
return
m_currentCatch
;
1456
Debug.Assert(
m_currentCatch
> 0);
1457
Debug.Assert(exc.
m_currentCatch
> 0);
1459
int exclast = exc.
m_currentCatch
- 1;
1460
int last =
m_currentCatch
- 1;