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