public virtual bool exprVisit(TParseTreeNode pNode, bool isLeafNode)
        {
            string sign = "";

            if (isLeafNode)
            {
                sign = "*";
            }
            Console.WriteLine(sign + pNode.GetType().ToString() + " " + pNode.ToString());
            return(true);
        }