Ejemplo n.º 1
0
 public void PrintTree()
 {
     PrintVisitor visitor = new PrintVisitor();
     Console.WriteLine("Starting to print AST ");
     visitor.PrintTree(CurrentSemanticValue);
 }