Mercurial > hg > octave-nkf
annotate libinterp/parse-tree/token.h @ 16155:0259254a3ccc classdef
maint: periodic merge of default to classdef
* lex.h, lex.ll, parse.h, oct-parse.yy: Resolve conflicts by adapting
classdef changes to new octave_parser and lexical_feedback classes.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 28 Feb 2013 02:04:24 -0500 |
parents | 947cf10c94da ec9c6222ef5a |
children | b28062b977fd |
rev | line source |
---|---|
142 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
13249
diff
changeset
|
3 Copyright (C) 1993-2012 John W. Eaton |
142 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
142 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
142 | 20 |
21 */ | |
22 | |
383 | 23 #if !defined (octave_token_h) |
24 #define octave_token_h 1 | |
142 | 25 |
1755 | 26 #include <string> |
27 | |
16134
ec9c6222ef5a
move static parser helper functions to octave_parser class
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
28 #include "symtab.h" |
ec9c6222ef5a
move static parser helper functions to octave_parser class
John W. Eaton <jwe@octave.org>
parents:
15195
diff
changeset
|
29 |
453 | 30 class |
31 token | |
142 | 32 { |
33 public: | |
3548 | 34 |
142 | 35 enum token_type |
36 { | |
37 generic_token, | |
38 string_token, | |
39 double_token, | |
40 ettype_token, | |
9476 | 41 sym_rec_token, |
15037
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
42 scls_name_token, |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
43 meta_name_token |
142 | 44 }; |
45 | |
46 enum end_tok_type | |
47 { | |
48 simple_end, | |
9476 | 49 classdef_end, |
13249
7861a5fd3479
accept enumeration keyword
John W. Eaton <jwe@octave.org>
parents:
13245
diff
changeset
|
50 enumeration_end, |
9476 | 51 events_end, |
142 | 52 for_end, |
53 function_end, | |
54 if_end, | |
9476 | 55 methods_end, |
13245
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
56 parfor_end, |
9476 | 57 properties_end, |
2764 | 58 switch_end, |
142 | 59 while_end, |
1489 | 60 try_catch_end, |
3548 | 61 unwind_protect_end |
142 | 62 }; |
63 | |
64 token (int l = -1, int c = -1); | |
3523 | 65 token (const std::string& s, int l = -1, int c = -1); |
3552 | 66 token (double d, const std::string& s = std::string (), |
10313 | 67 int l = -1, int c = -1); |
142 | 68 token (end_tok_type t, int l = -1, int c = -1); |
7336 | 69 token (symbol_table::symbol_record *s, int l = -1, int c = -1); |
15037
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
70 token (const std::string& pkg, const std::string& cls, |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
71 int l = -1, int c = -1); |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
72 token (const std::string& mth, const std::string& pkg, |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
73 const std::string& cls, int l = -1, int c = -1); |
142 | 74 |
1755 | 75 ~token (void); |
142 | 76 |
1755 | 77 int line (void) { return line_num; } |
78 int column (void) { return column_num; } | |
142 | 79 |
3523 | 80 std::string text (void); |
142 | 81 double number (void); |
82 end_tok_type ettype (void); | |
7336 | 83 symbol_table::symbol_record *sym_rec (void); |
142 | 84 |
15037
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
85 std::string superclass_method_name (void); |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
86 std::string superclass_package_name (void); |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
87 std::string superclass_class_name (void); |
9476 | 88 |
15037
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
89 std::string meta_package_name (void); |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
90 std::string meta_class_name (void); |
9476 | 91 |
3523 | 92 std::string text_rep (void); |
581 | 93 |
142 | 94 private: |
3552 | 95 |
96 // No copying! | |
97 | |
1288 | 98 token (const token& tok); |
3552 | 99 |
1288 | 100 token& operator = (const token& tok); |
101 | |
142 | 102 int line_num; |
103 int column_num; | |
104 token_type type_tag; | |
105 union | |
106 { | |
3523 | 107 std::string *str; |
142 | 108 double num; |
109 end_tok_type et; | |
7336 | 110 symbol_table::symbol_record *sr; |
9476 | 111 struct |
112 { | |
15037
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
113 std::string *method_nm; |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
114 std::string *package_nm; |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
115 std::string *class_nm; |
9476 | 116 } sc; |
117 struct | |
118 { | |
15037
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
119 std::string *package_nm; |
56b8eb7c9c04
improvements in parsing classdef
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
120 std::string *class_nm; |
9476 | 121 } mc; |
142 | 122 }; |
3523 | 123 std::string orig_text; |
142 | 124 }; |
125 | |
126 #endif |