diff src/pt-misc.h @ 723:1c072f20b522

[project @ 1994-09-21 16:00:10 by jwe]
author jwe
date Wed, 21 Sep 1994 16:00:10 +0000
parents 066e1551639c
children e6cb0493ae99
line wrap: on
line diff
--- a/src/pt-misc.h
+++ b/src/pt-misc.h
@@ -43,6 +43,7 @@
 class tree_argument_list;
 class tree_parameter_list;
 class tree_return_list;
+class tree_va_return_list;
 class tree_global;
 class tree_global_init_list;
 
@@ -50,6 +51,7 @@
 
 #include "tree-base.h"
 #include "tree-expr.h"
+#include "tree-const.h"
 #include "tree-cmd.h"
 
 // A list of expressions and commands to be executed.
@@ -189,7 +191,7 @@
 
   int is_defined (void);
 
-  Octave_object convert_to_const_vector (void);
+  Octave_object convert_to_const_vector (tree_va_return_list *vr_list);
 
   void print_code (ostream& os);
 
@@ -222,6 +224,15 @@
   void print_code (ostream& os);
 };
 
+class
+tree_va_return_list : public SLList<tree_constant>
+{
+public:
+  tree_va_return_list (void) : SLList<tree_constant> () { }
+
+  ~tree_va_return_list (void) { }
+};
+
 // List of expressions that make up a global statement.
 
 class