コード例 #1
0
 internal void RegisterGoto(GotoStatement gotostat)
 {
     m_ScopeTreeHead.RegisterGoto(gotostat);
 }
コード例 #2
0
ファイル: BuildTimeScope.cs プロジェクト: cyecp/moonsharp
		internal void RegisterGoto(GotoStatement gotostat)
		{
			m_Frames.Last().RegisterGoto(gotostat);
		}
コード例 #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);
        }
コード例 #4
0
ファイル: LabelStatement.cs プロジェクト: eddy5641/LuaSharp
		internal void RegisterGoto(GotoStatement gotostat)
		{
			m_Gotos.Add(gotostat);
		}
コード例 #5
0
 internal void RegisterGoto(GotoStatement gotostat)
 {
     _gotos.Add(gotostat);
 }