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