Ejemplo n.º 1
0
        public string Pretty(bool printPos = false)
        {
            string prettyPos = "";

            if (printPos)
            {
                prettyPos = $", pos: {Position.Pretty()}";
            }
            return($"ExprNode(value: {Value.Pretty()}{prettyPos})");
        }