private void m_ExecutionStack_BranchEnded(object sender, BranchEndedEventArgs e)
 {
     if (m_CurrentScope.RootBranch == e.Branch)
     {
         zRemoveCurrentScope();
     }
 }
Beispiel #2
0
        private void zOnBranchEnded(BranchEndedEventArgs e)
        {
            EventHandler <BranchEndedEventArgs> evnt = BranchEnded;

            if (evnt != null)
            {
                evnt(this, e);
            }
        }