internal void RegisterGoto(GotoStatement gotostat) { m_ScopeTreeHead.RegisterGoto(gotostat); }
internal void RegisterGoto(GotoStatement gotostat) { m_Frames.Last().RegisterGoto(gotostat); }
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) { m_Gotos.Add(gotostat); }
internal void RegisterGoto(GotoStatement gotostat) { _gotos.Add(gotostat); }