Mercurial > hg > octave-nkf
annotate src/pt-except.h @ 9585:06b8b51dca48
also handle user-defined graphics properties in new property name validation scheme
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 28 Aug 2009 18:37:31 -0400 |
parents | eb63fbe60fab |
children | cd96d29c5efa |
rev | line source |
---|---|
2982 | 1 /* |
2 | |
8920 | 3 Copyright (C) 1996, 1997, 2000, 2002, 2004, 2005, 2006, 2007, 2008, 2009 |
7017 | 4 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 #if !defined (octave_tree_except_h) | |
25 #define octave_tree_except_h 1 | |
26 | |
27 class tree_statement_list; | |
28 | |
29 class tree_walker; | |
30 | |
3665 | 31 #include "comment-list.h" |
2982 | 32 #include "pt-cmd.h" |
7336 | 33 #include "symtab.h" |
2982 | 34 |
35 // Simple exception handling. | |
36 | |
37 class | |
38 tree_try_catch_command : public tree_command | |
39 { | |
40 public: | |
41 | |
42 tree_try_catch_command (int l = -1, int c = -1) | |
3665 | 43 : tree_command (l, c), try_code (0), catch_code (0), lead_comm (0), |
44 mid_comm (0), trail_comm (0) { } | |
2982 | 45 |
46 tree_try_catch_command (tree_statement_list *tc, tree_statement_list *cc, | |
3665 | 47 octave_comment_list *cl = 0, |
48 octave_comment_list *cm = 0, | |
49 octave_comment_list *ct = 0, | |
2982 | 50 int l = -1, int c = -1) |
3665 | 51 : tree_command (l, c), try_code (tc), catch_code (cc), |
52 lead_comm (cl), mid_comm (cm), trail_comm (ct) { } | |
2982 | 53 |
54 ~tree_try_catch_command (void); | |
55 | |
56 tree_statement_list *body (void) { return try_code; } | |
57 | |
58 tree_statement_list *cleanup (void) { return catch_code; } | |
59 | |
3665 | 60 octave_comment_list *leading_comment (void) { return lead_comm; } |
61 | |
62 octave_comment_list *middle_comment (void) { return mid_comm; } | |
63 | |
64 octave_comment_list *trailing_comment (void) { return trail_comm; } | |
65 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
66 tree_command *dup (symbol_table::scope_id scope, |
8913
35cd375d4bb3
make tree::dup functions const
John W. Eaton <jwe@octave.org>
parents:
8658
diff
changeset
|
67 symbol_table::context_id context) const; |
5861 | 68 |
2982 | 69 void accept (tree_walker& tw); |
70 | |
71 private: | |
72 | |
73 // The first block of code to attempt to execute. | |
74 tree_statement_list *try_code; | |
75 | |
76 // The code to execute if an error occurs in the first block. | |
77 tree_statement_list *catch_code; | |
2988 | 78 |
3665 | 79 // Comment preceding TRY token. |
80 octave_comment_list *lead_comm; | |
81 | |
82 // Comment preceding CATCH token. | |
83 octave_comment_list *mid_comm; | |
84 | |
85 // Comment preceding END_TRY_CATCH token. | |
86 octave_comment_list *trail_comm; | |
87 | |
2988 | 88 // No copying! |
89 | |
90 tree_try_catch_command (const tree_try_catch_command&); | |
91 | |
92 tree_try_catch_command& operator = (const tree_try_catch_command&); | |
2982 | 93 }; |
94 | |
95 // Simple exception handling. | |
96 | |
97 class | |
98 tree_unwind_protect_command : public tree_command | |
99 { | |
100 public: | |
101 | |
102 tree_unwind_protect_command (int l = -1, int c = -1) | |
3665 | 103 : tree_command (l, c), unwind_protect_code (0), cleanup_code (0), |
104 lead_comm (0), mid_comm (0), trail_comm (0) { } | |
2982 | 105 |
106 tree_unwind_protect_command (tree_statement_list *tc, | |
107 tree_statement_list *cc, | |
3665 | 108 octave_comment_list *cl = 0, |
109 octave_comment_list *cm = 0, | |
110 octave_comment_list *ct = 0, | |
2982 | 111 int l = -1, int c = -1) |
3665 | 112 : tree_command (l, c), unwind_protect_code (tc), cleanup_code (cc), |
113 lead_comm (cl), mid_comm (cm), trail_comm (ct) { } | |
2982 | 114 |
115 ~tree_unwind_protect_command (void); | |
116 | |
117 tree_statement_list *body (void) { return unwind_protect_code; } | |
118 | |
119 tree_statement_list *cleanup (void) { return cleanup_code; } | |
120 | |
3665 | 121 octave_comment_list *leading_comment (void) { return lead_comm; } |
122 | |
123 octave_comment_list *middle_comment (void) { return mid_comm; } | |
124 | |
125 octave_comment_list *trailing_comment (void) { return trail_comm; } | |
126 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7336
diff
changeset
|
127 tree_command *dup (symbol_table::scope_id scope, |
8913
35cd375d4bb3
make tree::dup functions const
John W. Eaton <jwe@octave.org>
parents:
8658
diff
changeset
|
128 symbol_table::context_id context) const; |
5861 | 129 |
2982 | 130 void accept (tree_walker& tw); |
131 | |
132 private: | |
133 | |
134 // The first body of code to attempt to execute. | |
135 tree_statement_list *unwind_protect_code; | |
136 | |
137 // The body of code to execute no matter what happens in the first | |
138 // body of code. | |
139 tree_statement_list *cleanup_code; | |
2988 | 140 |
3665 | 141 // Comment preceding TRY token. |
142 octave_comment_list *lead_comm; | |
143 | |
144 // Comment preceding CATCH token. | |
145 octave_comment_list *mid_comm; | |
146 | |
147 // Comment preceding END_TRY_CATCH token. | |
148 octave_comment_list *trail_comm; | |
149 | |
2988 | 150 // No copying! |
151 | |
152 tree_unwind_protect_command (const tree_unwind_protect_command&); | |
153 | |
154 tree_unwind_protect_command& operator = (const tree_unwind_protect_command&); | |
2982 | 155 }; |
156 | |
157 #endif | |
158 | |
159 /* | |
160 ;;; Local Variables: *** | |
161 ;;; mode: C++ *** | |
162 ;;; End: *** | |
163 */ |