コード例 #1
0
 public ktRunStatementClass(ktRunStatement Value)
     : this()
 {
     m_Value = Value;
     m_IsClass = false;
 }
コード例 #2
0
 public ktRunStatementClass()
     : base("ktRunStatement", null, null, false, true)
 {
     m_Value = null;
 }
コード例 #3
0
ファイル: ktBlock.cs プロジェクト: ChrisHinde/KacTalk_NET
        protected ktValue HandleRunStatement(ktList Statement)
        {
#if Debug
	ktDebug.Log( "HrSHRSHRSHRSHRSHRSHRSHRSHRSHRSHRSHRSHRSHRSHRS" );
#endif
            ktValue Value = ktValue.Null;

            if ((Statement == null) || (Statement.IsEmpty()))
            {
                return Value;
            }
#if Debug
	ktDebug.Log( Statement.Get_R() );
#endif
            ktRunStatement RunStatement = new ktRunStatement(Statement, this);

            Value = RunStatement.AsValue();
#if Debug
	ktDebug.Log( "EOHRS" );
#endif
            return Value;
        }