Catrobat.IDE.Core.Xml.XmlObjects.Formulas.XmlFormulaTreeFactory.CreateLessEqualNode C# (CSharp) Method

CreateLessEqualNode() public static method

public static CreateLessEqualNode ( XmlFormulaTree leftChild, XmlFormulaTree rightChild ) : XmlFormulaTree
leftChild XmlFormulaTree
rightChild XmlFormulaTree
return XmlFormulaTree
        public static XmlFormulaTree CreateLessEqualNode(XmlFormulaTree leftChild, XmlFormulaTree rightChild)
        {
            return new XmlFormulaTree
            {
                VariableType = "OPERATOR",
                VariableValue = "SMALLER_OR_EQUAL",
                LeftChild = leftChild,
                RightChild = rightChild
            };
        }
        public static XmlFormulaTree CreateGreaterNode(XmlFormulaTree leftChild, XmlFormulaTree rightChild)