Exemplo n.º 1
0
 internal void RegisterGoto(GotoStatement gotostat)
 {
     m_ScopeTreeHead.RegisterGoto(gotostat);
 }
Exemplo n.º 2
0
		internal void RegisterGoto(GotoStatement gotostat)
		{
			m_Frames.Last().RegisterGoto(gotostat);
		}
Exemplo n.º 3
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);
        }
Exemplo n.º 4
0
		internal void RegisterGoto(GotoStatement gotostat)
		{
			m_Gotos.Add(gotostat);
		}
Exemplo n.º 5
0
 internal void RegisterGoto(GotoStatement gotostat)
 {
     _gotos.Add(gotostat);
 }