//输出语法树结构
 public static void Tree_trace(ExprNode x)
 {
     Parser.PrintSyntaxTree(x, 1);
 }