Beispiel #1
0
        internal void RegisterGoto(GotoStatement gotostat)
        {
            if (m_PendingGotos == null)
            {
                m_PendingGotos = new List <GotoStatement>();
            }

            m_PendingGotos.Add(gotostat);
            gotostat.SetDefinedVars(m_DefinedNames.Count, m_LastDefinedName);
        }
        internal void RegisterGoto(GotoStatement gotostat)
        {
            if (_pendingGotos == null)
            {
                _pendingGotos = new List <GotoStatement>();
            }

            _pendingGotos.Add(gotostat);
            gotostat.SetDefinedVars(_definedNames.Count, _lastDefinedName);
        }