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