wurlinc-rice 1.4.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +23 -0
- data/Doxyfile +1253 -0
- data/Makefile.am +26 -0
- data/README +1119 -0
- data/README.mingw +8 -0
- data/Rakefile +33 -0
- data/bootstrap +9 -0
- data/configure.ac +52 -0
- data/doxygen.ac +314 -0
- data/doxygen.am +186 -0
- data/extconf.rb +41 -0
- data/post-autoconf.rb +22 -0
- data/post-automake.rb +28 -0
- data/rice/Address_Registration_Guard.hpp +7 -0
- data/rice/Address_Registration_Guard.ipp +34 -0
- data/rice/Address_Registration_Guard_defn.hpp +65 -0
- data/rice/Allocation_Strategies.hpp +37 -0
- data/rice/Arg.hpp +8 -0
- data/rice/Arg_impl.hpp +127 -0
- data/rice/Arg_operators.cpp +21 -0
- data/rice/Arg_operators.hpp +19 -0
- data/rice/Array.hpp +220 -0
- data/rice/Array.ipp +263 -0
- data/rice/Builtin_Object.hpp +8 -0
- data/rice/Builtin_Object.ipp +50 -0
- data/rice/Builtin_Object_defn.hpp +51 -0
- data/rice/Class.cpp +57 -0
- data/rice/Class.hpp +8 -0
- data/rice/Class.ipp +6 -0
- data/rice/Class_defn.hpp +83 -0
- data/rice/Constructor.hpp +367 -0
- data/rice/Critical_Guard.hpp +40 -0
- data/rice/Critical_Guard.ipp +26 -0
- data/rice/Data_Object.hpp +8 -0
- data/rice/Data_Object.ipp +133 -0
- data/rice/Data_Object_defn.hpp +132 -0
- data/rice/Data_Type.cpp +54 -0
- data/rice/Data_Type.hpp +8 -0
- data/rice/Data_Type.ipp +365 -0
- data/rice/Data_Type_defn.hpp +261 -0
- data/rice/Data_Type_fwd.hpp +12 -0
- data/rice/Director.cpp +13 -0
- data/rice/Director.hpp +39 -0
- data/rice/Enum.hpp +117 -0
- data/rice/Enum.ipp +246 -0
- data/rice/Exception.cpp +59 -0
- data/rice/Exception.hpp +9 -0
- data/rice/Exception_Base.hpp +8 -0
- data/rice/Exception_Base.ipp +13 -0
- data/rice/Exception_Base_defn.hpp +27 -0
- data/rice/Exception_defn.hpp +69 -0
- data/rice/Hash.hpp +210 -0
- data/rice/Hash.ipp +338 -0
- data/rice/Identifier.cpp +8 -0
- data/rice/Identifier.hpp +50 -0
- data/rice/Identifier.ipp +33 -0
- data/rice/Jump_Tag.hpp +24 -0
- data/rice/Makefile.am +129 -0
- data/rice/Module.cpp +84 -0
- data/rice/Module.hpp +8 -0
- data/rice/Module.ipp +6 -0
- data/rice/Module_defn.hpp +88 -0
- data/rice/Module_impl.hpp +281 -0
- data/rice/Module_impl.ipp +348 -0
- data/rice/Object.cpp +160 -0
- data/rice/Object.hpp +8 -0
- data/rice/Object.ipp +19 -0
- data/rice/Object_defn.hpp +191 -0
- data/rice/Require_Guard.hpp +21 -0
- data/rice/String.cpp +94 -0
- data/rice/String.hpp +89 -0
- data/rice/Struct.cpp +117 -0
- data/rice/Struct.hpp +162 -0
- data/rice/Struct.ipp +26 -0
- data/rice/Symbol.cpp +25 -0
- data/rice/Symbol.hpp +66 -0
- data/rice/Symbol.ipp +44 -0
- data/rice/VM.cpp +92 -0
- data/rice/VM.hpp +32 -0
- data/rice/config.hpp.in +40 -0
- data/rice/detail/Arguments.hpp +118 -0
- data/rice/detail/Auto_Function_Wrapper.hpp +829 -0
- data/rice/detail/Auto_Function_Wrapper.ipp +3391 -0
- data/rice/detail/Auto_Member_Function_Wrapper.hpp +828 -0
- data/rice/detail/Auto_Member_Function_Wrapper.ipp +2503 -0
- data/rice/detail/Caster.hpp +103 -0
- data/rice/detail/Exception_Handler.hpp +8 -0
- data/rice/detail/Exception_Handler.ipp +68 -0
- data/rice/detail/Exception_Handler_defn.hpp +96 -0
- data/rice/detail/Iterator.hpp +93 -0
- data/rice/detail/Not_Copyable.hpp +25 -0
- data/rice/detail/Wrapped_Function.hpp +33 -0
- data/rice/detail/cfp.hpp +24 -0
- data/rice/detail/cfp.ipp +51 -0
- data/rice/detail/check_ruby_type.cpp +27 -0
- data/rice/detail/check_ruby_type.hpp +23 -0
- data/rice/detail/creation_funcs.hpp +37 -0
- data/rice/detail/creation_funcs.ipp +36 -0
- data/rice/detail/default_allocation_func.hpp +23 -0
- data/rice/detail/default_allocation_func.ipp +11 -0
- data/rice/detail/define_method_and_auto_wrap.hpp +31 -0
- data/rice/detail/define_method_and_auto_wrap.ipp +30 -0
- data/rice/detail/demangle.cpp +56 -0
- data/rice/detail/demangle.hpp +19 -0
- data/rice/detail/env.hpp +19 -0
- data/rice/detail/from_ruby.hpp +43 -0
- data/rice/detail/from_ruby.ipp +60 -0
- data/rice/detail/method_data.cpp +159 -0
- data/rice/detail/method_data.hpp +21 -0
- data/rice/detail/mininode.cpp +1220 -0
- data/rice/detail/mininode.hpp +320 -0
- data/rice/detail/node.hpp +13 -0
- data/rice/detail/object_call.hpp +68 -0
- data/rice/detail/object_call.ipp +131 -0
- data/rice/detail/protect.cpp +29 -0
- data/rice/detail/protect.hpp +34 -0
- data/rice/detail/ruby.hpp +93 -0
- data/rice/detail/ruby_version_code.hpp.in +6 -0
- data/rice/detail/rubysig.hpp +19 -0
- data/rice/detail/st.hpp +60 -0
- data/rice/detail/to_ruby.hpp +22 -0
- data/rice/detail/to_ruby.ipp +36 -0
- data/rice/detail/traits.hpp +43 -0
- data/rice/detail/win32.hpp +16 -0
- data/rice/detail/wrap_function.hpp +341 -0
- data/rice/detail/wrap_function.ipp +514 -0
- data/rice/global_function.hpp +33 -0
- data/rice/global_function.ipp +22 -0
- data/rice/protect.hpp +91 -0
- data/rice/protect.ipp +1133 -0
- data/rice/ruby_mark.hpp +13 -0
- data/rice/ruby_try_catch.hpp +86 -0
- data/rice/rubypp.rb +97 -0
- data/rice/to_from_ruby.hpp +8 -0
- data/rice/to_from_ruby.ipp +297 -0
- data/rice/to_from_ruby_defn.hpp +71 -0
- data/ruby/Makefile.am +1 -0
- data/ruby/lib/Makefile.am +3 -0
- data/ruby/lib/mkmf-rice.rb.in +216 -0
- data/ruby/lib/version.rb +3 -0
- data/ruby.ac +136 -0
- data/sample/Makefile.am +47 -0
- data/sample/enum/extconf.rb +3 -0
- data/sample/enum/sample_enum.cpp +54 -0
- data/sample/enum/test.rb +8 -0
- data/sample/inheritance/animals.cpp +98 -0
- data/sample/inheritance/extconf.rb +3 -0
- data/sample/inheritance/test.rb +7 -0
- data/sample/map/extconf.rb +3 -0
- data/sample/map/map.cpp +81 -0
- data/sample/map/test.rb +7 -0
- data/test/Makefile.am +78 -0
- data/test/ext/Makefile.am +43 -0
- data/test/ext/t1/Foo.hpp +10 -0
- data/test/ext/t1/extconf.rb +2 -0
- data/test/ext/t1/t1.cpp +15 -0
- data/test/ext/t2/extconf.rb +2 -0
- data/test/ext/t2/t2.cpp +11 -0
- data/test/test_Address_Registration_Guard.cpp +43 -0
- data/test/test_Allocation_Strategies.cpp +77 -0
- data/test/test_Array.cpp +241 -0
- data/test/test_Builtin_Object.cpp +72 -0
- data/test/test_Class.cpp +498 -0
- data/test/test_Constructor.cpp +128 -0
- data/test/test_Critical_Guard.cpp +51 -0
- data/test/test_Data_Object.cpp +275 -0
- data/test/test_Data_Type.cpp +348 -0
- data/test/test_Director.cpp +301 -0
- data/test/test_Enum.cpp +195 -0
- data/test/test_Exception.cpp +46 -0
- data/test/test_Hash.cpp +195 -0
- data/test/test_Identifier.cpp +70 -0
- data/test/test_Jump_Tag.cpp +17 -0
- data/test/test_Memory_Management.cpp +50 -0
- data/test/test_Module.cpp +481 -0
- data/test/test_Object.cpp +148 -0
- data/test/test_String.cpp +94 -0
- data/test/test_Struct.cpp +192 -0
- data/test/test_Symbol.cpp +63 -0
- data/test/test_To_From_Ruby.cpp +263 -0
- data/test/test_VM.cpp +26 -0
- data/test/test_global_functions.cpp +114 -0
- data/test/test_rice.rb +43 -0
- data/test/unittest.cpp +136 -0
- data/test/unittest.hpp +292 -0
- metadata +276 -0
@@ -0,0 +1,1220 @@
|
|
1
|
+
// TODO: This is silly, autoconf...
|
2
|
+
#undef PACKAGE_NAME
|
3
|
+
#undef PACKAGE_STRING
|
4
|
+
#undef PACKAGE_TARNAME
|
5
|
+
#undef PACKAGE_VERSION
|
6
|
+
|
7
|
+
#include "../config.hpp"
|
8
|
+
|
9
|
+
// TODO: This is silly, autoconf...
|
10
|
+
#undef PACKAGE_NAME
|
11
|
+
#undef PACKAGE_STRING
|
12
|
+
#undef PACKAGE_TARNAME
|
13
|
+
#undef PACKAGE_VERSION
|
14
|
+
|
15
|
+
#if !defined(HAVE_NODE_H) && !defined(REALLY_HAVE_RUBY_NODE_H)
|
16
|
+
|
17
|
+
#include "mininode.hpp"
|
18
|
+
#include <cstring>
|
19
|
+
|
20
|
+
extern "C"
|
21
|
+
char const * ruby_node_name(int node);
|
22
|
+
|
23
|
+
namespace
|
24
|
+
{
|
25
|
+
|
26
|
+
int node_value(char const * name)
|
27
|
+
{
|
28
|
+
/* TODO: any way to end the block? */
|
29
|
+
int j;
|
30
|
+
for(j = 0; ; ++j)
|
31
|
+
{
|
32
|
+
if(!std::strcmp(name, ruby_node_name(j)))
|
33
|
+
{
|
34
|
+
return j;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
} // namespace
|
40
|
+
|
41
|
+
static int NODE_METHOD_ = -1;
|
42
|
+
|
43
|
+
int Rice::detail::Mininode::get_NODE_METHOD()
|
44
|
+
{
|
45
|
+
if(NODE_METHOD_ == -1)
|
46
|
+
{
|
47
|
+
NODE_METHOD_ = node_value("NODE_METHOD");
|
48
|
+
}
|
49
|
+
|
50
|
+
return NODE_METHOD_;
|
51
|
+
}
|
52
|
+
static int NODE_FBODY_ = -1;
|
53
|
+
|
54
|
+
int Rice::detail::Mininode::get_NODE_FBODY()
|
55
|
+
{
|
56
|
+
if(NODE_FBODY_ == -1)
|
57
|
+
{
|
58
|
+
NODE_FBODY_ = node_value("NODE_FBODY");
|
59
|
+
}
|
60
|
+
|
61
|
+
return NODE_FBODY_;
|
62
|
+
}
|
63
|
+
static int NODE_CFUNC_ = -1;
|
64
|
+
|
65
|
+
int Rice::detail::Mininode::get_NODE_CFUNC()
|
66
|
+
{
|
67
|
+
if(NODE_CFUNC_ == -1)
|
68
|
+
{
|
69
|
+
NODE_CFUNC_ = node_value("NODE_CFUNC");
|
70
|
+
}
|
71
|
+
|
72
|
+
return NODE_CFUNC_;
|
73
|
+
}
|
74
|
+
static int NODE_SCOPE_ = -1;
|
75
|
+
|
76
|
+
int Rice::detail::Mininode::get_NODE_SCOPE()
|
77
|
+
{
|
78
|
+
if(NODE_SCOPE_ == -1)
|
79
|
+
{
|
80
|
+
NODE_SCOPE_ = node_value("NODE_SCOPE");
|
81
|
+
}
|
82
|
+
|
83
|
+
return NODE_SCOPE_;
|
84
|
+
}
|
85
|
+
static int NODE_BLOCK_ = -1;
|
86
|
+
|
87
|
+
int Rice::detail::Mininode::get_NODE_BLOCK()
|
88
|
+
{
|
89
|
+
if(NODE_BLOCK_ == -1)
|
90
|
+
{
|
91
|
+
NODE_BLOCK_ = node_value("NODE_BLOCK");
|
92
|
+
}
|
93
|
+
|
94
|
+
return NODE_BLOCK_;
|
95
|
+
}
|
96
|
+
static int NODE_IF_ = -1;
|
97
|
+
|
98
|
+
int Rice::detail::Mininode::get_NODE_IF()
|
99
|
+
{
|
100
|
+
if(NODE_IF_ == -1)
|
101
|
+
{
|
102
|
+
NODE_IF_ = node_value("NODE_IF");
|
103
|
+
}
|
104
|
+
|
105
|
+
return NODE_IF_;
|
106
|
+
}
|
107
|
+
static int NODE_CASE_ = -1;
|
108
|
+
|
109
|
+
int Rice::detail::Mininode::get_NODE_CASE()
|
110
|
+
{
|
111
|
+
if(NODE_CASE_ == -1)
|
112
|
+
{
|
113
|
+
NODE_CASE_ = node_value("NODE_CASE");
|
114
|
+
}
|
115
|
+
|
116
|
+
return NODE_CASE_;
|
117
|
+
}
|
118
|
+
static int NODE_WHEN_ = -1;
|
119
|
+
|
120
|
+
int Rice::detail::Mininode::get_NODE_WHEN()
|
121
|
+
{
|
122
|
+
if(NODE_WHEN_ == -1)
|
123
|
+
{
|
124
|
+
NODE_WHEN_ = node_value("NODE_WHEN");
|
125
|
+
}
|
126
|
+
|
127
|
+
return NODE_WHEN_;
|
128
|
+
}
|
129
|
+
static int NODE_OPT_N_ = -1;
|
130
|
+
|
131
|
+
int Rice::detail::Mininode::get_NODE_OPT_N()
|
132
|
+
{
|
133
|
+
if(NODE_OPT_N_ == -1)
|
134
|
+
{
|
135
|
+
NODE_OPT_N_ = node_value("NODE_OPT_N");
|
136
|
+
}
|
137
|
+
|
138
|
+
return NODE_OPT_N_;
|
139
|
+
}
|
140
|
+
static int NODE_WHILE_ = -1;
|
141
|
+
|
142
|
+
int Rice::detail::Mininode::get_NODE_WHILE()
|
143
|
+
{
|
144
|
+
if(NODE_WHILE_ == -1)
|
145
|
+
{
|
146
|
+
NODE_WHILE_ = node_value("NODE_WHILE");
|
147
|
+
}
|
148
|
+
|
149
|
+
return NODE_WHILE_;
|
150
|
+
}
|
151
|
+
static int NODE_UNTIL_ = -1;
|
152
|
+
|
153
|
+
int Rice::detail::Mininode::get_NODE_UNTIL()
|
154
|
+
{
|
155
|
+
if(NODE_UNTIL_ == -1)
|
156
|
+
{
|
157
|
+
NODE_UNTIL_ = node_value("NODE_UNTIL");
|
158
|
+
}
|
159
|
+
|
160
|
+
return NODE_UNTIL_;
|
161
|
+
}
|
162
|
+
static int NODE_ITER_ = -1;
|
163
|
+
|
164
|
+
int Rice::detail::Mininode::get_NODE_ITER()
|
165
|
+
{
|
166
|
+
if(NODE_ITER_ == -1)
|
167
|
+
{
|
168
|
+
NODE_ITER_ = node_value("NODE_ITER");
|
169
|
+
}
|
170
|
+
|
171
|
+
return NODE_ITER_;
|
172
|
+
}
|
173
|
+
static int NODE_FOR_ = -1;
|
174
|
+
|
175
|
+
int Rice::detail::Mininode::get_NODE_FOR()
|
176
|
+
{
|
177
|
+
if(NODE_FOR_ == -1)
|
178
|
+
{
|
179
|
+
NODE_FOR_ = node_value("NODE_FOR");
|
180
|
+
}
|
181
|
+
|
182
|
+
return NODE_FOR_;
|
183
|
+
}
|
184
|
+
static int NODE_BREAK_ = -1;
|
185
|
+
|
186
|
+
int Rice::detail::Mininode::get_NODE_BREAK()
|
187
|
+
{
|
188
|
+
if(NODE_BREAK_ == -1)
|
189
|
+
{
|
190
|
+
NODE_BREAK_ = node_value("NODE_BREAK");
|
191
|
+
}
|
192
|
+
|
193
|
+
return NODE_BREAK_;
|
194
|
+
}
|
195
|
+
static int NODE_NEXT_ = -1;
|
196
|
+
|
197
|
+
int Rice::detail::Mininode::get_NODE_NEXT()
|
198
|
+
{
|
199
|
+
if(NODE_NEXT_ == -1)
|
200
|
+
{
|
201
|
+
NODE_NEXT_ = node_value("NODE_NEXT");
|
202
|
+
}
|
203
|
+
|
204
|
+
return NODE_NEXT_;
|
205
|
+
}
|
206
|
+
static int NODE_REDO_ = -1;
|
207
|
+
|
208
|
+
int Rice::detail::Mininode::get_NODE_REDO()
|
209
|
+
{
|
210
|
+
if(NODE_REDO_ == -1)
|
211
|
+
{
|
212
|
+
NODE_REDO_ = node_value("NODE_REDO");
|
213
|
+
}
|
214
|
+
|
215
|
+
return NODE_REDO_;
|
216
|
+
}
|
217
|
+
static int NODE_RETRY_ = -1;
|
218
|
+
|
219
|
+
int Rice::detail::Mininode::get_NODE_RETRY()
|
220
|
+
{
|
221
|
+
if(NODE_RETRY_ == -1)
|
222
|
+
{
|
223
|
+
NODE_RETRY_ = node_value("NODE_RETRY");
|
224
|
+
}
|
225
|
+
|
226
|
+
return NODE_RETRY_;
|
227
|
+
}
|
228
|
+
static int NODE_BEGIN_ = -1;
|
229
|
+
|
230
|
+
int Rice::detail::Mininode::get_NODE_BEGIN()
|
231
|
+
{
|
232
|
+
if(NODE_BEGIN_ == -1)
|
233
|
+
{
|
234
|
+
NODE_BEGIN_ = node_value("NODE_BEGIN");
|
235
|
+
}
|
236
|
+
|
237
|
+
return NODE_BEGIN_;
|
238
|
+
}
|
239
|
+
static int NODE_RESCUE_ = -1;
|
240
|
+
|
241
|
+
int Rice::detail::Mininode::get_NODE_RESCUE()
|
242
|
+
{
|
243
|
+
if(NODE_RESCUE_ == -1)
|
244
|
+
{
|
245
|
+
NODE_RESCUE_ = node_value("NODE_RESCUE");
|
246
|
+
}
|
247
|
+
|
248
|
+
return NODE_RESCUE_;
|
249
|
+
}
|
250
|
+
static int NODE_RESBODY_ = -1;
|
251
|
+
|
252
|
+
int Rice::detail::Mininode::get_NODE_RESBODY()
|
253
|
+
{
|
254
|
+
if(NODE_RESBODY_ == -1)
|
255
|
+
{
|
256
|
+
NODE_RESBODY_ = node_value("NODE_RESBODY");
|
257
|
+
}
|
258
|
+
|
259
|
+
return NODE_RESBODY_;
|
260
|
+
}
|
261
|
+
static int NODE_ENSURE_ = -1;
|
262
|
+
|
263
|
+
int Rice::detail::Mininode::get_NODE_ENSURE()
|
264
|
+
{
|
265
|
+
if(NODE_ENSURE_ == -1)
|
266
|
+
{
|
267
|
+
NODE_ENSURE_ = node_value("NODE_ENSURE");
|
268
|
+
}
|
269
|
+
|
270
|
+
return NODE_ENSURE_;
|
271
|
+
}
|
272
|
+
static int NODE_AND_ = -1;
|
273
|
+
|
274
|
+
int Rice::detail::Mininode::get_NODE_AND()
|
275
|
+
{
|
276
|
+
if(NODE_AND_ == -1)
|
277
|
+
{
|
278
|
+
NODE_AND_ = node_value("NODE_AND");
|
279
|
+
}
|
280
|
+
|
281
|
+
return NODE_AND_;
|
282
|
+
}
|
283
|
+
static int NODE_OR_ = -1;
|
284
|
+
|
285
|
+
int Rice::detail::Mininode::get_NODE_OR()
|
286
|
+
{
|
287
|
+
if(NODE_OR_ == -1)
|
288
|
+
{
|
289
|
+
NODE_OR_ = node_value("NODE_OR");
|
290
|
+
}
|
291
|
+
|
292
|
+
return NODE_OR_;
|
293
|
+
}
|
294
|
+
static int NODE_MASGN_ = -1;
|
295
|
+
|
296
|
+
int Rice::detail::Mininode::get_NODE_MASGN()
|
297
|
+
{
|
298
|
+
if(NODE_MASGN_ == -1)
|
299
|
+
{
|
300
|
+
NODE_MASGN_ = node_value("NODE_MASGN");
|
301
|
+
}
|
302
|
+
|
303
|
+
return NODE_MASGN_;
|
304
|
+
}
|
305
|
+
static int NODE_LASGN_ = -1;
|
306
|
+
|
307
|
+
int Rice::detail::Mininode::get_NODE_LASGN()
|
308
|
+
{
|
309
|
+
if(NODE_LASGN_ == -1)
|
310
|
+
{
|
311
|
+
NODE_LASGN_ = node_value("NODE_LASGN");
|
312
|
+
}
|
313
|
+
|
314
|
+
return NODE_LASGN_;
|
315
|
+
}
|
316
|
+
static int NODE_DASGN_ = -1;
|
317
|
+
|
318
|
+
int Rice::detail::Mininode::get_NODE_DASGN()
|
319
|
+
{
|
320
|
+
if(NODE_DASGN_ == -1)
|
321
|
+
{
|
322
|
+
NODE_DASGN_ = node_value("NODE_DASGN");
|
323
|
+
}
|
324
|
+
|
325
|
+
return NODE_DASGN_;
|
326
|
+
}
|
327
|
+
static int NODE_DASGN_CURR_ = -1;
|
328
|
+
|
329
|
+
int Rice::detail::Mininode::get_NODE_DASGN_CURR()
|
330
|
+
{
|
331
|
+
if(NODE_DASGN_CURR_ == -1)
|
332
|
+
{
|
333
|
+
NODE_DASGN_CURR_ = node_value("NODE_DASGN_CURR");
|
334
|
+
}
|
335
|
+
|
336
|
+
return NODE_DASGN_CURR_;
|
337
|
+
}
|
338
|
+
static int NODE_GASGN_ = -1;
|
339
|
+
|
340
|
+
int Rice::detail::Mininode::get_NODE_GASGN()
|
341
|
+
{
|
342
|
+
if(NODE_GASGN_ == -1)
|
343
|
+
{
|
344
|
+
NODE_GASGN_ = node_value("NODE_GASGN");
|
345
|
+
}
|
346
|
+
|
347
|
+
return NODE_GASGN_;
|
348
|
+
}
|
349
|
+
static int NODE_IASGN_ = -1;
|
350
|
+
|
351
|
+
int Rice::detail::Mininode::get_NODE_IASGN()
|
352
|
+
{
|
353
|
+
if(NODE_IASGN_ == -1)
|
354
|
+
{
|
355
|
+
NODE_IASGN_ = node_value("NODE_IASGN");
|
356
|
+
}
|
357
|
+
|
358
|
+
return NODE_IASGN_;
|
359
|
+
}
|
360
|
+
static int NODE_IASGN2_ = -1;
|
361
|
+
|
362
|
+
int Rice::detail::Mininode::get_NODE_IASGN2()
|
363
|
+
{
|
364
|
+
if(NODE_IASGN2_ == -1)
|
365
|
+
{
|
366
|
+
NODE_IASGN2_ = node_value("NODE_IASGN2");
|
367
|
+
}
|
368
|
+
|
369
|
+
return NODE_IASGN2_;
|
370
|
+
}
|
371
|
+
static int NODE_CDECL_ = -1;
|
372
|
+
|
373
|
+
int Rice::detail::Mininode::get_NODE_CDECL()
|
374
|
+
{
|
375
|
+
if(NODE_CDECL_ == -1)
|
376
|
+
{
|
377
|
+
NODE_CDECL_ = node_value("NODE_CDECL");
|
378
|
+
}
|
379
|
+
|
380
|
+
return NODE_CDECL_;
|
381
|
+
}
|
382
|
+
static int NODE_CVDECL_ = -1;
|
383
|
+
|
384
|
+
int Rice::detail::Mininode::get_NODE_CVDECL()
|
385
|
+
{
|
386
|
+
if(NODE_CVDECL_ == -1)
|
387
|
+
{
|
388
|
+
NODE_CVDECL_ = node_value("NODE_CVDECL");
|
389
|
+
}
|
390
|
+
|
391
|
+
return NODE_CVDECL_;
|
392
|
+
}
|
393
|
+
static int NODE_OP_ASGN1_ = -1;
|
394
|
+
|
395
|
+
int Rice::detail::Mininode::get_NODE_OP_ASGN1()
|
396
|
+
{
|
397
|
+
if(NODE_OP_ASGN1_ == -1)
|
398
|
+
{
|
399
|
+
NODE_OP_ASGN1_ = node_value("NODE_OP_ASGN1");
|
400
|
+
}
|
401
|
+
|
402
|
+
return NODE_OP_ASGN1_;
|
403
|
+
}
|
404
|
+
static int NODE_OP_ASGN2_ = -1;
|
405
|
+
|
406
|
+
int Rice::detail::Mininode::get_NODE_OP_ASGN2()
|
407
|
+
{
|
408
|
+
if(NODE_OP_ASGN2_ == -1)
|
409
|
+
{
|
410
|
+
NODE_OP_ASGN2_ = node_value("NODE_OP_ASGN2");
|
411
|
+
}
|
412
|
+
|
413
|
+
return NODE_OP_ASGN2_;
|
414
|
+
}
|
415
|
+
static int NODE_OP_ASGN_AND_ = -1;
|
416
|
+
|
417
|
+
int Rice::detail::Mininode::get_NODE_OP_ASGN_AND()
|
418
|
+
{
|
419
|
+
if(NODE_OP_ASGN_AND_ == -1)
|
420
|
+
{
|
421
|
+
NODE_OP_ASGN_AND_ = node_value("NODE_OP_ASGN_AND");
|
422
|
+
}
|
423
|
+
|
424
|
+
return NODE_OP_ASGN_AND_;
|
425
|
+
}
|
426
|
+
static int NODE_OP_ASGN_OR_ = -1;
|
427
|
+
|
428
|
+
int Rice::detail::Mininode::get_NODE_OP_ASGN_OR()
|
429
|
+
{
|
430
|
+
if(NODE_OP_ASGN_OR_ == -1)
|
431
|
+
{
|
432
|
+
NODE_OP_ASGN_OR_ = node_value("NODE_OP_ASGN_OR");
|
433
|
+
}
|
434
|
+
|
435
|
+
return NODE_OP_ASGN_OR_;
|
436
|
+
}
|
437
|
+
static int NODE_CALL_ = -1;
|
438
|
+
|
439
|
+
int Rice::detail::Mininode::get_NODE_CALL()
|
440
|
+
{
|
441
|
+
if(NODE_CALL_ == -1)
|
442
|
+
{
|
443
|
+
NODE_CALL_ = node_value("NODE_CALL");
|
444
|
+
}
|
445
|
+
|
446
|
+
return NODE_CALL_;
|
447
|
+
}
|
448
|
+
static int NODE_FCALL_ = -1;
|
449
|
+
|
450
|
+
int Rice::detail::Mininode::get_NODE_FCALL()
|
451
|
+
{
|
452
|
+
if(NODE_FCALL_ == -1)
|
453
|
+
{
|
454
|
+
NODE_FCALL_ = node_value("NODE_FCALL");
|
455
|
+
}
|
456
|
+
|
457
|
+
return NODE_FCALL_;
|
458
|
+
}
|
459
|
+
static int NODE_VCALL_ = -1;
|
460
|
+
|
461
|
+
int Rice::detail::Mininode::get_NODE_VCALL()
|
462
|
+
{
|
463
|
+
if(NODE_VCALL_ == -1)
|
464
|
+
{
|
465
|
+
NODE_VCALL_ = node_value("NODE_VCALL");
|
466
|
+
}
|
467
|
+
|
468
|
+
return NODE_VCALL_;
|
469
|
+
}
|
470
|
+
static int NODE_SUPER_ = -1;
|
471
|
+
|
472
|
+
int Rice::detail::Mininode::get_NODE_SUPER()
|
473
|
+
{
|
474
|
+
if(NODE_SUPER_ == -1)
|
475
|
+
{
|
476
|
+
NODE_SUPER_ = node_value("NODE_SUPER");
|
477
|
+
}
|
478
|
+
|
479
|
+
return NODE_SUPER_;
|
480
|
+
}
|
481
|
+
static int NODE_ZSUPER_ = -1;
|
482
|
+
|
483
|
+
int Rice::detail::Mininode::get_NODE_ZSUPER()
|
484
|
+
{
|
485
|
+
if(NODE_ZSUPER_ == -1)
|
486
|
+
{
|
487
|
+
NODE_ZSUPER_ = node_value("NODE_ZSUPER");
|
488
|
+
}
|
489
|
+
|
490
|
+
return NODE_ZSUPER_;
|
491
|
+
}
|
492
|
+
static int NODE_ARRAY_ = -1;
|
493
|
+
|
494
|
+
int Rice::detail::Mininode::get_NODE_ARRAY()
|
495
|
+
{
|
496
|
+
if(NODE_ARRAY_ == -1)
|
497
|
+
{
|
498
|
+
NODE_ARRAY_ = node_value("NODE_ARRAY");
|
499
|
+
}
|
500
|
+
|
501
|
+
return NODE_ARRAY_;
|
502
|
+
}
|
503
|
+
static int NODE_ZARRAY_ = -1;
|
504
|
+
|
505
|
+
int Rice::detail::Mininode::get_NODE_ZARRAY()
|
506
|
+
{
|
507
|
+
if(NODE_ZARRAY_ == -1)
|
508
|
+
{
|
509
|
+
NODE_ZARRAY_ = node_value("NODE_ZARRAY");
|
510
|
+
}
|
511
|
+
|
512
|
+
return NODE_ZARRAY_;
|
513
|
+
}
|
514
|
+
static int NODE_VALUES_ = -1;
|
515
|
+
|
516
|
+
int Rice::detail::Mininode::get_NODE_VALUES()
|
517
|
+
{
|
518
|
+
if(NODE_VALUES_ == -1)
|
519
|
+
{
|
520
|
+
NODE_VALUES_ = node_value("NODE_VALUES");
|
521
|
+
}
|
522
|
+
|
523
|
+
return NODE_VALUES_;
|
524
|
+
}
|
525
|
+
static int NODE_HASH_ = -1;
|
526
|
+
|
527
|
+
int Rice::detail::Mininode::get_NODE_HASH()
|
528
|
+
{
|
529
|
+
if(NODE_HASH_ == -1)
|
530
|
+
{
|
531
|
+
NODE_HASH_ = node_value("NODE_HASH");
|
532
|
+
}
|
533
|
+
|
534
|
+
return NODE_HASH_;
|
535
|
+
}
|
536
|
+
static int NODE_RETURN_ = -1;
|
537
|
+
|
538
|
+
int Rice::detail::Mininode::get_NODE_RETURN()
|
539
|
+
{
|
540
|
+
if(NODE_RETURN_ == -1)
|
541
|
+
{
|
542
|
+
NODE_RETURN_ = node_value("NODE_RETURN");
|
543
|
+
}
|
544
|
+
|
545
|
+
return NODE_RETURN_;
|
546
|
+
}
|
547
|
+
static int NODE_YIELD_ = -1;
|
548
|
+
|
549
|
+
int Rice::detail::Mininode::get_NODE_YIELD()
|
550
|
+
{
|
551
|
+
if(NODE_YIELD_ == -1)
|
552
|
+
{
|
553
|
+
NODE_YIELD_ = node_value("NODE_YIELD");
|
554
|
+
}
|
555
|
+
|
556
|
+
return NODE_YIELD_;
|
557
|
+
}
|
558
|
+
static int NODE_LVAR_ = -1;
|
559
|
+
|
560
|
+
int Rice::detail::Mininode::get_NODE_LVAR()
|
561
|
+
{
|
562
|
+
if(NODE_LVAR_ == -1)
|
563
|
+
{
|
564
|
+
NODE_LVAR_ = node_value("NODE_LVAR");
|
565
|
+
}
|
566
|
+
|
567
|
+
return NODE_LVAR_;
|
568
|
+
}
|
569
|
+
static int NODE_DVAR_ = -1;
|
570
|
+
|
571
|
+
int Rice::detail::Mininode::get_NODE_DVAR()
|
572
|
+
{
|
573
|
+
if(NODE_DVAR_ == -1)
|
574
|
+
{
|
575
|
+
NODE_DVAR_ = node_value("NODE_DVAR");
|
576
|
+
}
|
577
|
+
|
578
|
+
return NODE_DVAR_;
|
579
|
+
}
|
580
|
+
static int NODE_GVAR_ = -1;
|
581
|
+
|
582
|
+
int Rice::detail::Mininode::get_NODE_GVAR()
|
583
|
+
{
|
584
|
+
if(NODE_GVAR_ == -1)
|
585
|
+
{
|
586
|
+
NODE_GVAR_ = node_value("NODE_GVAR");
|
587
|
+
}
|
588
|
+
|
589
|
+
return NODE_GVAR_;
|
590
|
+
}
|
591
|
+
static int NODE_IVAR_ = -1;
|
592
|
+
|
593
|
+
int Rice::detail::Mininode::get_NODE_IVAR()
|
594
|
+
{
|
595
|
+
if(NODE_IVAR_ == -1)
|
596
|
+
{
|
597
|
+
NODE_IVAR_ = node_value("NODE_IVAR");
|
598
|
+
}
|
599
|
+
|
600
|
+
return NODE_IVAR_;
|
601
|
+
}
|
602
|
+
static int NODE_CONST_ = -1;
|
603
|
+
|
604
|
+
int Rice::detail::Mininode::get_NODE_CONST()
|
605
|
+
{
|
606
|
+
if(NODE_CONST_ == -1)
|
607
|
+
{
|
608
|
+
NODE_CONST_ = node_value("NODE_CONST");
|
609
|
+
}
|
610
|
+
|
611
|
+
return NODE_CONST_;
|
612
|
+
}
|
613
|
+
static int NODE_CVAR_ = -1;
|
614
|
+
|
615
|
+
int Rice::detail::Mininode::get_NODE_CVAR()
|
616
|
+
{
|
617
|
+
if(NODE_CVAR_ == -1)
|
618
|
+
{
|
619
|
+
NODE_CVAR_ = node_value("NODE_CVAR");
|
620
|
+
}
|
621
|
+
|
622
|
+
return NODE_CVAR_;
|
623
|
+
}
|
624
|
+
static int NODE_NTH_REF_ = -1;
|
625
|
+
|
626
|
+
int Rice::detail::Mininode::get_NODE_NTH_REF()
|
627
|
+
{
|
628
|
+
if(NODE_NTH_REF_ == -1)
|
629
|
+
{
|
630
|
+
NODE_NTH_REF_ = node_value("NODE_NTH_REF");
|
631
|
+
}
|
632
|
+
|
633
|
+
return NODE_NTH_REF_;
|
634
|
+
}
|
635
|
+
static int NODE_BACK_REF_ = -1;
|
636
|
+
|
637
|
+
int Rice::detail::Mininode::get_NODE_BACK_REF()
|
638
|
+
{
|
639
|
+
if(NODE_BACK_REF_ == -1)
|
640
|
+
{
|
641
|
+
NODE_BACK_REF_ = node_value("NODE_BACK_REF");
|
642
|
+
}
|
643
|
+
|
644
|
+
return NODE_BACK_REF_;
|
645
|
+
}
|
646
|
+
static int NODE_MATCH_ = -1;
|
647
|
+
|
648
|
+
int Rice::detail::Mininode::get_NODE_MATCH()
|
649
|
+
{
|
650
|
+
if(NODE_MATCH_ == -1)
|
651
|
+
{
|
652
|
+
NODE_MATCH_ = node_value("NODE_MATCH");
|
653
|
+
}
|
654
|
+
|
655
|
+
return NODE_MATCH_;
|
656
|
+
}
|
657
|
+
static int NODE_MATCH2_ = -1;
|
658
|
+
|
659
|
+
int Rice::detail::Mininode::get_NODE_MATCH2()
|
660
|
+
{
|
661
|
+
if(NODE_MATCH2_ == -1)
|
662
|
+
{
|
663
|
+
NODE_MATCH2_ = node_value("NODE_MATCH2");
|
664
|
+
}
|
665
|
+
|
666
|
+
return NODE_MATCH2_;
|
667
|
+
}
|
668
|
+
static int NODE_MATCH3_ = -1;
|
669
|
+
|
670
|
+
int Rice::detail::Mininode::get_NODE_MATCH3()
|
671
|
+
{
|
672
|
+
if(NODE_MATCH3_ == -1)
|
673
|
+
{
|
674
|
+
NODE_MATCH3_ = node_value("NODE_MATCH3");
|
675
|
+
}
|
676
|
+
|
677
|
+
return NODE_MATCH3_;
|
678
|
+
}
|
679
|
+
static int NODE_LIT_ = -1;
|
680
|
+
|
681
|
+
int Rice::detail::Mininode::get_NODE_LIT()
|
682
|
+
{
|
683
|
+
if(NODE_LIT_ == -1)
|
684
|
+
{
|
685
|
+
NODE_LIT_ = node_value("NODE_LIT");
|
686
|
+
}
|
687
|
+
|
688
|
+
return NODE_LIT_;
|
689
|
+
}
|
690
|
+
static int NODE_STR_ = -1;
|
691
|
+
|
692
|
+
int Rice::detail::Mininode::get_NODE_STR()
|
693
|
+
{
|
694
|
+
if(NODE_STR_ == -1)
|
695
|
+
{
|
696
|
+
NODE_STR_ = node_value("NODE_STR");
|
697
|
+
}
|
698
|
+
|
699
|
+
return NODE_STR_;
|
700
|
+
}
|
701
|
+
static int NODE_DSTR_ = -1;
|
702
|
+
|
703
|
+
int Rice::detail::Mininode::get_NODE_DSTR()
|
704
|
+
{
|
705
|
+
if(NODE_DSTR_ == -1)
|
706
|
+
{
|
707
|
+
NODE_DSTR_ = node_value("NODE_DSTR");
|
708
|
+
}
|
709
|
+
|
710
|
+
return NODE_DSTR_;
|
711
|
+
}
|
712
|
+
static int NODE_XSTR_ = -1;
|
713
|
+
|
714
|
+
int Rice::detail::Mininode::get_NODE_XSTR()
|
715
|
+
{
|
716
|
+
if(NODE_XSTR_ == -1)
|
717
|
+
{
|
718
|
+
NODE_XSTR_ = node_value("NODE_XSTR");
|
719
|
+
}
|
720
|
+
|
721
|
+
return NODE_XSTR_;
|
722
|
+
}
|
723
|
+
static int NODE_DXSTR_ = -1;
|
724
|
+
|
725
|
+
int Rice::detail::Mininode::get_NODE_DXSTR()
|
726
|
+
{
|
727
|
+
if(NODE_DXSTR_ == -1)
|
728
|
+
{
|
729
|
+
NODE_DXSTR_ = node_value("NODE_DXSTR");
|
730
|
+
}
|
731
|
+
|
732
|
+
return NODE_DXSTR_;
|
733
|
+
}
|
734
|
+
static int NODE_EVSTR_ = -1;
|
735
|
+
|
736
|
+
int Rice::detail::Mininode::get_NODE_EVSTR()
|
737
|
+
{
|
738
|
+
if(NODE_EVSTR_ == -1)
|
739
|
+
{
|
740
|
+
NODE_EVSTR_ = node_value("NODE_EVSTR");
|
741
|
+
}
|
742
|
+
|
743
|
+
return NODE_EVSTR_;
|
744
|
+
}
|
745
|
+
static int NODE_DREGX_ = -1;
|
746
|
+
|
747
|
+
int Rice::detail::Mininode::get_NODE_DREGX()
|
748
|
+
{
|
749
|
+
if(NODE_DREGX_ == -1)
|
750
|
+
{
|
751
|
+
NODE_DREGX_ = node_value("NODE_DREGX");
|
752
|
+
}
|
753
|
+
|
754
|
+
return NODE_DREGX_;
|
755
|
+
}
|
756
|
+
static int NODE_DREGX_ONCE_ = -1;
|
757
|
+
|
758
|
+
int Rice::detail::Mininode::get_NODE_DREGX_ONCE()
|
759
|
+
{
|
760
|
+
if(NODE_DREGX_ONCE_ == -1)
|
761
|
+
{
|
762
|
+
NODE_DREGX_ONCE_ = node_value("NODE_DREGX_ONCE");
|
763
|
+
}
|
764
|
+
|
765
|
+
return NODE_DREGX_ONCE_;
|
766
|
+
}
|
767
|
+
static int NODE_ARGS_ = -1;
|
768
|
+
|
769
|
+
int Rice::detail::Mininode::get_NODE_ARGS()
|
770
|
+
{
|
771
|
+
if(NODE_ARGS_ == -1)
|
772
|
+
{
|
773
|
+
NODE_ARGS_ = node_value("NODE_ARGS");
|
774
|
+
}
|
775
|
+
|
776
|
+
return NODE_ARGS_;
|
777
|
+
}
|
778
|
+
static int NODE_ARGS_AUX_ = -1;
|
779
|
+
|
780
|
+
int Rice::detail::Mininode::get_NODE_ARGS_AUX()
|
781
|
+
{
|
782
|
+
if(NODE_ARGS_AUX_ == -1)
|
783
|
+
{
|
784
|
+
NODE_ARGS_AUX_ = node_value("NODE_ARGS_AUX");
|
785
|
+
}
|
786
|
+
|
787
|
+
return NODE_ARGS_AUX_;
|
788
|
+
}
|
789
|
+
static int NODE_OPT_ARG_ = -1;
|
790
|
+
|
791
|
+
int Rice::detail::Mininode::get_NODE_OPT_ARG()
|
792
|
+
{
|
793
|
+
if(NODE_OPT_ARG_ == -1)
|
794
|
+
{
|
795
|
+
NODE_OPT_ARG_ = node_value("NODE_OPT_ARG");
|
796
|
+
}
|
797
|
+
|
798
|
+
return NODE_OPT_ARG_;
|
799
|
+
}
|
800
|
+
static int NODE_POSTARG_ = -1;
|
801
|
+
|
802
|
+
int Rice::detail::Mininode::get_NODE_POSTARG()
|
803
|
+
{
|
804
|
+
if(NODE_POSTARG_ == -1)
|
805
|
+
{
|
806
|
+
NODE_POSTARG_ = node_value("NODE_POSTARG");
|
807
|
+
}
|
808
|
+
|
809
|
+
return NODE_POSTARG_;
|
810
|
+
}
|
811
|
+
static int NODE_ARGSCAT_ = -1;
|
812
|
+
|
813
|
+
int Rice::detail::Mininode::get_NODE_ARGSCAT()
|
814
|
+
{
|
815
|
+
if(NODE_ARGSCAT_ == -1)
|
816
|
+
{
|
817
|
+
NODE_ARGSCAT_ = node_value("NODE_ARGSCAT");
|
818
|
+
}
|
819
|
+
|
820
|
+
return NODE_ARGSCAT_;
|
821
|
+
}
|
822
|
+
static int NODE_ARGSPUSH_ = -1;
|
823
|
+
|
824
|
+
int Rice::detail::Mininode::get_NODE_ARGSPUSH()
|
825
|
+
{
|
826
|
+
if(NODE_ARGSPUSH_ == -1)
|
827
|
+
{
|
828
|
+
NODE_ARGSPUSH_ = node_value("NODE_ARGSPUSH");
|
829
|
+
}
|
830
|
+
|
831
|
+
return NODE_ARGSPUSH_;
|
832
|
+
}
|
833
|
+
static int NODE_SPLAT_ = -1;
|
834
|
+
|
835
|
+
int Rice::detail::Mininode::get_NODE_SPLAT()
|
836
|
+
{
|
837
|
+
if(NODE_SPLAT_ == -1)
|
838
|
+
{
|
839
|
+
NODE_SPLAT_ = node_value("NODE_SPLAT");
|
840
|
+
}
|
841
|
+
|
842
|
+
return NODE_SPLAT_;
|
843
|
+
}
|
844
|
+
static int NODE_TO_ARY_ = -1;
|
845
|
+
|
846
|
+
int Rice::detail::Mininode::get_NODE_TO_ARY()
|
847
|
+
{
|
848
|
+
if(NODE_TO_ARY_ == -1)
|
849
|
+
{
|
850
|
+
NODE_TO_ARY_ = node_value("NODE_TO_ARY");
|
851
|
+
}
|
852
|
+
|
853
|
+
return NODE_TO_ARY_;
|
854
|
+
}
|
855
|
+
static int NODE_BLOCK_ARG_ = -1;
|
856
|
+
|
857
|
+
int Rice::detail::Mininode::get_NODE_BLOCK_ARG()
|
858
|
+
{
|
859
|
+
if(NODE_BLOCK_ARG_ == -1)
|
860
|
+
{
|
861
|
+
NODE_BLOCK_ARG_ = node_value("NODE_BLOCK_ARG");
|
862
|
+
}
|
863
|
+
|
864
|
+
return NODE_BLOCK_ARG_;
|
865
|
+
}
|
866
|
+
static int NODE_BLOCK_PASS_ = -1;
|
867
|
+
|
868
|
+
int Rice::detail::Mininode::get_NODE_BLOCK_PASS()
|
869
|
+
{
|
870
|
+
if(NODE_BLOCK_PASS_ == -1)
|
871
|
+
{
|
872
|
+
NODE_BLOCK_PASS_ = node_value("NODE_BLOCK_PASS");
|
873
|
+
}
|
874
|
+
|
875
|
+
return NODE_BLOCK_PASS_;
|
876
|
+
}
|
877
|
+
static int NODE_DEFN_ = -1;
|
878
|
+
|
879
|
+
int Rice::detail::Mininode::get_NODE_DEFN()
|
880
|
+
{
|
881
|
+
if(NODE_DEFN_ == -1)
|
882
|
+
{
|
883
|
+
NODE_DEFN_ = node_value("NODE_DEFN");
|
884
|
+
}
|
885
|
+
|
886
|
+
return NODE_DEFN_;
|
887
|
+
}
|
888
|
+
static int NODE_ALIAS_ = -1;
|
889
|
+
|
890
|
+
int Rice::detail::Mininode::get_NODE_ALIAS()
|
891
|
+
{
|
892
|
+
if(NODE_ALIAS_ == -1)
|
893
|
+
{
|
894
|
+
NODE_ALIAS_ = node_value("NODE_ALIAS");
|
895
|
+
}
|
896
|
+
|
897
|
+
return NODE_ALIAS_;
|
898
|
+
}
|
899
|
+
static int NODE_VALIAS_ = -1;
|
900
|
+
|
901
|
+
int Rice::detail::Mininode::get_NODE_VALIAS()
|
902
|
+
{
|
903
|
+
if(NODE_VALIAS_ == -1)
|
904
|
+
{
|
905
|
+
NODE_VALIAS_ = node_value("NODE_VALIAS");
|
906
|
+
}
|
907
|
+
|
908
|
+
return NODE_VALIAS_;
|
909
|
+
}
|
910
|
+
static int NODE_UNDEF_ = -1;
|
911
|
+
|
912
|
+
int Rice::detail::Mininode::get_NODE_UNDEF()
|
913
|
+
{
|
914
|
+
if(NODE_UNDEF_ == -1)
|
915
|
+
{
|
916
|
+
NODE_UNDEF_ = node_value("NODE_UNDEF");
|
917
|
+
}
|
918
|
+
|
919
|
+
return NODE_UNDEF_;
|
920
|
+
}
|
921
|
+
static int NODE_CLASS_ = -1;
|
922
|
+
|
923
|
+
int Rice::detail::Mininode::get_NODE_CLASS()
|
924
|
+
{
|
925
|
+
if(NODE_CLASS_ == -1)
|
926
|
+
{
|
927
|
+
NODE_CLASS_ = node_value("NODE_CLASS");
|
928
|
+
}
|
929
|
+
|
930
|
+
return NODE_CLASS_;
|
931
|
+
}
|
932
|
+
static int NODE_MODULE_ = -1;
|
933
|
+
|
934
|
+
int Rice::detail::Mininode::get_NODE_MODULE()
|
935
|
+
{
|
936
|
+
if(NODE_MODULE_ == -1)
|
937
|
+
{
|
938
|
+
NODE_MODULE_ = node_value("NODE_MODULE");
|
939
|
+
}
|
940
|
+
|
941
|
+
return NODE_MODULE_;
|
942
|
+
}
|
943
|
+
static int NODE_SCLASS_ = -1;
|
944
|
+
|
945
|
+
int Rice::detail::Mininode::get_NODE_SCLASS()
|
946
|
+
{
|
947
|
+
if(NODE_SCLASS_ == -1)
|
948
|
+
{
|
949
|
+
NODE_SCLASS_ = node_value("NODE_SCLASS");
|
950
|
+
}
|
951
|
+
|
952
|
+
return NODE_SCLASS_;
|
953
|
+
}
|
954
|
+
static int NODE_COLON2_ = -1;
|
955
|
+
|
956
|
+
int Rice::detail::Mininode::get_NODE_COLON2()
|
957
|
+
{
|
958
|
+
if(NODE_COLON2_ == -1)
|
959
|
+
{
|
960
|
+
NODE_COLON2_ = node_value("NODE_COLON2");
|
961
|
+
}
|
962
|
+
|
963
|
+
return NODE_COLON2_;
|
964
|
+
}
|
965
|
+
static int NODE_COLON3_ = -1;
|
966
|
+
|
967
|
+
int Rice::detail::Mininode::get_NODE_COLON3()
|
968
|
+
{
|
969
|
+
if(NODE_COLON3_ == -1)
|
970
|
+
{
|
971
|
+
NODE_COLON3_ = node_value("NODE_COLON3");
|
972
|
+
}
|
973
|
+
|
974
|
+
return NODE_COLON3_;
|
975
|
+
}
|
976
|
+
static int NODE_DOT2_ = -1;
|
977
|
+
|
978
|
+
int Rice::detail::Mininode::get_NODE_DOT2()
|
979
|
+
{
|
980
|
+
if(NODE_DOT2_ == -1)
|
981
|
+
{
|
982
|
+
NODE_DOT2_ = node_value("NODE_DOT2");
|
983
|
+
}
|
984
|
+
|
985
|
+
return NODE_DOT2_;
|
986
|
+
}
|
987
|
+
static int NODE_DOT3_ = -1;
|
988
|
+
|
989
|
+
int Rice::detail::Mininode::get_NODE_DOT3()
|
990
|
+
{
|
991
|
+
if(NODE_DOT3_ == -1)
|
992
|
+
{
|
993
|
+
NODE_DOT3_ = node_value("NODE_DOT3");
|
994
|
+
}
|
995
|
+
|
996
|
+
return NODE_DOT3_;
|
997
|
+
}
|
998
|
+
static int NODE_FLIP2_ = -1;
|
999
|
+
|
1000
|
+
int Rice::detail::Mininode::get_NODE_FLIP2()
|
1001
|
+
{
|
1002
|
+
if(NODE_FLIP2_ == -1)
|
1003
|
+
{
|
1004
|
+
NODE_FLIP2_ = node_value("NODE_FLIP2");
|
1005
|
+
}
|
1006
|
+
|
1007
|
+
return NODE_FLIP2_;
|
1008
|
+
}
|
1009
|
+
static int NODE_FLIP3_ = -1;
|
1010
|
+
|
1011
|
+
int Rice::detail::Mininode::get_NODE_FLIP3()
|
1012
|
+
{
|
1013
|
+
if(NODE_FLIP3_ == -1)
|
1014
|
+
{
|
1015
|
+
NODE_FLIP3_ = node_value("NODE_FLIP3");
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
return NODE_FLIP3_;
|
1019
|
+
}
|
1020
|
+
static int NODE_ATTRSET_ = -1;
|
1021
|
+
|
1022
|
+
int Rice::detail::Mininode::get_NODE_ATTRSET()
|
1023
|
+
{
|
1024
|
+
if(NODE_ATTRSET_ == -1)
|
1025
|
+
{
|
1026
|
+
NODE_ATTRSET_ = node_value("NODE_ATTRSET");
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
return NODE_ATTRSET_;
|
1030
|
+
}
|
1031
|
+
static int NODE_SELF_ = -1;
|
1032
|
+
|
1033
|
+
int Rice::detail::Mininode::get_NODE_SELF()
|
1034
|
+
{
|
1035
|
+
if(NODE_SELF_ == -1)
|
1036
|
+
{
|
1037
|
+
NODE_SELF_ = node_value("NODE_SELF");
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
return NODE_SELF_;
|
1041
|
+
}
|
1042
|
+
static int NODE_NIL_ = -1;
|
1043
|
+
|
1044
|
+
int Rice::detail::Mininode::get_NODE_NIL()
|
1045
|
+
{
|
1046
|
+
if(NODE_NIL_ == -1)
|
1047
|
+
{
|
1048
|
+
NODE_NIL_ = node_value("NODE_NIL");
|
1049
|
+
}
|
1050
|
+
|
1051
|
+
return NODE_NIL_;
|
1052
|
+
}
|
1053
|
+
static int NODE_TRUE_ = -1;
|
1054
|
+
|
1055
|
+
int Rice::detail::Mininode::get_NODE_TRUE()
|
1056
|
+
{
|
1057
|
+
if(NODE_TRUE_ == -1)
|
1058
|
+
{
|
1059
|
+
NODE_TRUE_ = node_value("NODE_TRUE");
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
return NODE_TRUE_;
|
1063
|
+
}
|
1064
|
+
static int NODE_FALSE_ = -1;
|
1065
|
+
|
1066
|
+
int Rice::detail::Mininode::get_NODE_FALSE()
|
1067
|
+
{
|
1068
|
+
if(NODE_FALSE_ == -1)
|
1069
|
+
{
|
1070
|
+
NODE_FALSE_ = node_value("NODE_FALSE");
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
return NODE_FALSE_;
|
1074
|
+
}
|
1075
|
+
static int NODE_ERRINFO_ = -1;
|
1076
|
+
|
1077
|
+
int Rice::detail::Mininode::get_NODE_ERRINFO()
|
1078
|
+
{
|
1079
|
+
if(NODE_ERRINFO_ == -1)
|
1080
|
+
{
|
1081
|
+
NODE_ERRINFO_ = node_value("NODE_ERRINFO");
|
1082
|
+
}
|
1083
|
+
|
1084
|
+
return NODE_ERRINFO_;
|
1085
|
+
}
|
1086
|
+
static int NODE_DEFINED_ = -1;
|
1087
|
+
|
1088
|
+
int Rice::detail::Mininode::get_NODE_DEFINED()
|
1089
|
+
{
|
1090
|
+
if(NODE_DEFINED_ == -1)
|
1091
|
+
{
|
1092
|
+
NODE_DEFINED_ = node_value("NODE_DEFINED");
|
1093
|
+
}
|
1094
|
+
|
1095
|
+
return NODE_DEFINED_;
|
1096
|
+
}
|
1097
|
+
static int NODE_POSTEXE_ = -1;
|
1098
|
+
|
1099
|
+
int Rice::detail::Mininode::get_NODE_POSTEXE()
|
1100
|
+
{
|
1101
|
+
if(NODE_POSTEXE_ == -1)
|
1102
|
+
{
|
1103
|
+
NODE_POSTEXE_ = node_value("NODE_POSTEXE");
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
return NODE_POSTEXE_;
|
1107
|
+
}
|
1108
|
+
static int NODE_ALLOCA_ = -1;
|
1109
|
+
|
1110
|
+
int Rice::detail::Mininode::get_NODE_ALLOCA()
|
1111
|
+
{
|
1112
|
+
if(NODE_ALLOCA_ == -1)
|
1113
|
+
{
|
1114
|
+
NODE_ALLOCA_ = node_value("NODE_ALLOCA");
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
return NODE_ALLOCA_;
|
1118
|
+
}
|
1119
|
+
static int NODE_BMETHOD_ = -1;
|
1120
|
+
|
1121
|
+
int Rice::detail::Mininode::get_NODE_BMETHOD()
|
1122
|
+
{
|
1123
|
+
if(NODE_BMETHOD_ == -1)
|
1124
|
+
{
|
1125
|
+
NODE_BMETHOD_ = node_value("NODE_BMETHOD");
|
1126
|
+
}
|
1127
|
+
|
1128
|
+
return NODE_BMETHOD_;
|
1129
|
+
}
|
1130
|
+
static int NODE_MEMO_ = -1;
|
1131
|
+
|
1132
|
+
int Rice::detail::Mininode::get_NODE_MEMO()
|
1133
|
+
{
|
1134
|
+
if(NODE_MEMO_ == -1)
|
1135
|
+
{
|
1136
|
+
NODE_MEMO_ = node_value("NODE_MEMO");
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
return NODE_MEMO_;
|
1140
|
+
}
|
1141
|
+
static int NODE_IFUNC_ = -1;
|
1142
|
+
|
1143
|
+
int Rice::detail::Mininode::get_NODE_IFUNC()
|
1144
|
+
{
|
1145
|
+
if(NODE_IFUNC_ == -1)
|
1146
|
+
{
|
1147
|
+
NODE_IFUNC_ = node_value("NODE_IFUNC");
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
return NODE_IFUNC_;
|
1151
|
+
}
|
1152
|
+
static int NODE_DSYM_ = -1;
|
1153
|
+
|
1154
|
+
int Rice::detail::Mininode::get_NODE_DSYM()
|
1155
|
+
{
|
1156
|
+
if(NODE_DSYM_ == -1)
|
1157
|
+
{
|
1158
|
+
NODE_DSYM_ = node_value("NODE_DSYM");
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
return NODE_DSYM_;
|
1162
|
+
}
|
1163
|
+
static int NODE_ATTRASGN_ = -1;
|
1164
|
+
|
1165
|
+
int Rice::detail::Mininode::get_NODE_ATTRASGN()
|
1166
|
+
{
|
1167
|
+
if(NODE_ATTRASGN_ == -1)
|
1168
|
+
{
|
1169
|
+
NODE_ATTRASGN_ = node_value("NODE_ATTRASGN");
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
return NODE_ATTRASGN_;
|
1173
|
+
}
|
1174
|
+
static int NODE_PRELUDE_ = -1;
|
1175
|
+
|
1176
|
+
int Rice::detail::Mininode::get_NODE_PRELUDE()
|
1177
|
+
{
|
1178
|
+
if(NODE_PRELUDE_ == -1)
|
1179
|
+
{
|
1180
|
+
NODE_PRELUDE_ = node_value("NODE_PRELUDE");
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
return NODE_PRELUDE_;
|
1184
|
+
}
|
1185
|
+
static int NODE_LAMBDA_ = -1;
|
1186
|
+
|
1187
|
+
int Rice::detail::Mininode::get_NODE_LAMBDA()
|
1188
|
+
{
|
1189
|
+
if(NODE_LAMBDA_ == -1)
|
1190
|
+
{
|
1191
|
+
NODE_LAMBDA_ = node_value("NODE_LAMBDA");
|
1192
|
+
}
|
1193
|
+
|
1194
|
+
return NODE_LAMBDA_;
|
1195
|
+
}
|
1196
|
+
static int NODE_OPTBLOCK_ = -1;
|
1197
|
+
|
1198
|
+
int Rice::detail::Mininode::get_NODE_OPTBLOCK()
|
1199
|
+
{
|
1200
|
+
if(NODE_OPTBLOCK_ == -1)
|
1201
|
+
{
|
1202
|
+
NODE_OPTBLOCK_ = node_value("NODE_OPTBLOCK");
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
return NODE_OPTBLOCK_;
|
1206
|
+
}
|
1207
|
+
static int NODE_LAST_ = -1;
|
1208
|
+
|
1209
|
+
int Rice::detail::Mininode::get_NODE_LAST()
|
1210
|
+
{
|
1211
|
+
if(NODE_LAST_ == -1)
|
1212
|
+
{
|
1213
|
+
NODE_LAST_ = node_value("NODE_LAST");
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
return NODE_LAST_;
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
#endif
|
1220
|
+
|