Mercurial > hg > octave-lyh
annotate src/pt-loop.cc @ 11477:a02d00dd3d5f
expm.m: new tests
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 10 Jan 2011 14:50:33 -0500 |
parents | 57a59eae83cc |
children | fd0a3ac60b0e |
rev | line source |
---|---|
2982 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, |
8920 | 4 2006, 2007, 2008, 2009 John W. Eaton |
2982 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
2982 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
2982 | 21 |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include <config.h> | |
26 #endif | |
27 | |
4153 | 28 #include "quit.h" |
29 | |
2982 | 30 #include "error.h" |
31 #include "gripes.h" | |
32 #include "oct-map.h" | |
33 #include "oct-lvalue.h" | |
34 #include "ov.h" | |
35 #include "pt-arg-list.h" | |
3770 | 36 #include "pt-bp.h" |
2982 | 37 #include "pt-cmd.h" |
38 #include "pt-exp.h" | |
2985 | 39 #include "pt-jump.h" |
2982 | 40 #include "pt-loop.h" |
41 #include "pt-stmt.h" | |
42 #include "pt-walk.h" | |
3877 | 43 #include "unwind-prot.h" |
44 | |
2982 | 45 // While. |
46 | |
47 tree_while_command::~tree_while_command (void) | |
48 { | |
49 delete expr; | |
50 delete list; | |
3665 | 51 delete lead_comm; |
52 delete trail_comm; | |
2982 | 53 } |
54 | |
5861 | 55 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
56 tree_while_command::dup (symbol_table::scope_id scope, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
57 symbol_table::context_id context) const |
5861 | 58 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
59 return new tree_while_command (expr ? expr->dup (scope, context) : 0, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
60 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
61 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
62 trail_comm ? trail_comm->dup (): 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
63 line (), column ()); |
5861 | 64 } |
65 | |
2982 | 66 void |
67 tree_while_command::accept (tree_walker& tw) | |
68 { | |
69 tw.visit_while_command (*this); | |
70 } | |
71 | |
3484 | 72 // Do-Until |
73 | |
5861 | 74 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
75 tree_do_until_command::dup (symbol_table::scope_id scope, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
76 symbol_table::context_id context) const |
5861 | 77 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
78 return new tree_do_until_command (expr ? expr->dup (scope, context) : 0, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
79 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
80 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
81 trail_comm ? trail_comm->dup (): 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
82 line (), column ()); |
5861 | 83 } |
84 | |
3484 | 85 void |
86 tree_do_until_command::accept (tree_walker& tw) | |
87 { | |
88 tw.visit_do_until_command (*this); | |
89 } | |
90 | |
2982 | 91 // For. |
92 | |
93 tree_simple_for_command::~tree_simple_for_command (void) | |
94 { | |
95 delete expr; | |
96 delete list; | |
3665 | 97 delete lead_comm; |
98 delete trail_comm; | |
2982 | 99 } |
100 | |
5861 | 101 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
102 tree_simple_for_command::dup (symbol_table::scope_id scope, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
103 symbol_table::context_id context) const |
5861 | 104 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
105 return new tree_simple_for_command (lhs ? lhs->dup (scope, context) : 0, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
106 expr ? expr->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
107 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
108 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
109 trail_comm ? trail_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
110 line (), column ()); |
5861 | 111 } |
112 | |
2982 | 113 void |
114 tree_simple_for_command::accept (tree_walker& tw) | |
115 { | |
116 tw.visit_simple_for_command (*this); | |
117 } | |
118 | |
119 tree_complex_for_command::~tree_complex_for_command (void) | |
120 { | |
121 delete expr; | |
122 delete list; | |
3665 | 123 delete lead_comm; |
124 delete trail_comm; | |
2982 | 125 } |
126 | |
5861 | 127 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
128 tree_complex_for_command::dup (symbol_table::scope_id scope, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
129 symbol_table::context_id context) const |
5861 | 130 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
131 return new tree_complex_for_command (lhs ? lhs->dup (scope, context) : 0, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
132 expr ? expr->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
133 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
134 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
135 trail_comm ? trail_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
136 line (), column ()); |
5861 | 137 } |
138 | |
2982 | 139 void |
140 tree_complex_for_command::accept (tree_walker& tw) | |
141 { | |
142 tw.visit_complex_for_command (*this); | |
143 } |