Mercurial > hg > octave-lyh
comparison src/pt-jump.h @ 5861:2a6cb4ed8f1e
[project @ 2006-06-16 05:09:41 by jwe]
author | jwe |
---|---|
date | Fri, 16 Jun 2006 05:09:42 +0000 |
parents | 4c8a2e4e0717 |
children | 93c65f2a5668 |
comparison
equal
deleted
inserted
replaced
5860:b645066d40ad | 5861:2a6cb4ed8f1e |
---|---|
40 | 40 |
41 ~tree_break_command (void) { } | 41 ~tree_break_command (void) { } |
42 | 42 |
43 void eval (void); | 43 void eval (void); |
44 | 44 |
45 tree_command *dup (symbol_table *); | |
46 | |
45 void accept (tree_walker& tw); | 47 void accept (tree_walker& tw); |
46 | 48 |
47 static int breaking; | 49 static int breaking; |
48 | 50 |
49 private: | 51 private: |
66 : tree_command (l, c) { } | 68 : tree_command (l, c) { } |
67 | 69 |
68 ~tree_continue_command (void) { } | 70 ~tree_continue_command (void) { } |
69 | 71 |
70 void eval (void); | 72 void eval (void); |
73 | |
74 tree_command *dup (symbol_table *); | |
71 | 75 |
72 void accept (tree_walker& tw); | 76 void accept (tree_walker& tw); |
73 | 77 |
74 static int continuing; | 78 static int continuing; |
75 | 79 |
94 | 98 |
95 ~tree_return_command (void) { } | 99 ~tree_return_command (void) { } |
96 | 100 |
97 void eval (void); | 101 void eval (void); |
98 | 102 |
103 tree_command *dup (symbol_table *); | |
104 | |
99 void accept (tree_walker& tw); | 105 void accept (tree_walker& tw); |
100 | 106 |
101 static int returning; | 107 static int returning; |
102 | 108 |
103 private: | 109 private: |