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