将以往的代码复制到代码库
This commit is contained in:
16
Future.Platform/Instruction/Control/Return.cs
Normal file
16
Future.Platform/Instruction/Control/Return.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
/// <summary>
|
||||
/// 指令返回:退出一个Struct类型的指令空间(放弃后续指令)
|
||||
/// </summary>
|
||||
public class Return //: LogicalInstructBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
16
Future.Platform/Instruction/Control/SetValue.cs
Normal file
16
Future.Platform/Instruction/Control/SetValue.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
/// <summary>
|
||||
/// 变量赋值:设置一个上下文参数的值,同时更新这个表达式在系统中的参数值
|
||||
/// </summary>
|
||||
public class SetValue //: LogicalInstructBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
16
Future.Platform/Instruction/Control/Variable.cs
Normal file
16
Future.Platform/Instruction/Control/Variable.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Future.Platform
|
||||
{
|
||||
/// <summary>
|
||||
/// 变量声明:声明一个上下文变量,如果变量存在则重置这个变量的值
|
||||
/// </summary>
|
||||
public class Variable// : LogicalInstructBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user