コード例 #1
0
ファイル: Nodes.cs プロジェクト: fdsa-ltd/RapidScriptEngine
 public ForNode(SequenceNode assign, ConditionNode condition, SequenceNode sequence, SequenceNode step)
 {
     this.assign    = assign;
     this.condition = condition;
     this.sequence  = sequence;
     this.step      = step;
 }
コード例 #2
0
ファイル: Nodes.cs プロジェクト: fdsa-ltd/RapidScriptEngine
 public FunctionNode(string name, SequenceNode right)
 {
     this.name  = name;
     this.right = right;
 }
コード例 #3
0
ファイル: Nodes.cs プロジェクト: fdsa-ltd/RapidScriptEngine
 public WhileNode(AbstractSyntaxNode <BooleanScriptType> condition, SequenceNode sequence)
 {
     this.condition = condition;
     this.sequence  = sequence;
 }
コード例 #4
0
ファイル: Nodes.cs プロジェクト: fdsa-ltd/RapidScriptEngine
 public IfNode(AbstractSyntaxNode <BooleanScriptType> contidition, SequenceNode tureNode, SequenceNode falseNode)
 {
     this.contidition = contidition;
     this.tureNode    = tureNode;
     this.falseNode   = falseNode;
 }