diff src/pt-walk.h @ 8658:73c4516fae10

New evaluator and debugger derived from tree-walker class
author John W. Eaton <jwe@octave.org>
date Wed, 04 Feb 2009 00:47:53 -0500
parents 5b4d278ec828
children eb63fbe60fab
line wrap: on
line diff
--- a/src/pt-walk.h	Tue Feb 03 12:47:38 2009 +0100
+++ b/src/pt-walk.h	Wed Feb 04 00:47:53 2009 -0500
@@ -30,7 +30,8 @@
 class tree_break_command;
 class tree_colon_expression;
 class tree_continue_command;
-class tree_decl_command;
+class tree_global_command;
+class tree_static_command;
 class tree_decl_elt;
 class tree_decl_init_list;
 class tree_simple_for_command;
@@ -89,7 +90,10 @@
   visit_continue_command (tree_continue_command&) = 0;
 
   virtual void
-  visit_decl_command (tree_decl_command&) = 0;
+  visit_global_command (tree_global_command&) = 0;
+
+  virtual void
+  visit_static_command (tree_static_command&) = 0;
 
   virtual void
   visit_decl_elt (tree_decl_elt&) = 0;