Overload List
        
        | Name | Description | |
|---|---|---|
| 
                 | 
              BuildConstantNode(ASTConstant) | 
                 
            Create an ASTConstant with same value as argument.
             
               | 
            
| 
                 | 
              BuildConstantNode(Object) | 
                 
            Creates an ASTConstant node with specified value. 
            This method should be overwritten by subclasses.
             
               | 
            
| 
                 | 
              BuildConstantNode(IPostfixMathCommand, array<INode>[]()[]) | 
                 
            Creates a constant node whose result is the given function applied to the children.
             
               | 
            
| 
                 | 
              BuildConstantNode(Operator, INode) | 
                 
            Creates a ASTConstant whose value of applying a unary operator to its arguments.
             
               | 
            
| 
                 | 
              BuildConstantNode(Operator, array<INode>[]()[]) | 
                 
            Creates a ASTConstant whose value of applying the operator to its arguments.
             
               | 
            
| 
                 | 
              BuildConstantNode(Operator, INode, INode) | 
                 
            Creates a ASTConstant whose value of applying binary operator to its arguments.
             
               |