diff src/pt-loop.h @ 3485:e5d5848370c9

[project @ 2000-01-28 02:07:35 by jwe]
author jwe
date Fri, 28 Jan 2000 02:07:38 +0000
parents 8b1f46ac2b64
children 0689afb1d001
line wrap: on
line diff
--- a/src/pt-loop.h	Thu Jan 27 23:30:48 2000 +0000
+++ b/src/pt-loop.h	Fri Jan 28 02:07:38 2000 +0000
@@ -84,40 +84,6 @@
   tree_while_command& operator = (const tree_while_command&);
 };
 
-// Do-While.
-
-class
-tree_do_while_command : public tree_while_command
-{
-public:
-
-  tree_do_while_command (int l = -1, int c = -1)
-    : tree_while_command (l, c) { }
-
-  tree_do_while_command (tree_expression *e, int l = -1, int c = -1)
-    : tree_while_command (e, l, c) { }
-
-  tree_do_while_command (tree_expression *e, tree_statement_list *lst,
-		      int l = -1, int c = -1)
-    : tree_while_command (e, lst, l, c) { }
-
-  ~tree_do_while_command (void) { }
-
-  void eval (void);
-
-  void eval_error (void);
-
-  void accept (tree_walker& tw);
-
-private:
-
-  // No copying!
-
-  tree_do_while_command (const tree_do_while_command&);
-
-  tree_do_while_command& operator = (const tree_do_while_command&);
-};
-
 // Do-Until.
 
 class