Exemple #1
0
 public WhileNode(AbstractSyntaxNode <BooleanScriptType> condition, SequenceNode sequence)
 {
     this.condition = condition;
     this.sequence  = sequence;
 }
Exemple #2
0
 public OperateNode(AbstractSyntaxNode <AnyScriptType> left, AbstractSyntaxNode <AnyScriptType> right, TokenType type)
 {
     this.left  = left;
     this.right = right;
     this.type  = type;
 }
Exemple #3
0
 public IfNode(AbstractSyntaxNode <BooleanScriptType> contidition, SequenceNode tureNode, SequenceNode falseNode)
 {
     this.contidition = contidition;
     this.tureNode    = tureNode;
     this.falseNode   = falseNode;
 }