Catrobat.IDE.Core.Xml.XmlObjects.Formulas.XmlFormulaTreeFactory.CreateParenthesesNode C# (CSharp) Метод

CreateParenthesesNode() публичный статический Метод

public static CreateParenthesesNode ( XmlFormulaTree child ) : XmlFormulaTree
child XmlFormulaTree
Результат XmlFormulaTree
        public static XmlFormulaTree CreateParenthesesNode(XmlFormulaTree child)
        {
            return new XmlFormulaTree
            {
                VariableType = "BRACKET",
                VariableValue = null, 
                LeftChild = null,
                RightChild = child
            };
        }