racc 1.4.14 → 1.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +5 -5
  2. data/COPYING +22 -515
  3. data/README.ja.rdoc +3 -4
  4. data/README.rdoc +6 -8
  5. data/Rakefile +32 -53
  6. data/bin/racc +39 -27
  7. data/ext/racc/com/headius/racc/Cparse.java +66 -23
  8. data/ext/racc/{cparse.c → cparse/cparse.c} +82 -47
  9. data/ext/racc/{extconf.rb → cparse/extconf.rb} +2 -1
  10. data/lib/racc/compat.rb +5 -4
  11. data/lib/racc/debugflags.rb +5 -4
  12. data/lib/racc/exception.rb +5 -4
  13. data/lib/racc/grammar.rb +25 -22
  14. data/lib/racc/grammarfileparser.rb +10 -8
  15. data/lib/racc/info.rb +6 -5
  16. data/lib/racc/iset.rb +6 -5
  17. data/lib/racc/logfilegenerator.rb +6 -5
  18. data/lib/racc/parser-text.rb +20 -23
  19. data/lib/racc/parser.rb +20 -23
  20. data/lib/racc/parserfilegenerator.rb +10 -10
  21. data/lib/racc/sourcetext.rb +5 -4
  22. data/lib/racc/state.rb +13 -12
  23. data/lib/racc/statetransitiontable.rb +7 -6
  24. data/rdoc/ja/command.ja.html +1 -1
  25. data/sample/array.y +1 -1
  26. data/sample/array2.y +1 -1
  27. data/sample/calc-ja.y +2 -2
  28. data/sample/calc.y +2 -2
  29. data/sample/conflict.y +1 -1
  30. data/sample/hash.y +1 -1
  31. data/sample/lalr.y +1 -1
  32. data/sample/lists.y +1 -1
  33. data/sample/syntax.y +1 -1
  34. data/sample/yyerr.y +1 -1
  35. data/test/assets/cadenza.y +170 -0
  36. data/test/assets/cast.y +926 -0
  37. data/test/assets/csspool.y +729 -0
  38. data/test/assets/edtf.y +583 -0
  39. data/test/assets/huia.y +318 -0
  40. data/test/assets/intp.y +4 -4
  41. data/test/assets/journey.y +47 -0
  42. data/test/assets/liquor.y +313 -0
  43. data/test/assets/machete.y +423 -0
  44. data/test/assets/macruby.y +2197 -0
  45. data/test/assets/mailp.y +27 -27
  46. data/test/assets/mediacloth.y +599 -0
  47. data/test/assets/mof.y +649 -0
  48. data/test/assets/namae.y +302 -0
  49. data/test/assets/nasl.y +626 -0
  50. data/test/assets/nokogiri-css.y +255 -0
  51. data/test/assets/nullbug2.y +2 -2
  52. data/test/assets/opal.y +1807 -0
  53. data/test/assets/php_serialization.y +98 -0
  54. data/test/assets/recv.y +20 -20
  55. data/test/assets/riml.y +665 -0
  56. data/test/assets/ruby18.y +1943 -0
  57. data/test/assets/ruby19.y +2174 -0
  58. data/test/assets/ruby20.y +2350 -0
  59. data/test/assets/ruby21.y +2359 -0
  60. data/test/assets/ruby22.y +2381 -0
  61. data/test/assets/syntax.y +1 -1
  62. data/test/assets/tp_plus.y +622 -0
  63. data/test/assets/twowaysql.y +278 -0
  64. data/test/helper.rb +68 -41
  65. data/test/regress/cadenza +796 -0
  66. data/test/regress/cast +3428 -0
  67. data/test/regress/csspool +2314 -0
  68. data/test/regress/edtf +1794 -0
  69. data/test/regress/huia +1392 -0
  70. data/test/regress/journey +222 -0
  71. data/test/regress/liquor +885 -0
  72. data/test/regress/machete +833 -0
  73. data/test/regress/mediacloth +1463 -0
  74. data/test/regress/mof +1368 -0
  75. data/test/regress/namae +634 -0
  76. data/test/regress/nasl +2058 -0
  77. data/test/regress/nokogiri-css +836 -0
  78. data/test/regress/opal +6431 -0
  79. data/test/regress/php_serialization +336 -0
  80. data/test/regress/riml +3283 -0
  81. data/test/regress/ruby18 +6344 -0
  82. data/test/regress/ruby22 +7460 -0
  83. data/test/regress/tp_plus +1933 -0
  84. data/test/regress/twowaysql +556 -0
  85. data/test/test_chk_y.rb +1 -0
  86. data/test/test_racc_command.rb +177 -2
  87. data/test/test_scan_y.rb +1 -0
  88. data/test/testscanner.rb +1 -1
  89. metadata +59 -83
  90. data/DEPENDS +0 -4
  91. data/Manifest.txt +0 -102
  92. data/bin/racc2y +0 -195
  93. data/bin/y2racc +0 -339
  94. data/ext/racc/depend +0 -1
  95. data/fastcache/extconf.rb +0 -2
  96. data/fastcache/fastcache.c +0 -185
  97. data/misc/dist.sh +0 -31
  98. data/setup.rb +0 -1587
  99. data/tasks/doc.rb +0 -12
  100. data/tasks/email.rb +0 -55
@@ -0,0 +1,336 @@
1
+ #
2
+ # DO NOT MODIFY!!!!
3
+ # This file is automatically generated by Racc 1.5.0
4
+ # from Racc grammar file "".
5
+ #
6
+
7
+ require 'racc/parser.rb'
8
+
9
+ require 'php_serialization/tokenizer'
10
+
11
+ module PhpSerialization
12
+ class Unserializer < Racc::Parser
13
+
14
+ module_eval(<<'...end php_serialization.y/module_eval...', 'php_serialization.y', 84)
15
+ def initialize(tokenizer_klass = Tokenizer)
16
+ @tokenizer_klass = tokenizer_klass
17
+ end
18
+
19
+ def run(string)
20
+ @tokenizer = @tokenizer_klass.new(string)
21
+ yyparse(@tokenizer, :each)
22
+ return @object
23
+ ensure
24
+ @tokenizer = nil
25
+ end
26
+
27
+ def next_token
28
+ @tokenizer.next_token
29
+ end
30
+ ...end php_serialization.y/module_eval...
31
+ ##### State transition tables begin ###
32
+
33
+ racc_action_table = [
34
+ 9, 10, 16, 17, 11, 12, 13, 18, 14, 9,
35
+ 10, 15, 19, 11, 12, 13, 20, 14, 21, 46,
36
+ 15, 9, 10, 22, 23, 11, 12, 13, 24, 14,
37
+ 9, 10, 15, 25, 11, 12, 13, 26, 14, 27,
38
+ 51, 15, 28, 29, 30, 31, 32, 33, 34, 35,
39
+ 36, 37, 38, 39, 40, 41, 43, 47, 49 ]
40
+
41
+ racc_action_check = [
42
+ 0, 0, 1, 2, 0, 0, 0, 3, 0, 42,
43
+ 42, 0, 4, 42, 42, 42, 5, 42, 6, 42,
44
+ 42, 45, 45, 10, 11, 45, 45, 45, 12, 45,
45
+ 50, 50, 45, 13, 50, 50, 50, 14, 50, 15,
46
+ 50, 50, 16, 22, 23, 24, 25, 26, 27, 32,
47
+ 33, 34, 35, 36, 37, 39, 41, 43, 47 ]
48
+
49
+ racc_action_pointer = [
50
+ -3, 2, 1, 5, 10, 14, 16, nil, nil, nil,
51
+ 18, 19, 23, 28, 32, 34, 42, nil, nil, nil,
52
+ nil, nil, 37, 38, 39, 40, 41, 42, nil, nil,
53
+ nil, nil, 44, 45, 46, 42, 43, 42, nil, 50,
54
+ nil, 50, 6, 52, nil, 18, nil, 46, nil, nil,
55
+ 27, nil ]
56
+
57
+ racc_action_default = [
58
+ -18, -18, -18, -18, -18, -18, -18, -6, -7, -8,
59
+ -18, -18, -18, -18, -18, -18, -18, -1, -2, -3,
60
+ -4, -5, -18, -18, -18, -18, -18, -18, 52, -9,
61
+ -10, -11, -18, -18, -18, -18, -18, -18, -12, -18,
62
+ -15, -18, -18, -18, -14, -18, -17, -18, -16, -15,
63
+ -18, -13 ]
64
+
65
+ racc_goto_table = [
66
+ 1, 42, nil, nil, nil, nil, nil, nil, nil, nil,
67
+ 50, nil, nil, nil, nil, nil, nil, nil, nil, nil,
68
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
69
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
70
+ nil, nil, nil, nil, nil, 48 ]
71
+
72
+ racc_goto_check = [
73
+ 1, 9, nil, nil, nil, nil, nil, nil, nil, nil,
74
+ 9, nil, nil, nil, nil, nil, nil, nil, nil, nil,
75
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
76
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
77
+ nil, nil, nil, nil, nil, 1 ]
78
+
79
+ racc_goto_pointer = [
80
+ nil, 0, nil, nil, nil, nil, nil, nil, nil, -39,
81
+ nil ]
82
+
83
+ racc_goto_default = [
84
+ nil, 45, 2, 3, 4, 5, 6, 7, 8, nil,
85
+ 44 ]
86
+
87
+ racc_reduce_table = [
88
+ 0, 0, :racc_error,
89
+ 2, 16, :_reduce_1,
90
+ 2, 16, :_reduce_2,
91
+ 2, 16, :_reduce_3,
92
+ 2, 16, :_reduce_4,
93
+ 2, 16, :_reduce_5,
94
+ 1, 16, :_reduce_6,
95
+ 1, 16, :_reduce_7,
96
+ 1, 17, :_reduce_8,
97
+ 3, 18, :_reduce_9,
98
+ 3, 19, :_reduce_10,
99
+ 3, 20, :_reduce_11,
100
+ 5, 21, :_reduce_12,
101
+ 11, 23, :_reduce_13,
102
+ 2, 24, :_reduce_14,
103
+ 0, 24, :_reduce_15,
104
+ 2, 25, :_reduce_16,
105
+ 7, 22, :_reduce_17 ]
106
+
107
+ racc_reduce_n = 18
108
+
109
+ racc_shift_n = 52
110
+
111
+ racc_token_table = {
112
+ false => 0,
113
+ :error => 1,
114
+ ";" => 2,
115
+ "N" => 3,
116
+ "b" => 4,
117
+ ":" => 5,
118
+ :NUMBER => 6,
119
+ "i" => 7,
120
+ "d" => 8,
121
+ "s" => 9,
122
+ :STRING => 10,
123
+ "O" => 11,
124
+ "{" => 12,
125
+ "}" => 13,
126
+ "a" => 14 }
127
+
128
+ racc_nt_base = 15
129
+
130
+ racc_use_result_var = true
131
+
132
+ Racc_arg = [
133
+ racc_action_table,
134
+ racc_action_check,
135
+ racc_action_default,
136
+ racc_action_pointer,
137
+ racc_goto_table,
138
+ racc_goto_check,
139
+ racc_goto_default,
140
+ racc_goto_pointer,
141
+ racc_nt_base,
142
+ racc_reduce_table,
143
+ racc_token_table,
144
+ racc_shift_n,
145
+ racc_reduce_n,
146
+ racc_use_result_var ]
147
+
148
+ Racc_token_to_s_table = [
149
+ "$end",
150
+ "error",
151
+ "\";\"",
152
+ "\"N\"",
153
+ "\"b\"",
154
+ "\":\"",
155
+ "NUMBER",
156
+ "\"i\"",
157
+ "\"d\"",
158
+ "\"s\"",
159
+ "STRING",
160
+ "\"O\"",
161
+ "\"{\"",
162
+ "\"}\"",
163
+ "\"a\"",
164
+ "$start",
165
+ "data",
166
+ "null",
167
+ "bool",
168
+ "integer",
169
+ "double",
170
+ "string",
171
+ "assoc_array",
172
+ "object",
173
+ "attribute_list",
174
+ "attribute" ]
175
+
176
+ Racc_debug_parser = false
177
+
178
+ ##### State transition tables end #####
179
+
180
+ # reduce 0 omitted
181
+
182
+ module_eval(<<'.,.,', 'php_serialization.y', 6)
183
+ def _reduce_1(val, _values, result)
184
+ @object = val[0]
185
+ result
186
+ end
187
+ .,.,
188
+
189
+ module_eval(<<'.,.,', 'php_serialization.y', 7)
190
+ def _reduce_2(val, _values, result)
191
+ @object = val[0]
192
+ result
193
+ end
194
+ .,.,
195
+
196
+ module_eval(<<'.,.,', 'php_serialization.y', 8)
197
+ def _reduce_3(val, _values, result)
198
+ @object = val[0]
199
+ result
200
+ end
201
+ .,.,
202
+
203
+ module_eval(<<'.,.,', 'php_serialization.y', 9)
204
+ def _reduce_4(val, _values, result)
205
+ @object = val[0]
206
+ result
207
+ end
208
+ .,.,
209
+
210
+ module_eval(<<'.,.,', 'php_serialization.y', 10)
211
+ def _reduce_5(val, _values, result)
212
+ @object = val[0]
213
+ result
214
+ end
215
+ .,.,
216
+
217
+ module_eval(<<'.,.,', 'php_serialization.y', 11)
218
+ def _reduce_6(val, _values, result)
219
+ @object = val[0]
220
+ result
221
+ end
222
+ .,.,
223
+
224
+ module_eval(<<'.,.,', 'php_serialization.y', 12)
225
+ def _reduce_7(val, _values, result)
226
+ @object = val[0]
227
+ result
228
+ end
229
+ .,.,
230
+
231
+ module_eval(<<'.,.,', 'php_serialization.y', 15)
232
+ def _reduce_8(val, _values, result)
233
+ result = nil
234
+ result
235
+ end
236
+ .,.,
237
+
238
+ module_eval(<<'.,.,', 'php_serialization.y', 18)
239
+ def _reduce_9(val, _values, result)
240
+ result = Integer(val[2]) > 0
241
+ result
242
+ end
243
+ .,.,
244
+
245
+ module_eval(<<'.,.,', 'php_serialization.y', 21)
246
+ def _reduce_10(val, _values, result)
247
+ result = Integer(val[2])
248
+ result
249
+ end
250
+ .,.,
251
+
252
+ module_eval(<<'.,.,', 'php_serialization.y', 24)
253
+ def _reduce_11(val, _values, result)
254
+ result = Float(val[2])
255
+ result
256
+ end
257
+ .,.,
258
+
259
+ module_eval(<<'.,.,', 'php_serialization.y', 27)
260
+ def _reduce_12(val, _values, result)
261
+ result = val[4]
262
+ result
263
+ end
264
+ .,.,
265
+
266
+ module_eval(<<'.,.,', 'php_serialization.y', 32)
267
+ def _reduce_13(val, _values, result)
268
+ if eval("defined?(#{val[4]})")
269
+ result = Object.const_get(val[4]).new
270
+
271
+ val[9].each do |(attr_name, value)|
272
+ # Protected and private attributes will have a \0..\0 prefix
273
+ attr_name = attr_name.gsub(/\A\\0[^\\]+\\0/, '')
274
+ result.instance_variable_set("@#{attr_name}", value)
275
+ end
276
+ else
277
+ klass_name = val[4].gsub(/^Struct::/, '')
278
+ attr_names, values = [], []
279
+
280
+ val[9].each do |(attr_name, value)|
281
+ # Protected and private attributes will have a \0..\0 prefix
282
+ attr_names << attr_name.gsub(/\A\\0[^\\]+\\0/, '')
283
+ values << value
284
+ end
285
+
286
+ result = Struct.new(klass_name, *attr_names).new(*values)
287
+ result.instance_variable_set("@_php_class", klass_name)
288
+ end
289
+
290
+ result
291
+ end
292
+ .,.,
293
+
294
+ module_eval(<<'.,.,', 'php_serialization.y', 56)
295
+ def _reduce_14(val, _values, result)
296
+ result = val[0] << val[1]
297
+ result
298
+ end
299
+ .,.,
300
+
301
+ module_eval(<<'.,.,', 'php_serialization.y', 57)
302
+ def _reduce_15(val, _values, result)
303
+ result = []
304
+ result
305
+ end
306
+ .,.,
307
+
308
+ module_eval(<<'.,.,', 'php_serialization.y', 60)
309
+ def _reduce_16(val, _values, result)
310
+ result = val
311
+ result
312
+ end
313
+ .,.,
314
+
315
+ module_eval(<<'.,.,', 'php_serialization.y', 65)
316
+ def _reduce_17(val, _values, result)
317
+ # Checks if the keys are a sequence of integers
318
+ idx = -1
319
+ arr = val[5].all? { |(k,v)| k == (idx += 1) }
320
+
321
+ if arr
322
+ result = val[5].map { |(k,v)| v }
323
+ else
324
+ result = Hash[val[5]]
325
+ end
326
+
327
+ result
328
+ end
329
+ .,.,
330
+
331
+ def _reduce_none(val, _values, result)
332
+ val[0]
333
+ end
334
+
335
+ end # class Unserializer
336
+ end # module PhpSerialization
@@ -0,0 +1,3283 @@
1
+ #
2
+ # DO NOT MODIFY!!!!
3
+ # This file is automatically generated by Racc 1.5.0
4
+ # from Racc grammar file "".
5
+ #
6
+
7
+ require 'racc/parser.rb'
8
+
9
+ require File.expand_path("../lexer", __FILE__)
10
+ require File.expand_path("../nodes", __FILE__)
11
+ require File.expand_path("../errors", __FILE__)
12
+ require File.expand_path("../ast_rewriter", __FILE__)
13
+ module Riml
14
+ class Parser < Racc::Parser
15
+
16
+ module_eval(<<'...end riml.y/module_eval...', 'riml.y', 592)
17
+ # This code will be put as-is in the parser class
18
+
19
+ attr_accessor :ast_rewriter
20
+ attr_writer :options
21
+
22
+ # The Parser and AST_Rewriter share this same hash of options
23
+ def options
24
+ @options ||= {}
25
+ end
26
+
27
+ def self.ast_cache
28
+ @ast_cache
29
+ end
30
+ @ast_cache = {}
31
+
32
+ # parses tokens or code into output nodes
33
+ def parse(object, ast_rewriter = Riml::AST_Rewriter.new, filename = nil, included = false)
34
+ if (ast = self.class.ast_cache[filename])
35
+ else
36
+ if tokens?(object)
37
+ @tokens = object
38
+ elsif code?(object)
39
+ @lexer = Riml::Lexer.new(object, filename, true)
40
+ end
41
+
42
+ begin
43
+ ast = do_parse
44
+ rescue Racc::ParseError => e
45
+ raise unless @lexer
46
+ if (invalid_token = @lexer.prev_token_is_keyword?)
47
+ warning = "#{invalid_token.inspect} is a keyword, and cannot " \
48
+ "be used as a variable name"
49
+ end
50
+ error_msg = e.message
51
+ error_msg << "\nWARNING: #{warning}" if warning
52
+ error = Riml::ParseError.new(error_msg, @lexer.filename, @lexer.lineno)
53
+ raise error
54
+ end
55
+ self.class.ast_cache[filename] = ast if filename
56
+ end
57
+ @ast_rewriter ||= ast_rewriter
58
+ return ast unless @ast_rewriter
59
+ @ast_rewriter.ast = ast.dup
60
+ @ast_rewriter.options ||= options
61
+ @ast_rewriter.rewrite(filename, included)
62
+ @ast_rewriter.ast
63
+ end
64
+
65
+ # get the next token from either the list of tokens provided, or
66
+ # the lexer getting the next token
67
+ def next_token
68
+ return @tokens.shift unless @lexer
69
+ token = @lexer.next_token
70
+ if token && @lexer.parser_info
71
+ @current_parser_info = token.pop
72
+ end
73
+ token
74
+ end
75
+
76
+ private
77
+
78
+ def tokens?(object)
79
+ Array === object
80
+ end
81
+
82
+ def code?(object)
83
+ String === object
84
+ end
85
+
86
+ def make_node(racc_val)
87
+ node = yield racc_val
88
+ node.parser_info = @current_parser_info
89
+ node
90
+ end
91
+ ...end riml.y/module_eval...
92
+ ##### State transition tables begin ###
93
+
94
+ clist = [
95
+ '135,265,60,139,136,211,417,418,48,47,411,211,448,274,146,56,199,89,272',
96
+ '60,273,270,409,271,37,46,48,47,37,49,44,45,392,412,37,449,384,60,50',
97
+ '70,316,61,386,385,317,62,63,129,130,132,127,128,131,115,116,117,121',
98
+ '122,123,118,119,120,124,125,126,102,104,103,109,111,110,112,114,113',
99
+ '106,108,107,133,134,101,100,137,171,80,38,173,37,81,38,82,85,83,84,87',
100
+ '38,105,86,37,75,76,153,152,57,56,88,89,77,37,90,58,59,78,37,46,48,47',
101
+ '91,49,44,45,64,72,73,-116,161,60,50,70,79,61,272,37,92,62,63,271,48',
102
+ '47,-178,-178,-178,-178,211,147,211,211,38,60,-43,-43,153,152,329,409',
103
+ '99,409,409,38,331,153,152,-42,-42,161,60,50,70,38,139,313,29,313,38',
104
+ '52,80,54,164,277,81,277,82,85,83,84,87,279,279,86,149,75,76,38,182,57',
105
+ '56,88,89,77,149,90,58,59,78,37,46,48,47,91,49,44,45,64,72,73,-116,164',
106
+ '60,50,70,79,61,164,60,164,62,63,-204,277,149,164,279,164,-203,305,149',
107
+ '366,141,164,164,-44,-44,129,130,132,-85,-85,-85,-85,142,-48,-48,-116',
108
+ '258,60,50,70,-99,-98,60,50,70,29,149,38,52,80,54,371,149,81,52,82,85',
109
+ '83,84,87,149,139,86,164,75,76,164,139,57,56,88,89,77,105,90,58,59,78',
110
+ '37,46,48,47,91,49,44,45,64,72,73,-99,-98,60,50,70,79,61,-46,-46,370',
111
+ '62,63,-175,-175,-175,-175,139,129,130,132,-47,-47,-45,-45,433,195,432',
112
+ '129,130,132,127,128,131,115,116,117,121,122,123,118,119,120,124,125',
113
+ '126,164,354,29,211,38,52,80,54,153,152,81,60,82,85,83,84,87,149,60,86',
114
+ '105,75,76,417,437,57,56,88,89,77,105,90,58,59,78,215,46,48,47,91,49',
115
+ '44,45,64,72,73,-116,216,60,50,70,79,61,139,218,319,62,63,-175,-175,-175',
116
+ '-175,-178,-178,-178,-178,211,147,48,47,211,49,48,47,262,49,-176,-176',
117
+ '-176,-176,263,320,191,192,193,194,267,129,130,132,127,128,131,29,269',
118
+ '269,52,269,54,129,130,132,127,128,131,115,116,117,121,122,123,118,119',
119
+ '120,124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133',
120
+ '134,101,100,137,323,105,258,276,294,295,149,139,302,305,306,105,139',
121
+ '105,312,326,327,328,333,105,105,105,342,346,357,361,320,258,362,363',
122
+ '60,129,130,132,127,128,131,129,130,132,127,128,131,368,129,130,132,127',
123
+ '128,131,115,116,117,121,122,123,118,119,120,124,125,126,102,104,103',
124
+ '109,111,110,112,114,113,106,108,107,133,134,101,100,137,105,80,129,130',
125
+ '132,81,105,82,85,83,84,87,374,105,86,377,75,76,379,380,57,56,88,89,77',
126
+ '393,90,58,59,78,37,46,48,47,91,49,44,45,64,72,73,-116,302,60,50,70,79',
127
+ '61,394,397,105,62,63,269,258,129,130,132,127,128,131,115,116,117,121',
128
+ '122,123,118,119,120,124,125,126,102,104,103,109,111,110,112,114,113',
129
+ '106,108,107,133,134,101,29,400,38,52,80,54,401,402,81,-245,82,85,83',
130
+ '84,87,105,403,86,406,75,76,60,211,57,56,88,89,77,211,90,58,59,78,37',
131
+ '46,48,47,91,49,44,45,64,72,73,427,60,60,50,70,79,61,430,431,434,62,63',
132
+ '435,438,129,130,132,127,128,131,115,116,117,121,122,123,118,119,120',
133
+ '124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133,134',
134
+ '440,29,441,38,52,80,54,442,443,81,211,82,85,83,84,87,105,445,86,446',
135
+ '75,76,371,371,57,56,88,89,77,211,90,58,59,78,37,46,48,47,91,49,44,45',
136
+ '64,72,73,458,435,60,50,70,79,61,462,463,371,62,63,465,468,129,130,132',
137
+ '127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,,,,,,,,',
138
+ ',,,129,130,132,,29,,38,52,80,54,,,81,,82,85,83,84,87,105,,86,,75,76',
139
+ ',,57,56,88,89,77,,90,58,59,78,37,46,48,47,91,49,44,45,64,72,73,105,',
140
+ '60,50,70,79,61,,,,62,63,,,129,130,132,127,128,131,115,116,117,121,122',
141
+ '123,118,119,120,124,125,126,,,,,,,,,,,,129,130,132,,29,,38,52,80,54',
142
+ ',,81,,82,85,83,84,87,105,,86,,75,76,,,57,56,88,89,77,,90,58,59,78,37',
143
+ '46,48,47,91,49,44,45,64,72,73,105,,60,50,70,79,61,,,,62,63,414,,,,,',
144
+ ',,,,,,,,,,,,,,,,,,,,,,,,,,,,,29,,38,52,,54,,129,130,132,127,128,131',
145
+ '115,116,117,121,122,123,118,119,120,124,125,126,102,104,103,109,111',
146
+ '110,112,114,113,106,108,107,133,134,101,100,137,419,,,,,,,,,146,56,',
147
+ '89,105,,90,,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,129,130',
148
+ '132,127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102',
149
+ '104,103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,29,',
150
+ ',52,,54,,261,146,56,,89,,105,90,,,,,46,48,47,,49,44,45,64,,,,,60,50',
151
+ '70,,61,,,,62,63,180,146,56,,89,,,90,,,,,46,48,47,,49,44,45,64,,,-116',
152
+ ',60,50,70,,61,,,,62,63,,29,,,52,,54,,261,,129,130,132,127,128,131,115',
153
+ '116,117,121,122,123,118,119,120,124,125,126,,180,146,56,,89,,176,90',
154
+ ',52,,54,46,48,47,,49,44,45,64,,,,,60,50,70,,61,105,,,62,63,180,146,56',
155
+ ',89,,,90,,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,,29,-119',
156
+ ',52,,54,,,129,130,132,127,128,131,115,116,117,121,122,123,118,119,120',
157
+ '124,125,126,,,,180,146,56,,89,29,-119,90,52,,54,,46,48,47,,49,44,45',
158
+ '64,,,,,60,50,70,105,61,,,,62,63,180,146,56,,89,,,90,,,,,46,48,47,,49',
159
+ '44,45,64,,,,,60,50,70,,61,,,,62,63,,29,-119,,52,,54,,,129,130,132,127',
160
+ '128,131,115,116,117,121,122,123,118,119,120,124,125,126,,,,180,146,56',
161
+ ',89,29,-119,90,52,,54,,46,48,47,,49,44,45,64,,,,,60,50,70,105,61,,,',
162
+ '62,63,180,146,56,,89,,,90,,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61',
163
+ ',,,62,63,,29,-121,,52,,54,,,129,130,132,127,128,131,115,116,117,121',
164
+ '122,123,118,119,120,124,125,126,,,,,146,56,,89,29,-119,90,52,,54,,46',
165
+ '48,47,,49,44,45,64,,,,,60,50,70,105,61,,,,62,63,180,146,56,,89,,,90',
166
+ ',,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,,29,,,52,,54,350',
167
+ ',129,130,132,127,128,131,115,116,117,121,122,123,118,119,120,124,125',
168
+ '126,,,,180,146,56,,89,29,-119,90,52,,54,,46,48,47,,49,44,45,64,,,,,60',
169
+ '50,70,105,61,,,,62,63,365,146,56,,89,,,90,,,,,46,48,47,,49,44,45,64',
170
+ ',,,,60,50,70,,61,,,,62,63,,29,-119,,52,,54,,129,130,132,127,128,131',
171
+ '115,116,117,121,122,123,118,119,120,124,125,126,,,,180,146,56,,89,,29',
172
+ '90,,52,,54,46,48,47,,49,44,45,64,,,,,60,50,70,105,61,,,,62,63,180,146',
173
+ '56,,89,,,90,,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,,29',
174
+ '-119,,52,,54,,,129,130,132,127,128,131,115,116,117,121,122,123,118,119',
175
+ '120,124,125,126,,,,,146,56,,89,29,-119,90,52,,54,,46,48,47,,49,44,45',
176
+ '64,,,,,60,50,70,105,61,,,,62,63,146,56,,89,,,90,,,,,46,48,47,,49,44',
177
+ '45,64,,,-116,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48',
178
+ '47,,49,44,45,64,,,-116,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54',
179
+ ',,167,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,',
180
+ '52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,165',
181
+ '89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146',
182
+ '56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63',
183
+ '146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,-116,,60,50,70,,61',
184
+ ',,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70',
185
+ ',61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60',
186
+ '50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,',
187
+ ',,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45',
188
+ '64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49',
189
+ '44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47',
190
+ ',49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46',
191
+ '48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54',
192
+ ',,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52',
193
+ '90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89',
194
+ ',52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56',
195
+ '29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146',
196
+ '56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63',
197
+ '146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,',
198
+ '62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,',
199
+ '61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50',
200
+ '70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,',
201
+ '60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64',
202
+ ',,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44',
203
+ '45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,',
204
+ '49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48',
205
+ '47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,',
206
+ '46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90',
207
+ '54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,',
208
+ '52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29',
209
+ '89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146',
210
+ '56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63',
211
+ '146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,',
212
+ '62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,',
213
+ '61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50',
214
+ '70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,',
215
+ '60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64',
216
+ ',,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44',
217
+ '45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,',
218
+ '49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48',
219
+ '47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,',
220
+ '46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90',
221
+ '54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,',
222
+ '52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29',
223
+ '89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146',
224
+ '56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63',
225
+ '146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,',
226
+ '62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,',
227
+ '61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50',
228
+ '70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,',
229
+ '60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64',
230
+ ',,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44',
231
+ '45,64,,,-116,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,288,,,,46,48',
232
+ '47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,',
233
+ '46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90',
234
+ '54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,',
235
+ '52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29',
236
+ '89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146',
237
+ '56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63',
238
+ '146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,-116,,60,50,70,,61',
239
+ ',,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70',
240
+ ',61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60',
241
+ '50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,',
242
+ ',,,60,50,70,,61,,,,62,63,,,29,,,52,348,54,129,130,132,127,128,131,115',
243
+ '116,117,121,122,123,118,119,120,124,125,126,,,,,146,56,,89,,29,90,,52',
244
+ ',54,46,48,47,,49,44,45,64,,,-116,,60,50,70,105,61,,,,62,63,146,56,,89',
245
+ ',,90,,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89',
246
+ ',52,90,288,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56',
247
+ '29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146',
248
+ '56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63',
249
+ '146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,',
250
+ '62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,',
251
+ '61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50',
252
+ '70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,',
253
+ '60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44,45,64',
254
+ ',,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,,49,44',
255
+ '45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,,46,48,47,',
256
+ '49,44,45,64,,,-116,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90,54,,,',
257
+ '46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,,52,90',
258
+ '54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29,89,',
259
+ '52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146,56,29',
260
+ '89,,52,90,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63,146',
261
+ '56,29,89,,52,,54,,,,46,48,47,,49,44,45,,,,,,60,50,70,,61,,,,62,63,146',
262
+ '56,29,89,,52,,54,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62,63',
263
+ '146,56,188,89,,52,,,,,,46,48,47,,49,44,45,64,,,,,60,50,70,,61,,,,62',
264
+ '63,,,188,,,52,,,,,,,,,,,,,,,,211,,,,,,129,130,132,127,128,131,,,188',
265
+ ',,52,129,130,132,127,128,131,115,116,117,121,122,123,118,119,120,124',
266
+ '125,126,102,104,103,109,111,110,112,114,113,106,108,107,133,134,101',
267
+ '100,137,211,105,,,,,129,130,132,127,128,131,,105,,,,,129,130,132,127',
268
+ '128,131,115,116,117,121,122,123,118,119,120,124,125,126,102,104,103',
269
+ '109,111,110,112,114,113,106,108,107,133,134,101,100,137,211,105,,,,',
270
+ '129,130,132,127,128,131,,105,,,,,129,130,132,127,128,131,115,116,117',
271
+ '121,122,123,118,119,120,124,125,126,102,104,103,109,111,110,112,114',
272
+ '113,106,108,107,133,134,101,100,137,211,105,,,,,129,130,132,127,128',
273
+ '131,,105,,,,,129,130,132,127,128,131,115,116,117,121,122,123,118,119',
274
+ '120,124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133',
275
+ '134,101,100,137,211,105,,,,,129,130,132,127,128,131,,105,,,,,129,130',
276
+ '132,127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102',
277
+ '104,103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,455',
278
+ '105,,,,,129,130,132,127,128,131,,105,,,,,129,130,132,127,128,131,115',
279
+ '116,117,121,122,123,118,119,120,124,125,126,102,104,103,109,111,110',
280
+ '112,114,113,106,108,107,133,134,101,100,137,460,105,,,,129,130,132,127',
281
+ '128,131,,,105,,,,,129,130,132,127,128,131,115,116,117,121,122,123,118',
282
+ '119,120,124,125,126,102,104,103,109,111,110,112,114,113,106,108,107',
283
+ '133,134,101,100,137,105,129,130,132,127,128,131,,,,,,,105,129,130,132',
284
+ '127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102,104',
285
+ '103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,105,,,,',
286
+ ',266,129,130,132,127,128,131,105,129,130,132,127,128,131,115,116,117',
287
+ '121,122,123,118,119,120,124,125,126,102,104,103,109,111,110,112,114',
288
+ '113,106,108,107,133,134,101,100,137,,,,,,,105,,,,,,,105,129,130,132',
289
+ '127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102,104',
290
+ '103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,,,,,,,,',
291
+ ',,,,275,105,129,130,132,127,128,131,115,116,117,121,122,123,118,119',
292
+ '120,124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133',
293
+ '134,101,100,137,,,,,,,,,,,,,,105,129,130,132,127,128,131,115,116,117',
294
+ '121,122,123,118,119,120,124,125,126,102,104,103,109,111,110,112,114',
295
+ '113,106,108,107,133,134,101,100,137,,,,,,,,,,,,,,105,129,130,132,127',
296
+ '128,131,115,116,117,121,122,123,118,119,120,124,125,126,102,104,103',
297
+ '109,111,110,112,114,113,106,108,107,133,134,101,100,137,,,,,,,,,,,,',
298
+ ',105,129,130,132,127,128,131,115,116,117,121,122,123,118,119,120,124',
299
+ '125,126,102,104,103,109,111,110,112,114,113,106,108,107,133,134,101',
300
+ '100,137,,,,,,,,,,,,,,105,129,130,132,127,128,131,115,116,117,121,122',
301
+ '123,118,119,120,124,125,126,129,130,132,127,128,131,115,116,117,121',
302
+ '122,123,118,119,120,124,125,126,102,104,103,109,111,110,112,114,113',
303
+ '106,108,107,105,,,,,,,,,,,,,,,,,,105,129,130,132,127,128,131,115,116',
304
+ '117,121,122,123,118,119,120,124,125,126,102,104,103,109,111,110,112',
305
+ '114,113,106,108,107,,,,,,,,,,,,,,,,,,,105,129,130,132,127,128,131,115',
306
+ '116,117,121,122,123,118,119,120,124,125,126,102,104,103,109,111,110',
307
+ '112,114,113,106,108,107,133,134,101,100,137,,,,,,,,,,,,,,105,129,130',
308
+ '132,127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102',
309
+ '104,103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,,,,',
310
+ ',,,,,,,,,105,129,130,132,127,128,131,115,116,117,121,122,123,118,119',
311
+ '120,124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133',
312
+ '134,101,100,137,,,,,,,,,,,,,337,105,129,130,132,127,128,131,115,116',
313
+ '117,121,122,123,118,119,120,124,125,126,102,104,103,109,111,110,112',
314
+ '114,113,106,108,107,133,134,101,100,137,,,,,,,,,,340,,,341,105,129,130',
315
+ '132,127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102',
316
+ '104,103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,,,,',
317
+ ',,,,,,,,,105,129,130,132,127,128,131,115,116,117,121,122,123,118,119',
318
+ '120,124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133',
319
+ '134,101,100,137,,,,,,,266,,,,,,,105,129,130,132,127,128,131,115,116',
320
+ '117,121,122,123,118,119,120,124,125,126,102,104,103,109,111,110,112',
321
+ '114,113,106,108,107,133,134,101,100,137,,,,,,,360,,,,,,,105,129,130',
322
+ '132,127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102',
323
+ '104,103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,,,,',
324
+ ',,,,,,,,,105,129,130,132,127,128,131,115,116,117,121,122,123,118,119',
325
+ '120,124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133',
326
+ '134,101,100,137,,,,,,,360,,,,,,,105,129,130,132,127,128,131,115,116',
327
+ '117,121,122,123,118,119,120,124,125,126,102,104,103,109,111,110,112',
328
+ '114,113,106,108,107,133,134,101,100,137,,,,,,,,,,,,,,105,129,130,132',
329
+ '127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102,104',
330
+ '103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,,,,,,,,',
331
+ ',,,,,105,129,130,132,127,128,131,115,116,117,121,122,123,118,119,120',
332
+ '124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133,134',
333
+ '101,100,137,,,,,,,,,,,,,,105,129,130,132,127,128,131,115,116,117,121',
334
+ '122,123,118,119,120,124,125,126,102,104,103,109,111,110,112,114,113',
335
+ '106,108,107,133,134,101,100,137,,,,,,,,,,,,,,105,129,130,132,127,128',
336
+ '131,115,116,117,121,122,123,118,119,120,124,125,126,102,104,103,109',
337
+ '111,110,112,114,113,106,108,107,133,134,101,100,137,,,,,,,,,,396,,,341',
338
+ '105,129,130,132,127,128,131,115,116,117,121,122,123,118,119,120,124',
339
+ '125,126,102,104,103,109,111,110,112,114,113,106,108,107,133,134,101',
340
+ '100,137,,,,,,,,,,,,,,105,129,130,132,127,128,131,115,116,117,121,122',
341
+ '123,118,119,120,124,125,126,102,104,103,109,111,110,112,114,113,106',
342
+ '108,107,133,134,101,100,137,,,,,,,,,,399,,,,105,129,130,132,127,128',
343
+ '131,115,116,117,121,122,123,118,119,120,124,125,126,102,104,103,109',
344
+ '111,110,112,114,113,106,108,107,133,134,101,100,137,,,,,,,,,,,,,,105',
345
+ '129,130,132,127,128,131,115,116,117,121,122,123,118,119,120,124,125',
346
+ '126,102,104,103,109,111,110,112,114,113,106,108,107,133,134,101,100',
347
+ '137,,,,,,,,,,,,,,105,129,130,132,127,128,131,115,116,117,121,122,123',
348
+ '118,119,120,124,125,126,102,104,103,109,111,110,112,114,113,106,108',
349
+ '107,133,134,101,100,137,,,,,,,,,,,,,,105,129,130,132,127,128,131,115',
350
+ '116,117,121,122,123,118,119,120,124,125,126,102,104,103,109,111,110',
351
+ '112,114,113,106,108,107,133,134,101,100,137,,,,,,,,,,,,,,105,129,130',
352
+ '132,127,128,131,115,116,117,121,122,123,118,119,120,124,125,126,102',
353
+ '104,103,109,111,110,112,114,113,106,108,107,133,134,101,100,137,,,,',
354
+ ',,,,,,,,,105,129,130,132,127,128,131,115,116,117,121,122,123,118,119',
355
+ '120,124,125,126,102,104,103,109,111,110,112,114,113,106,108,107,133',
356
+ '134,101,100,137,,,,,,,,,,,,,,105,129,130,132,127,128,131,115,116,117',
357
+ '121,122,123,118,119,120,124,125,126,102,104,103,109,111,110,112,114',
358
+ '113,106,108,107,133,134,101,100,137,,,,,,,,,,,,,,105,129,130,132,127',
359
+ '128,131,115,116,117,121,122,123,118,119,120,124,125,126,102,104,103',
360
+ '109,111,110,112,114,113,106,108,107,133,134,101,100,137,,,,,,,,,,,,',
361
+ ',105,129,130,132,127,128,131,115,116,117,121,122,123,118,119,120,124',
362
+ '125,126,102,104,103,109,111,110,112,114,113,106,108,107,133,134,101',
363
+ '100,137,,,,,,,,,,,,,,105,129,130,132,127,128,131,115,116,117,121,122',
364
+ '123,118,119,120,124,125,126,102,104,103,109,111,110,112,114,113,106',
365
+ '108,107,133,134,101,100,137,,,,,,,,,,,,,,105' ]
366
+ racc_action_table = arr = ::Array.new(6668, nil)
367
+ idx = 0
368
+ clist.each do |str|
369
+ str.split(',', -1).each do |i|
370
+ arr[idx] = i.to_i unless i.empty?
371
+ idx += 1
372
+ end
373
+ end
374
+
375
+ clist = [
376
+ '22,143,74,143,22,333,376,376,182,182,370,369,433,157,57,57,74,57,155',
377
+ '182,157,155,369,155,3,57,57,57,93,57,57,57,333,370,376,433,330,57,57',
378
+ '57,202,57,330,330,202,57,57,22,22,22,22,22,22,22,22,22,22,22,22,22,22',
379
+ '22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,57,0',
380
+ '3,57,332,0,93,0,0,0,0,0,376,22,0,454,0,0,287,287,0,0,0,0,0,461,0,0,0',
381
+ '0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,298,466,1,0,0,298,59,59,283,283',
382
+ '283,283,447,283,451,464,332,59,283,283,40,40,210,447,19,451,464,454',
383
+ '210,181,181,287,287,175,72,72,72,461,23,200,0,213,0,0,2,0,55,277,2,161',
384
+ '2,2,2,2,2,162,278,2,284,2,2,466,59,2,2,2,2,2,286,2,2,2,2,2,2,2,2,2,2',
385
+ '2,2,2,2,2,2,175,2,2,2,2,2,200,86,213,2,2,161,313,266,277,314,161,162',
386
+ '304,360,304,24,162,278,284,284,186,186,186,138,138,138,138,27,286,286',
387
+ '8,138,8,8,8,403,430,73,73,73,2,32,2,2,94,2,315,35,94,86,94,94,94,94',
388
+ '94,285,266,94,313,94,94,314,360,94,94,94,94,94,186,94,94,94,94,94,94',
389
+ '94,94,94,94,94,94,94,94,94,403,430,94,94,94,94,94,281,281,315,94,94',
390
+ '285,285,285,285,43,187,187,187,282,282,285,285,410,70,410,222,222,222',
391
+ '222,222,222,222,222,222,222,222,222,222,222,222,222,222,222,290,290',
392
+ '94,87,94,94,95,94,387,387,95,88,95,95,95,95,95,33,89,95,187,95,95,416',
393
+ '416,95,95,95,95,95,222,95,95,95,95,90,95,95,95,95,95,95,95,95,95,95',
394
+ '95,92,95,95,95,95,95,96,97,203,95,95,33,33,33,33,31,31,31,31,331,31',
395
+ '331,331,386,331,386,386,140,386,42,42,42,42,141,203,66,66,66,66,146',
396
+ '235,235,235,235,235,235,95,148,150,95,151,95,203,203,203,203,203,203',
397
+ '203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203',
398
+ '203,203,203,203,203,203,203,203,203,203,203,203,204,235,154,160,166',
399
+ '169,170,174,178,183,184,185,189,203,199,207,208,209,212,249,250,252',
400
+ '260,268,293,297,204,299,300,301,305,236,236,236,236,236,236,237,237',
401
+ '237,237,237,237,312,204,204,204,204,204,204,204,204,204,204,204,204',
402
+ '204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204',
403
+ '204,204,204,204,204,204,236,211,247,247,247,211,237,211,211,211,211',
404
+ '211,318,204,211,322,211,211,324,325,211,211,211,211,211,334,211,211',
405
+ '211,211,211,211,211,211,211,211,211,211,211,211,211,211,335,211,211',
406
+ '211,211,211,336,339,247,211,211,344,345,220,220,220,220,220,220,220',
407
+ '220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220,220',
408
+ '220,220,220,220,220,220,220,220,220,211,353,211,211,320,211,355,356',
409
+ '320,320,320,320,320,320,320,220,359,320,367,320,320,368,385,320,320',
410
+ '320,320,320,389,320,320,320,320,320,320,320,320,320,320,320,320,320',
411
+ '320,320,391,392,320,320,320,320,320,404,408,411,320,320,412,417,221',
412
+ '221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221',
413
+ '221,221,221,221,221,221,221,221,221,221,221,221,221,221,420,320,421',
414
+ '320,320,438,320,422,423,438,425,438,438,438,438,438,221,428,438,429',
415
+ '438,438,432,434,438,438,438,438,438,445,438,438,438,438,438,438,438',
416
+ '438,438,438,438,438,438,438,438,448,449,438,438,438,438,438,456,457',
417
+ '458,438,438,459,467,223,223,223,223,223,223,223,223,223,223,223,223',
418
+ '223,223,223,223,223,223,,,,,,,,,,,,248,248,248,,438,,438,438,455,438',
419
+ ',,455,,455,455,455,455,455,223,,455,,455,455,,,455,455,455,455,455,',
420
+ '455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,248,,455',
421
+ '455,455,455,455,,,,455,455,,,224,224,224,224,224,224,224,224,224,224',
422
+ '224,224,224,224,224,224,224,224,,,,,,,,,,,,251,251,251,,455,,455,455',
423
+ '460,455,,,460,,460,460,460,460,460,224,,460,,460,460,,,460,460,460,460',
424
+ '460,,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,251',
425
+ ',460,460,460,460,460,,,,460,460,375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,',
426
+ ',,460,,460,460,,460,,375,375,375,375,375,375,375,375,375,375,375,375',
427
+ '375,375,375,375,375,375,375,375,375,375,375,375,375,375,375,375,375',
428
+ '375,375,375,375,375,375,378,,,,,,,,,139,139,,139,375,,139,,,,,139,139',
429
+ '139,,139,139,139,139,,,,,139,139,139,,139,,,,139,139,378,378,378,378',
430
+ '378,378,378,378,378,378,378,378,378,378,378,378,378,378,378,378,378',
431
+ '378,378,378,378,378,378,378,378,378,378,378,378,378,378,139,,,139,,139',
432
+ ',139,258,258,,258,,378,258,,,,,258,258,258,,258,258,258,258,,,,,258',
433
+ '258,258,,258,,,,258,258,58,58,58,,58,,,58,,,,,58,58,58,,58,58,58,58',
434
+ ',,58,,58,58,58,,58,,,,58,58,,258,,,258,,258,,258,,226,226,226,226,226',
435
+ '226,226,226,226,226,226,226,226,226,226,226,226,226,,147,147,147,,147',
436
+ ',58,147,,58,,58,147,147,147,,147,147,147,147,,,,,147,147,147,,147,226',
437
+ ',,147,147,165,165,165,,165,,,165,,,,,165,165,165,,165,165,165,165,,',
438
+ ',,165,165,165,,165,,,,165,165,,147,147,,147,,147,,,227,227,227,227,227',
439
+ '227,227,227,227,227,227,227,227,227,227,227,227,227,,,,171,171,171,',
440
+ '171,165,165,171,165,,165,,171,171,171,,171,171,171,171,,,,,171,171,171',
441
+ '227,171,,,,171,171,176,176,176,,176,,,176,,,,,176,176,176,,176,176,176',
442
+ '176,,,,,176,176,176,,176,,,,176,176,,171,171,,171,,171,,,228,228,228',
443
+ '228,228,228,228,228,228,228,228,228,228,228,228,228,228,228,,,,215,215',
444
+ '215,,215,176,176,215,176,,176,,215,215,215,,215,215,215,215,,,,,215',
445
+ '215,215,228,215,,,,215,215,267,267,267,,267,,,267,,,,,267,267,267,,267',
446
+ '267,267,267,,,,,267,267,267,,267,,,,267,267,,215,215,,215,,215,,,229',
447
+ '229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229',
448
+ ',,,,274,274,,274,267,267,274,267,,267,,274,274,274,,274,274,274,274',
449
+ ',,,,274,274,274,229,274,,,,274,274,276,276,276,,276,,,276,,,,,276,276',
450
+ '276,,276,276,276,276,,,,,276,276,276,,276,,,,276,276,,274,,,274,,274',
451
+ '274,,230,230,230,230,230,230,230,230,230,230,230,230,230,230,230,230',
452
+ '230,230,,,,295,295,295,,295,276,276,295,276,,276,,295,295,295,,295,295',
453
+ '295,295,,,,,295,295,295,230,295,,,,295,295,302,302,302,,302,,,302,,',
454
+ ',,302,302,302,,302,302,302,302,,,,,302,302,302,,302,,,,302,302,,295',
455
+ '295,,295,,295,,231,231,231,231,231,231,231,231,231,231,231,231,231,231',
456
+ '231,231,231,231,,,,362,362,362,,362,,302,362,,302,,302,362,362,362,',
457
+ '362,362,362,362,,,,,362,362,362,231,362,,,,362,362,393,393,393,,393',
458
+ ',,393,,,,,393,393,393,,393,393,393,393,,,,,393,393,393,,393,,,,393,393',
459
+ ',362,362,,362,,362,,,232,232,232,232,232,232,232,232,232,232,232,232',
460
+ '232,232,232,232,232,232,,,,,29,29,,29,393,393,29,393,,393,,29,29,29',
461
+ ',29,29,29,29,,,,,29,29,29,232,29,,,,29,29,52,52,,52,,,52,,,,,52,52,52',
462
+ ',52,52,52,52,,,52,,52,52,52,,52,,,,52,52,54,54,29,54,,29,54,29,,,,54',
463
+ '54,54,,54,54,54,54,,,54,,54,54,54,,54,,,,54,54,56,56,52,56,,52,56,52',
464
+ ',,56,56,56,56,,56,56,56,56,,,,,56,56,56,,56,,,,56,56,61,61,54,61,,54',
465
+ '61,54,,,,61,61,61,,61,61,61,61,,,,,61,61,61,,61,,,,61,61,62,62,56,62',
466
+ ',56,62,56,,,,62,62,62,,62,62,62,62,,,,,62,62,62,,62,,,,62,62,63,63,61',
467
+ '63,,61,63,61,,,,63,63,63,,63,63,63,63,,,,,63,63,63,,63,,,,63,63,78,78',
468
+ '62,78,,62,78,62,,,,78,78,78,,78,78,78,78,,,78,,78,78,78,,78,,,,78,78',
469
+ '80,80,63,80,,63,80,63,,,,80,80,80,,80,80,80,80,,,,,80,80,80,,80,,,,80',
470
+ '80,81,81,78,81,,78,81,78,,,,81,81,81,,81,81,81,81,,,,,81,81,81,,81,',
471
+ ',,81,81,82,82,80,82,,80,82,80,,,,82,82,82,,82,82,82,82,,,,,82,82,82',
472
+ ',82,,,,82,82,85,85,81,85,,81,85,81,,,,85,85,85,,85,85,85,85,,,,,85,85',
473
+ '85,,85,,,,85,85,100,100,82,100,,82,100,82,,,,100,100,100,,100,100,100',
474
+ '100,,,,,100,100,100,,100,,,,100,100,101,101,85,101,,85,101,85,,,,101',
475
+ '101,101,,101,101,101,101,,,,,101,101,101,,101,,,,101,101,102,102,100',
476
+ '102,,100,102,100,,,,102,102,102,,102,102,102,102,,,,,102,102,102,,102',
477
+ ',,,102,102,103,103,101,103,,101,103,101,,,,103,103,103,,103,103,103',
478
+ '103,,,,,103,103,103,,103,,,,103,103,104,104,102,104,,102,104,102,,,',
479
+ '104,104,104,,104,104,104,104,,,,,104,104,104,,104,,,,104,104,105,105',
480
+ '103,105,,103,105,103,,,,105,105,105,,105,105,105,105,,,,,105,105,105',
481
+ ',105,,,,105,105,106,106,104,106,,104,106,104,,,,106,106,106,,106,106',
482
+ '106,106,,,,,106,106,106,,106,,,,106,106,107,107,105,107,,105,107,105',
483
+ ',,,107,107,107,,107,107,107,107,,,,,107,107,107,,107,,,,107,107,108',
484
+ '108,106,108,,106,108,106,,,,108,108,108,,108,108,108,108,,,,,108,108',
485
+ '108,,108,,,,108,108,109,109,107,109,,107,109,107,,,,109,109,109,,109',
486
+ '109,109,109,,,,,109,109,109,,109,,,,109,109,110,110,108,110,,108,110',
487
+ '108,,,,110,110,110,,110,110,110,110,,,,,110,110,110,,110,,,,110,110',
488
+ '111,111,109,111,,109,111,109,,,,111,111,111,,111,111,111,111,,,,,111',
489
+ '111,111,,111,,,,111,111,112,112,110,112,,110,112,110,,,,112,112,112',
490
+ ',112,112,112,112,,,,,112,112,112,,112,,,,112,112,113,113,111,113,,111',
491
+ '113,111,,,,113,113,113,,113,113,113,113,,,,,113,113,113,,113,,,,113',
492
+ '113,114,114,112,114,,112,114,112,,,,114,114,114,,114,114,114,114,,,',
493
+ ',114,114,114,,114,,,,114,114,115,115,113,115,,113,115,113,,,,115,115',
494
+ '115,,115,115,115,115,,,,,115,115,115,,115,,,,115,115,116,116,114,116',
495
+ ',114,116,114,,,,116,116,116,,116,116,116,116,,,,,116,116,116,,116,,',
496
+ ',116,116,117,117,115,117,,115,117,115,,,,117,117,117,,117,117,117,117',
497
+ ',,,,117,117,117,,117,,,,117,117,118,118,116,118,,116,118,116,,,,118',
498
+ '118,118,,118,118,118,118,,,,,118,118,118,,118,,,,118,118,119,119,117',
499
+ '119,,117,119,117,,,,119,119,119,,119,119,119,119,,,,,119,119,119,,119',
500
+ ',,,119,119,120,120,118,120,,118,120,118,,,,120,120,120,,120,120,120',
501
+ '120,,,,,120,120,120,,120,,,,120,120,121,121,119,121,,119,121,119,,,',
502
+ '121,121,121,,121,121,121,121,,,,,121,121,121,,121,,,,121,121,122,122',
503
+ '120,122,,120,122,120,,,,122,122,122,,122,122,122,122,,,,,122,122,122',
504
+ ',122,,,,122,122,123,123,121,123,,121,123,121,,,,123,123,123,,123,123',
505
+ '123,123,,,,,123,123,123,,123,,,,123,123,124,124,122,124,,122,124,122',
506
+ ',,,124,124,124,,124,124,124,124,,,,,124,124,124,,124,,,,124,124,125',
507
+ '125,123,125,,123,125,123,,,,125,125,125,,125,125,125,125,,,,,125,125',
508
+ '125,,125,,,,125,125,126,126,124,126,,124,126,124,,,,126,126,126,,126',
509
+ '126,126,126,,,,,126,126,126,,126,,,,126,126,127,127,125,127,,125,127',
510
+ '125,,,,127,127,127,,127,127,127,127,,,,,127,127,127,,127,,,,127,127',
511
+ '128,128,126,128,,126,128,126,,,,128,128,128,,128,128,128,128,,,,,128',
512
+ '128,128,,128,,,,128,128,129,129,127,129,,127,129,127,,,,129,129,129',
513
+ ',129,129,129,129,,,,,129,129,129,,129,,,,129,129,130,130,128,130,,128',
514
+ '130,128,,,,130,130,130,,130,130,130,130,,,,,130,130,130,,130,,,,130',
515
+ '130,131,131,129,131,,129,131,129,,,,131,131,131,,131,131,131,131,,,',
516
+ ',131,131,131,,131,,,,131,131,132,132,130,132,,130,132,130,,,,132,132',
517
+ '132,,132,132,132,132,,,,,132,132,132,,132,,,,132,132,133,133,131,133',
518
+ ',131,133,131,,,,133,133,133,,133,133,133,133,,,,,133,133,133,,133,,',
519
+ ',133,133,134,134,132,134,,132,134,132,,,,134,134,134,,134,134,134,134',
520
+ ',,,,134,134,134,,134,,,,134,134,135,135,133,135,,133,135,133,,,,135',
521
+ '135,135,,135,135,135,135,,,,,135,135,135,,135,,,,135,135,136,136,134',
522
+ '136,,134,136,134,,,,136,136,136,,136,136,136,136,,,,,136,136,136,,136',
523
+ ',,,136,136,137,137,135,137,,135,137,135,,,,137,137,137,,137,137,137',
524
+ '137,,,,,137,137,137,,137,,,,137,137,164,164,136,164,,136,164,136,,,',
525
+ '164,164,164,,164,164,164,164,,,,,164,164,164,,164,,,,164,164,173,173',
526
+ '137,173,,137,173,137,,,,173,173,173,,173,173,173,173,,,173,,173,173',
527
+ '173,,173,,,,173,173,180,180,164,180,,164,180,164,,,,180,180,180,,180',
528
+ '180,180,180,,,,,180,180,180,,180,,,,180,180,188,188,173,188,,173,188',
529
+ '173,,,,188,188,188,,188,188,188,188,,,,,188,188,188,,188,,,,188,188',
530
+ '191,191,180,191,,180,191,180,,,,191,191,191,,191,191,191,191,,,,,191',
531
+ '191,191,,191,,,,191,191,192,192,188,192,,188,192,188,,,,192,192,192',
532
+ ',192,192,192,192,,,,,192,192,192,,192,,,,192,192,193,193,191,193,,191',
533
+ '193,191,,,,193,193,193,,193,193,193,193,,,,,193,193,193,,193,,,,193',
534
+ '193,194,194,192,194,,192,194,192,,,,194,194,194,,194,194,194,194,,,',
535
+ ',194,194,194,,194,,,,194,194,261,261,193,261,,193,261,193,,,,261,261',
536
+ '261,,261,261,261,261,,,261,,261,261,261,,261,,,,261,261,270,270,194',
537
+ '270,,194,270,194,,,,270,270,270,,270,270,270,270,,,,,270,270,270,,270',
538
+ ',,,270,270,272,272,261,272,,261,272,261,,,,272,272,272,,272,272,272',
539
+ '272,,,,,272,272,272,,272,,,,272,272,275,275,270,275,,270,275,270,,,',
540
+ '275,275,275,,275,275,275,275,,,,,275,275,275,,275,,,,275,275,,,272,',
541
+ ',272,272,272,233,233,233,233,233,233,233,233,233,233,233,233,233,233',
542
+ '233,233,233,233,,,,,288,288,,288,,275,288,,275,,275,288,288,288,,288',
543
+ '288,288,288,,,288,,288,288,288,233,288,,,,288,288,291,291,,291,,,291',
544
+ ',,,,291,291,291,,291,291,291,291,,,,,291,291,291,,291,,,,291,291,294',
545
+ '294,288,294,,288,294,288,,,,294,294,294,,294,294,294,294,,,,,294,294',
546
+ '294,,294,,,,294,294,316,316,291,316,,291,316,291,,,,316,316,316,,316',
547
+ '316,316,316,,,,,316,316,316,,316,,,,316,316,317,317,294,317,,294,317',
548
+ '294,,,,317,317,317,,317,317,317,317,,,,,317,317,317,,317,,,,317,317',
549
+ '319,319,316,319,,316,319,316,,,,319,319,319,,319,319,319,319,,,,,319',
550
+ '319,319,,319,,,,319,319,323,323,317,323,,317,323,317,,,,323,323,323',
551
+ ',323,323,323,323,,,,,323,323,323,,323,,,,323,323,326,326,319,326,,319',
552
+ '326,319,,,,326,326,326,,326,326,326,326,,,,,326,326,326,,326,,,,326',
553
+ '326,327,327,323,327,,323,327,323,,,,327,327,327,,327,327,327,327,,,',
554
+ ',327,327,327,,327,,,,327,327,328,328,326,328,,326,328,326,,,,328,328',
555
+ '328,,328,328,328,328,,,,,328,328,328,,328,,,,328,328,337,337,327,337',
556
+ ',327,337,327,,,,337,337,337,,337,337,337,337,,,,,337,337,337,,337,,',
557
+ ',337,337,341,341,328,341,,328,341,328,,,,341,341,341,,341,341,341,341',
558
+ ',,341,,341,341,341,,341,,,,341,341,365,365,337,365,,337,365,337,,,,365',
559
+ '365,365,,365,365,365,365,,,,,365,365,365,,365,,,,365,365,418,418,341',
560
+ '418,,341,418,341,,,,418,418,418,,418,418,418,418,,,,,418,418,418,,418',
561
+ ',,,418,418,435,435,365,435,,365,435,365,,,,435,435,435,,435,435,435',
562
+ '435,,,,,435,435,435,,435,,,,435,435,437,437,418,437,,418,437,418,,,',
563
+ '437,437,437,,437,437,437,437,,,,,437,437,437,,437,,,,437,437,64,64,435',
564
+ '64,,435,,435,,,,64,64,64,,64,64,64,,,,,,64,64,64,,64,,,,64,64,99,99',
565
+ '437,99,,437,,437,,,,99,99,99,,99,99,99,99,,,,,99,99,99,,99,,,,99,99',
566
+ '142,142,64,142,,64,,,,,,142,142,142,,142,142,142,142,,,,,142,142,142',
567
+ ',142,,,,142,142,,,99,,,99,,,,,,,,,,,,,,,,205,,,,,,238,238,238,238,238',
568
+ '238,,,142,,,142,205,205,205,205,205,205,205,205,205,205,205,205,205',
569
+ '205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205',
570
+ '205,205,205,205,205,206,238,,,,,239,239,239,239,239,239,,205,,,,,206',
571
+ '206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206',
572
+ '206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206',
573
+ '381,239,,,,,240,240,240,240,240,240,,206,,,,,381,381,381,381,381,381',
574
+ '381,381,381,381,381,381,381,381,381,381,381,381,381,381,381,381,381',
575
+ '381,381,381,381,381,381,381,381,381,381,381,381,382,240,,,,,241,241',
576
+ '241,241,241,241,,381,,,,,382,382,382,382,382,382,382,382,382,382,382',
577
+ '382,382,382,382,382,382,382,382,382,382,382,382,382,382,382,382,382',
578
+ '382,382,382,382,382,382,382,383,241,,,,,242,242,242,242,242,242,,382',
579
+ ',,,,383,383,383,383,383,383,383,383,383,383,383,383,383,383,383,383',
580
+ '383,383,383,383,383,383,383,383,383,383,383,383,383,383,383,383,383',
581
+ '383,383,439,242,,,,,243,243,243,243,243,243,,383,,,,,439,439,439,439',
582
+ '439,439,439,439,439,439,439,439,439,439,439,439,439,439,439,439,439',
583
+ '439,439,439,439,439,439,439,439,439,439,439,439,439,439,453,243,,,,244',
584
+ '244,244,244,244,244,,,439,,,,,453,453,453,453,453,453,453,453,453,453',
585
+ '453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453',
586
+ '453,453,453,453,453,453,453,453,244,245,245,245,245,245,245,,,,,,,453',
587
+ '145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145',
588
+ '145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145',
589
+ '145,245,,,,,,145,246,246,246,246,246,246,145,156,156,156,156,156,156',
590
+ '156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156',
591
+ '156,156,156,156,156,156,156,156,156,156,156,156,,,,,,,246,,,,,,,156',
592
+ '159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159',
593
+ '159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159',
594
+ '159,,,,,,,,,,,,,159,159,168,168,168,168,168,168,168,168,168,168,168',
595
+ '168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168',
596
+ '168,168,168,168,168,168,168,,,,,,,,,,,,,,168,179,179,179,179,179,179',
597
+ '179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179',
598
+ '179,179,179,179,179,179,179,179,179,179,179,179,,,,,,,,,,,,,,179,201',
599
+ '201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201',
600
+ '201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201',
601
+ ',,,,,,,,,,,,,201,225,225,225,225,225,225,225,225,225,225,225,225,225',
602
+ '225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225,225',
603
+ '225,225,225,225,225,,,,,,,,,,,,,,225,234,234,234,234,234,234,234,234',
604
+ '234,234,234,234,234,234,234,234,234,234,253,253,253,253,253,253,253',
605
+ '253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253',
606
+ '253,253,253,253,253,253,234,,,,,,,,,,,,,,,,,,253,254,254,254,254,254',
607
+ '254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254,254',
608
+ '254,254,254,254,254,254,254,254,,,,,,,,,,,,,,,,,,,254,255,255,255,255',
609
+ '255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255',
610
+ '255,255,255,255,255,255,255,255,255,255,255,255,255,255,,,,,,,,,,,,',
611
+ ',255,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256',
612
+ '256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256',
613
+ '256,256,,,,,,,,,,,,,,256,257,257,257,257,257,257,257,257,257,257,257',
614
+ '257,257,257,257,257,257,257,257,257,257,257,257,257,257,257,257,257',
615
+ '257,257,257,257,257,257,257,,,,,,,,,,,,,257,257,259,259,259,259,259',
616
+ '259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259',
617
+ '259,259,259,259,259,259,259,259,259,259,259,259,259,,,,,,,,,,259,,,259',
618
+ '259,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289',
619
+ '289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289,289',
620
+ '289,289,,,,,,,,,,,,,,289,292,292,292,292,292,292,292,292,292,292,292',
621
+ '292,292,292,292,292,292,292,292,292,292,292,292,292,292,292,292,292',
622
+ '292,292,292,292,292,292,292,,,,,,,292,,,,,,,292,296,296,296,296,296',
623
+ '296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296,296',
624
+ '296,296,296,296,296,296,296,296,296,296,296,296,296,,,,,,,296,,,,,,',
625
+ '296,303,303,303,303,303,303,303,303,303,303,303,303,303,303,303,303',
626
+ '303,303,303,303,303,303,303,303,303,303,303,303,303,303,303,303,303',
627
+ '303,303,,,,,,,,,,,,,,303,307,307,307,307,307,307,307,307,307,307,307',
628
+ '307,307,307,307,307,307,307,307,307,307,307,307,307,307,307,307,307',
629
+ '307,307,307,307,307,307,307,,,,,,,307,,,,,,,307,308,308,308,308,308',
630
+ '308,308,308,308,308,308,308,308,308,308,308,308,308,308,308,308,308',
631
+ '308,308,308,308,308,308,308,308,308,308,308,308,308,,,,,,,,,,,,,,308',
632
+ '309,309,309,309,309,309,309,309,309,309,309,309,309,309,309,309,309',
633
+ '309,309,309,309,309,309,309,309,309,309,309,309,309,309,309,309,309',
634
+ '309,,,,,,,,,,,,,,309,310,310,310,310,310,310,310,310,310,310,310,310',
635
+ '310,310,310,310,310,310,310,310,310,310,310,310,310,310,310,310,310',
636
+ '310,310,310,310,310,310,,,,,,,,,,,,,,310,311,311,311,311,311,311,311',
637
+ '311,311,311,311,311,311,311,311,311,311,311,311,311,311,311,311,311',
638
+ '311,311,311,311,311,311,311,311,311,311,311,,,,,,,,,,,,,,311,338,338',
639
+ '338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338',
640
+ '338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,,,,',
641
+ ',,,,,338,,,338,338,343,343,343,343,343,343,343,343,343,343,343,343,343',
642
+ '343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343,343',
643
+ '343,343,343,343,343,,,,,,,,,,,,,,343,347,347,347,347,347,347,347,347',
644
+ '347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347,347',
645
+ '347,347,347,347,347,347,347,347,347,347,,,,,,,,,,347,,,,347,349,349',
646
+ '349,349,349,349,349,349,349,349,349,349,349,349,349,349,349,349,349',
647
+ '349,349,349,349,349,349,349,349,349,349,349,349,349,349,349,349,,,,',
648
+ ',,,,,,,,,349,352,352,352,352,352,352,352,352,352,352,352,352,352,352',
649
+ '352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,352',
650
+ '352,352,352,352,,,,,,,,,,,,,,352,358,358,358,358,358,358,358,358,358',
651
+ '358,358,358,358,358,358,358,358,358,358,358,358,358,358,358,358,358',
652
+ '358,358,358,358,358,358,358,358,358,,,,,,,,,,,,,,358,364,364,364,364',
653
+ '364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364,364',
654
+ '364,364,364,364,364,364,364,364,364,364,364,364,364,364,,,,,,,,,,,,',
655
+ ',364,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372',
656
+ '372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372,372',
657
+ '372,372,,,,,,,,,,,,,,372,373,373,373,373,373,373,373,373,373,373,373',
658
+ '373,373,373,373,373,373,373,373,373,373,373,373,373,373,373,373,373',
659
+ '373,373,373,373,373,373,373,,,,,,,,,,,,,,373,395,395,395,395,395,395',
660
+ '395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395,395',
661
+ '395,395,395,395,395,395,395,395,395,395,395,395,,,,,,,,,,,,,,395,398',
662
+ '398,398,398,398,398,398,398,398,398,398,398,398,398,398,398,398,398',
663
+ '398,398,398,398,398,398,398,398,398,398,398,398,398,398,398,398,398',
664
+ ',,,,,,,,,,,,,398,405,405,405,405,405,405,405,405,405,405,405,405,405',
665
+ '405,405,405,405,405,405,405,405,405,405,405,405,405,405,405,405,405',
666
+ '405,405,405,405,405,,,,,,,,,,,,,,405,452,452,452,452,452,452,452,452',
667
+ '452,452,452,452,452,452,452,452,452,452,452,452,452,452,452,452,452',
668
+ '452,452,452,452,452,452,452,452,452,452,,,,,,,,,,,,,,452' ]
669
+ racc_action_check = arr = ::Array.new(6668, nil)
670
+ idx = 0
671
+ clist.each do |str|
672
+ str.split(',', -1).each do |i|
673
+ arr[idx] = i.to_i unless i.empty?
674
+ idx += 1
675
+ end
676
+ end
677
+
678
+ racc_action_pointer = [
679
+ 81, 132, 172, -7, nil, nil, nil, nil, 209, nil,
680
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, 66,
681
+ nil, nil, -2, 76, 182, nil, nil, 160, nil, 1805,
682
+ nil, 328, 219, 324, nil, 225, nil, nil, nil, nil,
683
+ 117, nil, 342, 229, nil, nil, nil, nil, nil, nil,
684
+ nil, nil, 1838, nil, 1871, 82, 1904, -7, 1155, 103,
685
+ nil, 1937, 1970, 2003, 4409, nil, 348, nil, nil, nil,
686
+ 288, nil, 120, 214, -42, nil, nil, nil, 2036, nil,
687
+ 2069, 2102, 2135, nil, nil, 2168, 178, 322, 317, 324,
688
+ 296, nil, 397, -3, 263, 354, 311, 362, nil, 4442,
689
+ 2201, 2234, 2267, 2300, 2333, 2366, 2399, 2432, 2465, 2498,
690
+ 2531, 2564, 2597, 2630, 2663, 2696, 2729, 2762, 2795, 2828,
691
+ 2861, 2894, 2927, 2960, 2993, 3026, 3059, 3092, 3125, 3158,
692
+ 3191, 3224, 3257, 3290, 3323, 3356, 3389, 3422, 160, 1045,
693
+ 381, 388, 4475, -89, nil, 4886, 347, 1218, 401, nil,
694
+ 402, 404, nil, nil, 394, -70, 4935, -75, nil, 4984,
695
+ 398, 137, 143, nil, 3455, 1252, 400, nil, 5033, 400,
696
+ 447, 1316, nil, 3488, 399, 121, 1350, nil, 404, 5082,
697
+ 3521, 126, -25, 405, 452, 398, 192, 273, 3554, 404,
698
+ nil, 3587, 3620, 3653, 3686, nil, nil, nil, nil, 456,
699
+ 127, 5131, 38, 400, 479, 4519, 4572, 483, 484, 485,
700
+ 145, 562, 460, 129, nil, 1414, nil, nil, nil, nil,
701
+ 569, 660, 283, 751, 842, 5180, 1170, 1266, 1364, 1462,
702
+ 1560, 1657, 1755, 3831, 5229, 388, 466, 472, 4507, 4560,
703
+ 4613, 4666, 4719, 4772, 4824, 4873, 4928, 516, 780, 406,
704
+ 407, 871, 408, 5247, 5296, 5345, 5394, 5443, 1121, 5492,
705
+ 413, 3719, nil, nil, nil, nil, 185, 1448, 417, nil,
706
+ 3752, nil, 3785, nil, 1512, 3818, 1546, 135, 144, nil,
707
+ nil, 218, 231, 54, 145, 233, 155, 67, 3881, 5541,
708
+ 256, 3914, 5590, 418, 3947, 1610, 5639, 419, 42, 419,
709
+ 423, 423, 1644, 5688, 145, 470, nil, 5737, 5786, 5835,
710
+ 5884, 5933, 472, 185, 188, 225, 3980, 4013, 568, 4046,
711
+ 653, nil, 571, 4079, 574, 575, 4112, 4145, 4178, nil,
712
+ 29, 385, 55, -26, 499, 517, 521, 4211, 5982, 519,
713
+ nil, 4244, nil, 6031, 573, 525, nil, 6080, nil, 6129,
714
+ nil, nil, 6178, 562, nil, 562, 563, nil, 6227, 577,
715
+ 191, nil, 1707, nil, 6276, 4277, nil, 627, 628, -20,
716
+ -9, nil, 6325, 6374, nil, 973, 3, nil, 1050, nil,
717
+ nil, 4625, 4678, 4731, nil, 642, 389, 325, nil, 648,
718
+ nil, 688, 652, 1741, nil, 6423, nil, nil, 6472, nil,
719
+ nil, nil, nil, 213, 612, 6521, nil, nil, 696, nil,
720
+ 241, 614, 623, nil, nil, nil, 370, 677, 4310, nil,
721
+ 734, 736, 741, 742, nil, 720, nil, nil, 716, 670,
722
+ 214, nil, 721, -7, 722, 4343, nil, 4376, 744, 4784,
723
+ nil, nil, nil, nil, nil, 739, nil, 111, 696, 703,
724
+ nil, 113, 6570, 4837, 66, 835, 786, 787, 753, 791,
725
+ 926, 76, nil, nil, 114, nil, 100, 792, nil ]
726
+
727
+ racc_action_default = [
728
+ -1, -259, -2, -3, -4, -8, -9, -10, -11, -12,
729
+ -13, -14, -15, -16, -17, -18, -19, -20, -21, -22,
730
+ -23, -24, -25, -26, -27, -29, -30, -31, -32, -116,
731
+ -34, -35, -36, -37, -38, -39, -40, -49, -50, -51,
732
+ -52, -53, -54, -55, -56, -57, -58, -59, -60, -63,
733
+ -64, -65, -69, -72, -75, -259, -116, -116, -119, -116,
734
+ -115, -116, -116, -116, -116, -168, -259, -177, -179, -180,
735
+ -259, -184, -116, -116, -116, -200, -201, -202, -217, -219,
736
+ -116, -116, -116, -228, -229, -116, -116, -259, -116, -116,
737
+ -257, -258, -259, -7, -116, -6, -259, -259, -188, -116,
738
+ -116, -116, -116, -116, -116, -116, -116, -116, -116, -116,
739
+ -116, -116, -116, -116, -116, -116, -116, -116, -116, -116,
740
+ -116, -116, -116, -116, -116, -116, -116, -116, -116, -116,
741
+ -116, -116, -116, -116, -116, -116, -116, -116, -83, -116,
742
+ -28, -259, -116, -26, -31, -259, -259, -116, -80, -94,
743
+ -79, -81, -61, -62, -182, -259, -70, -259, -76, -259,
744
+ -259, -183, -185, -189, -116, -116, -101, -102, -127, -35,
745
+ -37, -116, -54, -69, -259, -259, -116, -107, -120, -123,
746
+ -116, -111, -116, -109, -259, -164, -165, -166, -116, -259,
747
+ -167, -116, -116, -116, -116, -181, -186, -187, -117, -259,
748
+ -259, -218, -214, -259, -259, -259, -259, -259, -259, -259,
749
+ -237, -245, -259, -259, -255, -116, 469, -5, -183, -170,
750
+ -129, -130, -131, -132, -133, -134, -135, -136, -137, -138,
751
+ -139, -140, -141, -142, -143, -144, -145, -146, -147, -148,
752
+ -149, -150, -151, -152, -153, -154, -155, -156, -157, -158,
753
+ -159, -160, -161, -162, -163, -222, -225, -259, -116, -259,
754
+ -259, -93, -97, -96, -169, -41, -33, -116, -259, -95,
755
+ -116, -67, -116, -73, -116, -116, -116, -259, -190, -191,
756
+ -192, -29, -30, -35, -36, -37, -39, -52, -75, -259,
757
+ -259, -116, -123, -259, -116, -116, -123, -259, -259, -83,
758
+ -259, -259, -116, -124, -259, -116, -110, -259, -171, -172,
759
+ -173, -174, -259, -204, -203, -207, -116, -116, -259, -116,
760
+ -116, -246, -259, -116, -259, -259, -116, -116, -116, -234,
761
+ -259, -259, -244, -259, -105, -122, -259, -116, -259, -259,
762
+ -86, -91, -87, -92, -82, -84, -99, -259, -68, -71,
763
+ -74, -77, -78, -259, -193, -259, -259, -100, -128, -259,
764
+ -259, -103, -116, -106, -125, -116, -108, -259, -116, -259,
765
+ -208, -205, -215, -216, -220, -259, -244, -223, -259, -227,
766
+ -230, -259, -259, -259, -235, -259, -259, -243, -238, -259,
767
+ -242, -259, -116, -116, -256, -226, -88, -89, -90, -66,
768
+ -98, -194, -195, -114, -259, -126, -112, -118, -259, -206,
769
+ -259, -259, -209, -210, -221, -247, -248, -259, -116, -224,
770
+ -259, -259, -259, -259, -240, -259, -239, -253, -259, -259,
771
+ -113, -196, -207, -259, -207, -116, -249, -116, -116, -259,
772
+ -231, -232, -233, -236, -241, -259, -104, -259, -259, -211,
773
+ -212, -259, -213, -259, -250, -116, -259, -259, -207, -259,
774
+ -116, -251, -254, -197, -259, -198, -252, -259, -199 ]
775
+
776
+ racc_goto_table = [
777
+ 2, 154, 3, 95, 27, 169, 27, 96, 210, 98,
778
+ 390, 170, 148, 281, 155, 151, 183, 369, 413, 260,
779
+ 389, 415, 172, 318, 322, 1, 282, 217, 140, 356,
780
+ 284, 286, 209, 351, 166, 214, 97, 200, 335, 336,
781
+ 190, 207, 410, 202, 177, 330, 416, nil, nil, nil,
782
+ nil, 208, nil, nil, 154, nil, nil, nil, nil, nil,
783
+ nil, 436, nil, nil, nil, 390, nil, nil, nil, nil,
784
+ nil, 96, 96, 196, 197, 425, nil, nil, nil, nil,
785
+ nil, 450, nil, nil, nil, 175, nil, 184, nil, nil,
786
+ nil, nil, 160, 95, nil, nil, 145, nil, 27, 27,
787
+ 97, 97, 198, 219, nil, nil, 181, nil, nil, nil,
788
+ nil, nil, 283, nil, 97, nil, 212, 213, 285, 156,
789
+ nil, 159, nil, 168, nil, 179, 324, 325, 185, 186,
790
+ 187, 162, 299, 268, 447, 298, 451, 281, 339, 304,
791
+ 281, 280, nil, 291, nil, 201, 264, 203, 204, 205,
792
+ 282, 293, 206, 282, 284, 286, nil, 284, 286, nil,
793
+ 464, nil, 301, nil, nil, nil, nil, 220, 221, 222,
794
+ 223, 224, 225, 226, 227, 228, 229, 230, 231, 232,
795
+ 233, 234, 235, 236, 237, 238, 239, 240, 241, 242,
796
+ 243, 244, 245, 246, 247, 248, 249, 250, 251, 252,
797
+ 253, 254, 255, 256, 257, nil, 259, nil, nil, nil,
798
+ 184, 287, 300, 332, 179, 27, nil, nil, nil, nil,
799
+ nil, nil, nil, nil, 345, nil, nil, nil, nil, 181,
800
+ nil, 289, 292, nil, nil, nil, 283, 315, 296, 283,
801
+ 156, nil, 285, 292, nil, 285, 344, 303, nil, nil,
802
+ 334, 162, 388, nil, 391, 307, nil, 280, 308, 309,
803
+ 310, 311, 353, nil, 148, nil, 151, 291, nil, 355,
804
+ nil, nil, nil, nil, nil, nil, 314, nil, nil, nil,
805
+ nil, 359, 179, nil, nil, nil, nil, nil, nil, 314,
806
+ 408, nil, nil, 280, nil, nil, nil, nil, nil, nil,
807
+ nil, nil, 420, 421, 422, nil, 423, 424, nil, nil,
808
+ 426, nil, nil, nil, nil, nil, nil, nil, 345, nil,
809
+ nil, nil, 376, nil, 27, 338, nil, nil, 343, nil,
810
+ nil, nil, 95, 367, 179, 287, 143, 347, 287, 349,
811
+ 344, 159, 352, 179, nil, nil, 444, nil, 404, nil,
812
+ nil, nil, nil, nil, nil, 159, nil, nil, 289, nil,
813
+ nil, 358, 179, nil, 174, nil, 456, nil, 457, 364,
814
+ nil, 189, 459, nil, nil, nil, 95, nil, 387, 429,
815
+ nil, nil, nil, 372, 373, 467, 375, nil, nil, nil,
816
+ 378, nil, nil, 381, 382, 383, 407, nil, nil, nil,
817
+ nil, nil, nil, nil, 395, nil, 189, nil, 398, nil,
818
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
819
+ 428, nil, nil, nil, nil, nil, nil, nil, nil, 179,
820
+ nil, nil, 405, 387, nil, nil, nil, nil, nil, nil,
821
+ 454, nil, 27, nil, nil, nil, nil, nil, nil, 189,
822
+ nil, nil, nil, nil, 95, nil, nil, 461, nil, 27,
823
+ 179, 95, 466, nil, 27, nil, 95, nil, nil, nil,
824
+ nil, nil, 143, nil, nil, nil, nil, nil, 143, nil,
825
+ nil, nil, nil, 143, nil, 439, nil, nil, nil, nil,
826
+ nil, nil, nil, nil, nil, 143, nil, nil, nil, nil,
827
+ nil, nil, 452, nil, 453 ]
828
+
829
+ racc_goto_check = [
830
+ 2, 50, 3, 2, 28, 31, 28, 42, 70, 64,
831
+ 40, 33, 49, 26, 45, 49, 58, 69, 72, 52,
832
+ 76, 77, 41, 74, 74, 1, 27, 4, 25, 37,
833
+ 32, 35, 44, 48, 56, 57, 53, 59, 60, 61,
834
+ 62, 65, 71, 73, 55, 75, 78, nil, nil, nil,
835
+ nil, 41, nil, nil, 50, nil, nil, nil, nil, nil,
836
+ nil, 77, nil, nil, nil, 40, nil, nil, nil, nil,
837
+ nil, 42, 42, 64, 64, 76, nil, nil, nil, nil,
838
+ nil, 72, nil, nil, nil, 53, nil, 53, nil, nil,
839
+ nil, nil, 54, 2, nil, nil, 22, nil, 28, 28,
840
+ 53, 53, 53, 28, nil, nil, 38, nil, nil, nil,
841
+ nil, nil, 31, nil, 53, nil, 53, 53, 33, 22,
842
+ nil, 22, nil, 22, nil, 22, 70, 70, 22, 22,
843
+ 22, 66, 50, 55, 69, 45, 69, 26, 52, 58,
844
+ 26, 67, nil, 67, nil, 22, 28, 22, 22, 22,
845
+ 27, 55, 22, 27, 32, 35, nil, 32, 35, nil,
846
+ 69, nil, 55, nil, nil, nil, nil, 22, 22, 22,
847
+ 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
848
+ 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
849
+ 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
850
+ 22, 22, 22, 22, 22, nil, 22, nil, nil, nil,
851
+ 53, 38, 54, 3, 22, 28, nil, nil, nil, nil,
852
+ nil, nil, nil, nil, 50, nil, nil, nil, nil, 38,
853
+ nil, 22, 22, nil, nil, nil, 31, 54, 22, 31,
854
+ 22, nil, 33, 22, nil, 33, 49, 22, nil, nil,
855
+ 54, 66, 70, nil, 70, 22, nil, 67, 22, 22,
856
+ 22, 22, 55, nil, 49, nil, 49, 67, nil, 67,
857
+ nil, nil, nil, nil, nil, nil, 66, nil, nil, nil,
858
+ nil, 55, 22, nil, nil, nil, nil, nil, nil, 66,
859
+ 70, nil, nil, 67, nil, nil, nil, nil, nil, nil,
860
+ nil, nil, 70, 70, 70, nil, 70, 70, nil, nil,
861
+ 70, nil, nil, nil, nil, nil, nil, nil, 50, nil,
862
+ nil, nil, 3, nil, 28, 22, nil, nil, 22, nil,
863
+ nil, nil, 2, 53, 22, 38, 23, 22, 38, 22,
864
+ 49, 22, 22, 22, nil, nil, 70, nil, 55, nil,
865
+ nil, nil, nil, nil, nil, 22, nil, nil, 22, nil,
866
+ nil, 22, 22, nil, 23, nil, 70, nil, 70, 22,
867
+ nil, 23, 70, nil, nil, nil, 2, nil, 38, 55,
868
+ nil, nil, nil, 22, 22, 70, 22, nil, nil, nil,
869
+ 22, nil, nil, 22, 22, 22, 53, nil, nil, nil,
870
+ nil, nil, nil, nil, 22, nil, 23, nil, 22, nil,
871
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
872
+ 53, nil, nil, nil, nil, nil, nil, nil, nil, 22,
873
+ nil, nil, 22, 38, nil, nil, nil, nil, nil, nil,
874
+ 3, nil, 28, nil, nil, nil, nil, nil, nil, 23,
875
+ nil, nil, nil, nil, 2, nil, nil, 3, nil, 28,
876
+ 22, 2, 3, nil, 28, nil, 2, nil, nil, nil,
877
+ nil, nil, 23, nil, nil, nil, nil, nil, 23, nil,
878
+ nil, nil, nil, 23, nil, 22, nil, nil, nil, nil,
879
+ nil, nil, nil, nil, nil, 23, nil, nil, nil, nil,
880
+ nil, nil, 22, nil, 22 ]
881
+
882
+ racc_goto_pointer = [
883
+ nil, 25, 0, 2, -68, nil, nil, nil, nil, nil,
884
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
885
+ nil, nil, 67, 307, nil, 4, -151, -138, 4, nil,
886
+ nil, -52, -134, -46, nil, -133, nil, -262, 47, nil,
887
+ -321, -35, -1, nil, -54, -38, nil, nil, -241, -20,
888
+ -42, nil, -120, 28, 37, -14, -22, -54, -43, -37,
889
+ -177, -176, -24, nil, 1, -45, 76, -21, nil, -298,
890
+ -79, -328, -352, -35, -180, -165, -311, -355, -330 ]
891
+
892
+ racc_goto_default = [
893
+ nil, nil, 94, 93, 4, 5, 6, 7, 8, 9,
894
+ 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
895
+ 20, 21, 22, 23, 24, nil, 25, 26, 144, 28,
896
+ 30, 31, 32, 33, 34, 35, 36, 290, 40, 39,
897
+ 41, 42, 43, 51, 67, nil, 53, 157, 158, 150,
898
+ 138, 68, nil, 55, nil, 297, nil, nil, nil, nil,
899
+ 178, nil, 65, 66, 71, 69, 278, 163, 74, nil,
900
+ 321, nil, nil, nil, nil, nil, nil, nil, nil ]
901
+
902
+ racc_reduce_table = [
903
+ 0, 0, :racc_error,
904
+ 0, 99, :_reduce_1,
905
+ 1, 99, :_reduce_2,
906
+ 1, 99, :_reduce_3,
907
+ 1, 101, :_reduce_4,
908
+ 3, 101, :_reduce_5,
909
+ 2, 101, :_reduce_6,
910
+ 2, 101, :_reduce_7,
911
+ 1, 102, :_reduce_8,
912
+ 1, 102, :_reduce_9,
913
+ 1, 102, :_reduce_10,
914
+ 1, 102, :_reduce_11,
915
+ 1, 102, :_reduce_12,
916
+ 1, 102, :_reduce_13,
917
+ 1, 102, :_reduce_14,
918
+ 1, 102, :_reduce_15,
919
+ 1, 102, :_reduce_16,
920
+ 1, 102, :_reduce_17,
921
+ 1, 102, :_reduce_18,
922
+ 1, 102, :_reduce_19,
923
+ 1, 102, :_reduce_20,
924
+ 1, 102, :_reduce_21,
925
+ 1, 102, :_reduce_22,
926
+ 1, 102, :_reduce_23,
927
+ 1, 102, :_reduce_24,
928
+ 1, 102, :_reduce_25,
929
+ 1, 120, :_reduce_26,
930
+ 1, 120, :_reduce_27,
931
+ 2, 120, :_reduce_28,
932
+ 1, 120, :_reduce_29,
933
+ 1, 120, :_reduce_30,
934
+ 1, 120, :_reduce_31,
935
+ 1, 120, :_reduce_32,
936
+ 3, 120, :_reduce_33,
937
+ 1, 121, :_reduce_34,
938
+ 1, 121, :_reduce_35,
939
+ 1, 121, :_reduce_36,
940
+ 1, 121, :_reduce_37,
941
+ 1, 121, :_reduce_38,
942
+ 1, 121, :_reduce_39,
943
+ 1, 121, :_reduce_40,
944
+ 3, 121, :_reduce_41,
945
+ 1, 135, :_reduce_42,
946
+ 1, 135, :_reduce_43,
947
+ 1, 135, :_reduce_44,
948
+ 1, 135, :_reduce_45,
949
+ 1, 135, :_reduce_46,
950
+ 1, 135, :_reduce_47,
951
+ 1, 135, :_reduce_48,
952
+ 1, 100, :_reduce_49,
953
+ 1, 100, :_reduce_50,
954
+ 1, 132, :_reduce_51,
955
+ 1, 132, :_reduce_52,
956
+ 1, 132, :_reduce_53,
957
+ 1, 132, :_reduce_54,
958
+ 1, 132, :_reduce_55,
959
+ 1, 132, :_reduce_56,
960
+ 1, 132, :_reduce_57,
961
+ 1, 137, :_reduce_58,
962
+ 1, 136, :_reduce_59,
963
+ 1, 136, :_reduce_60,
964
+ 2, 136, :_reduce_61,
965
+ 2, 136, :_reduce_62,
966
+ 1, 138, :_reduce_63,
967
+ 1, 140, :_reduce_64,
968
+ 1, 139, :_reduce_65,
969
+ 5, 142, :_reduce_66,
970
+ 3, 141, :_reduce_67,
971
+ 4, 141, :_reduce_68,
972
+ 0, 143, :_reduce_69,
973
+ 1, 143, :_reduce_70,
974
+ 3, 143, :_reduce_71,
975
+ 1, 122, :_reduce_72,
976
+ 3, 144, :_reduce_73,
977
+ 4, 144, :_reduce_74,
978
+ 0, 145, :_reduce_75,
979
+ 1, 145, :_reduce_76,
980
+ 3, 145, :_reduce_77,
981
+ 3, 146, :_reduce_78,
982
+ 2, 129, :_reduce_79,
983
+ 2, 129, :_reduce_80,
984
+ 2, 129, :_reduce_81,
985
+ 4, 129, :_reduce_82,
986
+ 2, 130, :_reduce_83,
987
+ 4, 130, :_reduce_84,
988
+ 2, 149, :_reduce_85,
989
+ 3, 148, :_reduce_86,
990
+ 3, 148, :_reduce_87,
991
+ 4, 148, :_reduce_88,
992
+ 4, 148, :_reduce_89,
993
+ 3, 150, :_reduce_90,
994
+ 2, 150, :_reduce_91,
995
+ 2, 150, :_reduce_92,
996
+ 1, 150, :_reduce_93,
997
+ 1, 147, :_reduce_94,
998
+ 2, 147, :_reduce_95,
999
+ 2, 123, :_reduce_96,
1000
+ 2, 123, :_reduce_97,
1001
+ 5, 133, :_reduce_98,
1002
+ 4, 133, :_reduce_99,
1003
+ 4, 133, :_reduce_100,
1004
+ 2, 133, :_reduce_101,
1005
+ 2, 133, :_reduce_102,
1006
+ 4, 133, :_reduce_103,
1007
+ 5, 155, :_reduce_104,
1008
+ 2, 155, :_reduce_105,
1009
+ 4, 115, :_reduce_106,
1010
+ 2, 115, :_reduce_107,
1011
+ 4, 116, :_reduce_108,
1012
+ 2, 116, :_reduce_109,
1013
+ 2, 156, :_reduce_110,
1014
+ 1, 156, :_reduce_111,
1015
+ 4, 156, :_reduce_112,
1016
+ 6, 103, :_reduce_113,
1017
+ 5, 103, :_reduce_114,
1018
+ 1, 151, :_reduce_115,
1019
+ 0, 151, :_reduce_116,
1020
+ 1, 157, :_reduce_117,
1021
+ 4, 157, :_reduce_118,
1022
+ 0, 153, :_reduce_119,
1023
+ 1, 153, :_reduce_120,
1024
+ 0, 159, :_reduce_121,
1025
+ 1, 159, :_reduce_122,
1026
+ 1, 158, :_reduce_123,
1027
+ 2, 158, :_reduce_124,
1028
+ 3, 158, :_reduce_125,
1029
+ 4, 158, :_reduce_126,
1030
+ 1, 154, :_reduce_127,
1031
+ 3, 154, :_reduce_128,
1032
+ 3, 124, :_reduce_129,
1033
+ 3, 124, :_reduce_130,
1034
+ 3, 124, :_reduce_131,
1035
+ 3, 124, :_reduce_132,
1036
+ 3, 124, :_reduce_133,
1037
+ 3, 124, :_reduce_134,
1038
+ 3, 124, :_reduce_135,
1039
+ 3, 124, :_reduce_136,
1040
+ 3, 124, :_reduce_137,
1041
+ 3, 124, :_reduce_138,
1042
+ 3, 124, :_reduce_139,
1043
+ 3, 124, :_reduce_140,
1044
+ 3, 124, :_reduce_141,
1045
+ 3, 124, :_reduce_142,
1046
+ 3, 124, :_reduce_143,
1047
+ 3, 124, :_reduce_144,
1048
+ 3, 124, :_reduce_145,
1049
+ 3, 124, :_reduce_146,
1050
+ 3, 124, :_reduce_147,
1051
+ 3, 124, :_reduce_148,
1052
+ 3, 124, :_reduce_149,
1053
+ 3, 124, :_reduce_150,
1054
+ 3, 124, :_reduce_151,
1055
+ 3, 124, :_reduce_152,
1056
+ 3, 124, :_reduce_153,
1057
+ 3, 124, :_reduce_154,
1058
+ 3, 124, :_reduce_155,
1059
+ 3, 124, :_reduce_156,
1060
+ 3, 124, :_reduce_157,
1061
+ 3, 124, :_reduce_158,
1062
+ 3, 124, :_reduce_159,
1063
+ 3, 124, :_reduce_160,
1064
+ 3, 124, :_reduce_161,
1065
+ 3, 124, :_reduce_162,
1066
+ 3, 124, :_reduce_163,
1067
+ 2, 128, :_reduce_164,
1068
+ 2, 128, :_reduce_165,
1069
+ 2, 128, :_reduce_166,
1070
+ 2, 126, :_reduce_167,
1071
+ 1, 126, :_reduce_168,
1072
+ 3, 117, :_reduce_169,
1073
+ 3, 117, :_reduce_170,
1074
+ 3, 160, :_reduce_171,
1075
+ 3, 160, :_reduce_172,
1076
+ 3, 160, :_reduce_173,
1077
+ 3, 160, :_reduce_174,
1078
+ 1, 161, :_reduce_175,
1079
+ 1, 161, :_reduce_176,
1080
+ 1, 161, :_reduce_177,
1081
+ 1, 161, :_reduce_178,
1082
+ 1, 161, :_reduce_179,
1083
+ 1, 162, :_reduce_180,
1084
+ 2, 162, :_reduce_181,
1085
+ 2, 162, :_reduce_182,
1086
+ 2, 163, :_reduce_183,
1087
+ 1, 131, :_reduce_184,
1088
+ 2, 131, :_reduce_185,
1089
+ 2, 106, :_reduce_186,
1090
+ 2, 106, :_reduce_187,
1091
+ 2, 106, :_reduce_188,
1092
+ 1, 164, :_reduce_189,
1093
+ 2, 164, :_reduce_190,
1094
+ 2, 164, :_reduce_191,
1095
+ 2, 164, :_reduce_192,
1096
+ 3, 165, :_reduce_193,
1097
+ 4, 165, :_reduce_194,
1098
+ 4, 165, :_reduce_195,
1099
+ 6, 104, :_reduce_196,
1100
+ 9, 104, :_reduce_197,
1101
+ 9, 104, :_reduce_198,
1102
+ 11, 104, :_reduce_199,
1103
+ 1, 166, :_reduce_200,
1104
+ 1, 166, :_reduce_201,
1105
+ 1, 166, :_reduce_202,
1106
+ 1, 152, :_reduce_203,
1107
+ 1, 152, :_reduce_204,
1108
+ 1, 167, :_reduce_205,
1109
+ 2, 167, :_reduce_206,
1110
+ 0, 167, :_reduce_207,
1111
+ 0, 169, :_reduce_208,
1112
+ 1, 169, :_reduce_209,
1113
+ 1, 169, :_reduce_210,
1114
+ 3, 169, :_reduce_211,
1115
+ 3, 169, :_reduce_212,
1116
+ 3, 170, :_reduce_213,
1117
+ 2, 105, :_reduce_214,
1118
+ 4, 105, :_reduce_215,
1119
+ 4, 105, :_reduce_216,
1120
+ 0, 171, :_reduce_217,
1121
+ 1, 171, :_reduce_218,
1122
+ 1, 114, :_reduce_219,
1123
+ 4, 118, :_reduce_220,
1124
+ 5, 118, :_reduce_221,
1125
+ 3, 118, :_reduce_222,
1126
+ 4, 119, :_reduce_223,
1127
+ 5, 119, :_reduce_224,
1128
+ 3, 119, :_reduce_225,
1129
+ 5, 125, :_reduce_226,
1130
+ 4, 109, :_reduce_227,
1131
+ 1, 113, :_reduce_228,
1132
+ 1, 113, :_reduce_229,
1133
+ 4, 110, :_reduce_230,
1134
+ 6, 108, :_reduce_231,
1135
+ 6, 108, :_reduce_232,
1136
+ 6, 108, :_reduce_233,
1137
+ 3, 111, :_reduce_234,
1138
+ 4, 111, :_reduce_235,
1139
+ 6, 111, :_reduce_236,
1140
+ 0, 173, :_reduce_237,
1141
+ 2, 173, :_reduce_238,
1142
+ 3, 173, :_reduce_239,
1143
+ 3, 173, :_reduce_240,
1144
+ 4, 173, :_reduce_241,
1145
+ 1, 174, :_reduce_242,
1146
+ 1, 174, :_reduce_243,
1147
+ 2, 168, :_reduce_244,
1148
+ 1, 168, :_reduce_245,
1149
+ 1, 172, :_reduce_246,
1150
+ 3, 172, :_reduce_247,
1151
+ 3, 172, :_reduce_248,
1152
+ 4, 172, :_reduce_249,
1153
+ 3, 175, :_reduce_250,
1154
+ 4, 176, :_reduce_251,
1155
+ 5, 176, :_reduce_252,
1156
+ 5, 112, :_reduce_253,
1157
+ 8, 112, :_reduce_254,
1158
+ 2, 134, :_reduce_255,
1159
+ 4, 127, :_reduce_256,
1160
+ 1, 127, :_reduce_257,
1161
+ 1, 107, :_reduce_258 ]
1162
+
1163
+ racc_reduce_n = 259
1164
+
1165
+ racc_shift_n = 469
1166
+
1167
+ racc_token_table = {
1168
+ false => 0,
1169
+ :error => 1,
1170
+ :IF => 2,
1171
+ :ELSE => 3,
1172
+ :ELSEIF => 4,
1173
+ :THEN => 5,
1174
+ :UNLESS => 6,
1175
+ :END => 7,
1176
+ :WHILE => 8,
1177
+ :UNTIL => 9,
1178
+ :BREAK => 10,
1179
+ :CONTINUE => 11,
1180
+ :TRY => 12,
1181
+ :CATCH => 13,
1182
+ :FINALLY => 14,
1183
+ :FOR => 15,
1184
+ :IN => 16,
1185
+ :DEF => 17,
1186
+ :DEF_BANG => 18,
1187
+ :SPLAT_PARAM => 19,
1188
+ :SPLAT_ARG => 20,
1189
+ :CALL => 21,
1190
+ :BUILTIN_COMMAND => 22,
1191
+ :CLASS => 23,
1192
+ :NEW => 24,
1193
+ :DEFM => 25,
1194
+ :DEFM_BANG => 26,
1195
+ :SUPER => 27,
1196
+ :RIML_FILE_COMMAND => 28,
1197
+ :RIML_CLASS_COMMAND => 29,
1198
+ :RETURN => 30,
1199
+ :NEWLINE => 31,
1200
+ :NUMBER => 32,
1201
+ :STRING_D => 33,
1202
+ :STRING_S => 34,
1203
+ :EX_LITERAL => 35,
1204
+ :REGEXP => 36,
1205
+ :TRUE => 37,
1206
+ :FALSE => 38,
1207
+ :LET => 39,
1208
+ :UNLET => 40,
1209
+ :UNLET_BANG => 41,
1210
+ :IDENTIFIER => 42,
1211
+ :DICT_VAL => 43,
1212
+ :SCOPE_MODIFIER => 44,
1213
+ :SCOPE_MODIFIER_LITERAL => 45,
1214
+ :SPECIAL_VAR_PREFIX => 46,
1215
+ :FINISH => 47,
1216
+ "!" => 48,
1217
+ "*" => 49,
1218
+ "/" => 50,
1219
+ "%" => 51,
1220
+ "+" => 52,
1221
+ "-" => 53,
1222
+ "." => 54,
1223
+ ">" => 55,
1224
+ ">#" => 56,
1225
+ ">?" => 57,
1226
+ "<" => 58,
1227
+ "<#" => 59,
1228
+ "<?" => 60,
1229
+ ">=" => 61,
1230
+ ">=#" => 62,
1231
+ ">=?" => 63,
1232
+ "<=" => 64,
1233
+ "<=#" => 65,
1234
+ "<=?" => 66,
1235
+ "==" => 67,
1236
+ "==?" => 68,
1237
+ "==#" => 69,
1238
+ "=~" => 70,
1239
+ "=~?" => 71,
1240
+ "=~#" => 72,
1241
+ "!~" => 73,
1242
+ "!~?" => 74,
1243
+ "!~#" => 75,
1244
+ "!=" => 76,
1245
+ "!=?" => 77,
1246
+ "!=#" => 78,
1247
+ :IS => 79,
1248
+ :ISNOT => 80,
1249
+ "&&" => 81,
1250
+ "||" => 82,
1251
+ "?" => 83,
1252
+ "=" => 84,
1253
+ "+=" => 85,
1254
+ "-=" => 86,
1255
+ ".=" => 87,
1256
+ "," => 88,
1257
+ "(" => 89,
1258
+ ")" => 90,
1259
+ ";" => 91,
1260
+ "[" => 92,
1261
+ "]" => 93,
1262
+ "{" => 94,
1263
+ "}" => 95,
1264
+ ":" => 96,
1265
+ "===" => 97 }
1266
+
1267
+ racc_nt_base = 98
1268
+
1269
+ racc_use_result_var = true
1270
+
1271
+ Racc_arg = [
1272
+ racc_action_table,
1273
+ racc_action_check,
1274
+ racc_action_default,
1275
+ racc_action_pointer,
1276
+ racc_goto_table,
1277
+ racc_goto_check,
1278
+ racc_goto_default,
1279
+ racc_goto_pointer,
1280
+ racc_nt_base,
1281
+ racc_reduce_table,
1282
+ racc_token_table,
1283
+ racc_shift_n,
1284
+ racc_reduce_n,
1285
+ racc_use_result_var ]
1286
+
1287
+ Racc_token_to_s_table = [
1288
+ "$end",
1289
+ "error",
1290
+ "IF",
1291
+ "ELSE",
1292
+ "ELSEIF",
1293
+ "THEN",
1294
+ "UNLESS",
1295
+ "END",
1296
+ "WHILE",
1297
+ "UNTIL",
1298
+ "BREAK",
1299
+ "CONTINUE",
1300
+ "TRY",
1301
+ "CATCH",
1302
+ "FINALLY",
1303
+ "FOR",
1304
+ "IN",
1305
+ "DEF",
1306
+ "DEF_BANG",
1307
+ "SPLAT_PARAM",
1308
+ "SPLAT_ARG",
1309
+ "CALL",
1310
+ "BUILTIN_COMMAND",
1311
+ "CLASS",
1312
+ "NEW",
1313
+ "DEFM",
1314
+ "DEFM_BANG",
1315
+ "SUPER",
1316
+ "RIML_FILE_COMMAND",
1317
+ "RIML_CLASS_COMMAND",
1318
+ "RETURN",
1319
+ "NEWLINE",
1320
+ "NUMBER",
1321
+ "STRING_D",
1322
+ "STRING_S",
1323
+ "EX_LITERAL",
1324
+ "REGEXP",
1325
+ "TRUE",
1326
+ "FALSE",
1327
+ "LET",
1328
+ "UNLET",
1329
+ "UNLET_BANG",
1330
+ "IDENTIFIER",
1331
+ "DICT_VAL",
1332
+ "SCOPE_MODIFIER",
1333
+ "SCOPE_MODIFIER_LITERAL",
1334
+ "SPECIAL_VAR_PREFIX",
1335
+ "FINISH",
1336
+ "\"!\"",
1337
+ "\"*\"",
1338
+ "\"/\"",
1339
+ "\"%\"",
1340
+ "\"+\"",
1341
+ "\"-\"",
1342
+ "\".\"",
1343
+ "\">\"",
1344
+ "\">#\"",
1345
+ "\">?\"",
1346
+ "\"<\"",
1347
+ "\"<#\"",
1348
+ "\"<?\"",
1349
+ "\">=\"",
1350
+ "\">=#\"",
1351
+ "\">=?\"",
1352
+ "\"<=\"",
1353
+ "\"<=#\"",
1354
+ "\"<=?\"",
1355
+ "\"==\"",
1356
+ "\"==?\"",
1357
+ "\"==#\"",
1358
+ "\"=~\"",
1359
+ "\"=~?\"",
1360
+ "\"=~#\"",
1361
+ "\"!~\"",
1362
+ "\"!~?\"",
1363
+ "\"!~#\"",
1364
+ "\"!=\"",
1365
+ "\"!=?\"",
1366
+ "\"!=#\"",
1367
+ "IS",
1368
+ "ISNOT",
1369
+ "\"&&\"",
1370
+ "\"||\"",
1371
+ "\"?\"",
1372
+ "\"=\"",
1373
+ "\"+=\"",
1374
+ "\"-=\"",
1375
+ "\".=\"",
1376
+ "\",\"",
1377
+ "\"(\"",
1378
+ "\")\"",
1379
+ "\";\"",
1380
+ "\"[\"",
1381
+ "\"]\"",
1382
+ "\"{\"",
1383
+ "\"}\"",
1384
+ "\":\"",
1385
+ "\"===\"",
1386
+ "$start",
1387
+ "Root",
1388
+ "Terminator",
1389
+ "Statements",
1390
+ "Statement",
1391
+ "ExplicitCall",
1392
+ "Def",
1393
+ "Return",
1394
+ "UnletVariable",
1395
+ "ExLiteral",
1396
+ "For",
1397
+ "While",
1398
+ "Until",
1399
+ "Try",
1400
+ "ClassDefinition",
1401
+ "LoopKeyword",
1402
+ "EndScript",
1403
+ "RimlFileCommand",
1404
+ "RimlClassCommand",
1405
+ "MultiAssign",
1406
+ "If",
1407
+ "Unless",
1408
+ "Expression",
1409
+ "ExpressionWithoutDictLiteral",
1410
+ "Dictionary",
1411
+ "DictGetWithDotLiteral",
1412
+ "BinaryOperator",
1413
+ "Ternary",
1414
+ "Assign",
1415
+ "Super",
1416
+ "UnaryOperator",
1417
+ "DictGet",
1418
+ "ListOrDictGet",
1419
+ "AllVariableRetrieval",
1420
+ "LiteralWithoutDictLiteral",
1421
+ "Call",
1422
+ "ObjectInstantiation",
1423
+ "PossibleStringValue",
1424
+ "String",
1425
+ "Number",
1426
+ "Regexp",
1427
+ "List",
1428
+ "ScopeModifierLiteral",
1429
+ "ListLiteral",
1430
+ "ListUnpack",
1431
+ "ListItems",
1432
+ "DictionaryLiteral",
1433
+ "DictItems",
1434
+ "DictItem",
1435
+ "DictGetWithDot",
1436
+ "ListOrDictGetWithBrackets",
1437
+ "ListOrDictGetAssign",
1438
+ "SubList",
1439
+ "Scope",
1440
+ "DefCallIdentifier",
1441
+ "ArgList",
1442
+ "ArgListWithoutNothing",
1443
+ "ObjectInstantiationCall",
1444
+ "ClassArgList",
1445
+ "SIDAndScope",
1446
+ "ArgListWithoutNothingWithSplat",
1447
+ "ArgListWithSplat",
1448
+ "AssignExpression",
1449
+ "AssignLHS",
1450
+ "VariableRetrieval",
1451
+ "SimpleVariableRetrieval",
1452
+ "CurlyBraceName",
1453
+ "CurlyBraceVarPart",
1454
+ "FunctionType",
1455
+ "DefKeywords",
1456
+ "Block",
1457
+ "ParamList",
1458
+ "DefaultParam",
1459
+ "Returnable",
1460
+ "IfBlock",
1461
+ "Catch",
1462
+ "Catchable",
1463
+ "ElseBlock",
1464
+ "ElseifBlock" ]
1465
+
1466
+ Racc_debug_parser = false
1467
+
1468
+ ##### State transition tables end #####
1469
+
1470
+ # reduce 0 omitted
1471
+
1472
+ module_eval(<<'.,.,', 'riml.y', 61)
1473
+ def _reduce_1(val, _values, result)
1474
+ result = make_node(val) { |_| Riml::Nodes.new([]) }
1475
+ result
1476
+ end
1477
+ .,.,
1478
+
1479
+ module_eval(<<'.,.,', 'riml.y', 62)
1480
+ def _reduce_2(val, _values, result)
1481
+ result = make_node(val) { |_| Riml::Nodes.new([]) }
1482
+ result
1483
+ end
1484
+ .,.,
1485
+
1486
+ module_eval(<<'.,.,', 'riml.y', 63)
1487
+ def _reduce_3(val, _values, result)
1488
+ result = val[0]
1489
+ result
1490
+ end
1491
+ .,.,
1492
+
1493
+ module_eval(<<'.,.,', 'riml.y', 68)
1494
+ def _reduce_4(val, _values, result)
1495
+ result = make_node(val) { |v| Riml::Nodes.new([ v[0] ]) }
1496
+ result
1497
+ end
1498
+ .,.,
1499
+
1500
+ module_eval(<<'.,.,', 'riml.y', 69)
1501
+ def _reduce_5(val, _values, result)
1502
+ result = val[0] << val[2]
1503
+ result
1504
+ end
1505
+ .,.,
1506
+
1507
+ module_eval(<<'.,.,', 'riml.y', 70)
1508
+ def _reduce_6(val, _values, result)
1509
+ result = val[0]
1510
+ result
1511
+ end
1512
+ .,.,
1513
+
1514
+ module_eval(<<'.,.,', 'riml.y', 71)
1515
+ def _reduce_7(val, _values, result)
1516
+ result = make_node(val) { |v| Riml::Nodes.new(v[1]) }
1517
+ result
1518
+ end
1519
+ .,.,
1520
+
1521
+ module_eval(<<'.,.,', 'riml.y', 76)
1522
+ def _reduce_8(val, _values, result)
1523
+ result = val[0]
1524
+ result
1525
+ end
1526
+ .,.,
1527
+
1528
+ module_eval(<<'.,.,', 'riml.y', 77)
1529
+ def _reduce_9(val, _values, result)
1530
+ result = val[0]
1531
+ result
1532
+ end
1533
+ .,.,
1534
+
1535
+ module_eval(<<'.,.,', 'riml.y', 78)
1536
+ def _reduce_10(val, _values, result)
1537
+ result = val[0]
1538
+ result
1539
+ end
1540
+ .,.,
1541
+
1542
+ module_eval(<<'.,.,', 'riml.y', 79)
1543
+ def _reduce_11(val, _values, result)
1544
+ result = val[0]
1545
+ result
1546
+ end
1547
+ .,.,
1548
+
1549
+ module_eval(<<'.,.,', 'riml.y', 80)
1550
+ def _reduce_12(val, _values, result)
1551
+ result = val[0]
1552
+ result
1553
+ end
1554
+ .,.,
1555
+
1556
+ module_eval(<<'.,.,', 'riml.y', 81)
1557
+ def _reduce_13(val, _values, result)
1558
+ result = val[0]
1559
+ result
1560
+ end
1561
+ .,.,
1562
+
1563
+ module_eval(<<'.,.,', 'riml.y', 82)
1564
+ def _reduce_14(val, _values, result)
1565
+ result = val[0]
1566
+ result
1567
+ end
1568
+ .,.,
1569
+
1570
+ module_eval(<<'.,.,', 'riml.y', 83)
1571
+ def _reduce_15(val, _values, result)
1572
+ result = val[0]
1573
+ result
1574
+ end
1575
+ .,.,
1576
+
1577
+ module_eval(<<'.,.,', 'riml.y', 84)
1578
+ def _reduce_16(val, _values, result)
1579
+ result = val[0]
1580
+ result
1581
+ end
1582
+ .,.,
1583
+
1584
+ module_eval(<<'.,.,', 'riml.y', 85)
1585
+ def _reduce_17(val, _values, result)
1586
+ result = val[0]
1587
+ result
1588
+ end
1589
+ .,.,
1590
+
1591
+ module_eval(<<'.,.,', 'riml.y', 86)
1592
+ def _reduce_18(val, _values, result)
1593
+ result = val[0]
1594
+ result
1595
+ end
1596
+ .,.,
1597
+
1598
+ module_eval(<<'.,.,', 'riml.y', 87)
1599
+ def _reduce_19(val, _values, result)
1600
+ result = val[0]
1601
+ result
1602
+ end
1603
+ .,.,
1604
+
1605
+ module_eval(<<'.,.,', 'riml.y', 88)
1606
+ def _reduce_20(val, _values, result)
1607
+ result = val[0]
1608
+ result
1609
+ end
1610
+ .,.,
1611
+
1612
+ module_eval(<<'.,.,', 'riml.y', 89)
1613
+ def _reduce_21(val, _values, result)
1614
+ result = val[0]
1615
+ result
1616
+ end
1617
+ .,.,
1618
+
1619
+ module_eval(<<'.,.,', 'riml.y', 90)
1620
+ def _reduce_22(val, _values, result)
1621
+ result = val[0]
1622
+ result
1623
+ end
1624
+ .,.,
1625
+
1626
+ module_eval(<<'.,.,', 'riml.y', 91)
1627
+ def _reduce_23(val, _values, result)
1628
+ result = val[0]
1629
+ result
1630
+ end
1631
+ .,.,
1632
+
1633
+ module_eval(<<'.,.,', 'riml.y', 92)
1634
+ def _reduce_24(val, _values, result)
1635
+ result = val[0]
1636
+ result
1637
+ end
1638
+ .,.,
1639
+
1640
+ module_eval(<<'.,.,', 'riml.y', 93)
1641
+ def _reduce_25(val, _values, result)
1642
+ result = val[0]
1643
+ result
1644
+ end
1645
+ .,.,
1646
+
1647
+ module_eval(<<'.,.,', 'riml.y', 97)
1648
+ def _reduce_26(val, _values, result)
1649
+ result = val[0]
1650
+ result
1651
+ end
1652
+ .,.,
1653
+
1654
+ module_eval(<<'.,.,', 'riml.y', 98)
1655
+ def _reduce_27(val, _values, result)
1656
+ result = val[0]
1657
+ result
1658
+ end
1659
+ .,.,
1660
+
1661
+ module_eval(<<'.,.,', 'riml.y', 99)
1662
+ def _reduce_28(val, _values, result)
1663
+ result = make_node(val) { |v| Riml::DictGetDotNode.new(v[0], v[1]) }
1664
+ result
1665
+ end
1666
+ .,.,
1667
+
1668
+ module_eval(<<'.,.,', 'riml.y', 100)
1669
+ def _reduce_29(val, _values, result)
1670
+ result = val[0]
1671
+ result
1672
+ end
1673
+ .,.,
1674
+
1675
+ module_eval(<<'.,.,', 'riml.y', 101)
1676
+ def _reduce_30(val, _values, result)
1677
+ result = val[0]
1678
+ result
1679
+ end
1680
+ .,.,
1681
+
1682
+ module_eval(<<'.,.,', 'riml.y', 102)
1683
+ def _reduce_31(val, _values, result)
1684
+ result = val[0]
1685
+ result
1686
+ end
1687
+ .,.,
1688
+
1689
+ module_eval(<<'.,.,', 'riml.y', 103)
1690
+ def _reduce_32(val, _values, result)
1691
+ result = val[0]
1692
+ result
1693
+ end
1694
+ .,.,
1695
+
1696
+ module_eval(<<'.,.,', 'riml.y', 104)
1697
+ def _reduce_33(val, _values, result)
1698
+ result = make_node(val) { |v| Riml::WrapInParensNode.new(v[1]) }
1699
+ result
1700
+ end
1701
+ .,.,
1702
+
1703
+ module_eval(<<'.,.,', 'riml.y', 108)
1704
+ def _reduce_34(val, _values, result)
1705
+ result = val[0]
1706
+ result
1707
+ end
1708
+ .,.,
1709
+
1710
+ module_eval(<<'.,.,', 'riml.y', 109)
1711
+ def _reduce_35(val, _values, result)
1712
+ result = val[0]
1713
+ result
1714
+ end
1715
+ .,.,
1716
+
1717
+ module_eval(<<'.,.,', 'riml.y', 110)
1718
+ def _reduce_36(val, _values, result)
1719
+ result = val[0]
1720
+ result
1721
+ end
1722
+ .,.,
1723
+
1724
+ module_eval(<<'.,.,', 'riml.y', 111)
1725
+ def _reduce_37(val, _values, result)
1726
+ result = val[0]
1727
+ result
1728
+ end
1729
+ .,.,
1730
+
1731
+ module_eval(<<'.,.,', 'riml.y', 112)
1732
+ def _reduce_38(val, _values, result)
1733
+ result = val[0]
1734
+ result
1735
+ end
1736
+ .,.,
1737
+
1738
+ module_eval(<<'.,.,', 'riml.y', 113)
1739
+ def _reduce_39(val, _values, result)
1740
+ result = val[0]
1741
+ result
1742
+ end
1743
+ .,.,
1744
+
1745
+ module_eval(<<'.,.,', 'riml.y', 114)
1746
+ def _reduce_40(val, _values, result)
1747
+ result = val[0]
1748
+ result
1749
+ end
1750
+ .,.,
1751
+
1752
+ module_eval(<<'.,.,', 'riml.y', 115)
1753
+ def _reduce_41(val, _values, result)
1754
+ result = make_node(val) { |v| Riml::WrapInParensNode.new(v[1]) }
1755
+ result
1756
+ end
1757
+ .,.,
1758
+
1759
+ module_eval(<<'.,.,', 'riml.y', 120)
1760
+ def _reduce_42(val, _values, result)
1761
+ result = val[0]
1762
+ result
1763
+ end
1764
+ .,.,
1765
+
1766
+ module_eval(<<'.,.,', 'riml.y', 121)
1767
+ def _reduce_43(val, _values, result)
1768
+ result = val[0]
1769
+ result
1770
+ end
1771
+ .,.,
1772
+
1773
+ module_eval(<<'.,.,', 'riml.y', 122)
1774
+ def _reduce_44(val, _values, result)
1775
+ result = val[0]
1776
+ result
1777
+ end
1778
+ .,.,
1779
+
1780
+ module_eval(<<'.,.,', 'riml.y', 123)
1781
+ def _reduce_45(val, _values, result)
1782
+ result = val[0]
1783
+ result
1784
+ end
1785
+ .,.,
1786
+
1787
+ module_eval(<<'.,.,', 'riml.y', 124)
1788
+ def _reduce_46(val, _values, result)
1789
+ result = val[0]
1790
+ result
1791
+ end
1792
+ .,.,
1793
+
1794
+ module_eval(<<'.,.,', 'riml.y', 125)
1795
+ def _reduce_47(val, _values, result)
1796
+ result = val[0]
1797
+ result
1798
+ end
1799
+ .,.,
1800
+
1801
+ module_eval(<<'.,.,', 'riml.y', 126)
1802
+ def _reduce_48(val, _values, result)
1803
+ result = val[0]
1804
+ result
1805
+ end
1806
+ .,.,
1807
+
1808
+ module_eval(<<'.,.,', 'riml.y', 130)
1809
+ def _reduce_49(val, _values, result)
1810
+ result = nil
1811
+ result
1812
+ end
1813
+ .,.,
1814
+
1815
+ module_eval(<<'.,.,', 'riml.y', 131)
1816
+ def _reduce_50(val, _values, result)
1817
+ result = nil
1818
+ result
1819
+ end
1820
+ .,.,
1821
+
1822
+ module_eval(<<'.,.,', 'riml.y', 135)
1823
+ def _reduce_51(val, _values, result)
1824
+ result = val[0]
1825
+ result
1826
+ end
1827
+ .,.,
1828
+
1829
+ module_eval(<<'.,.,', 'riml.y', 136)
1830
+ def _reduce_52(val, _values, result)
1831
+ result = val[0]
1832
+ result
1833
+ end
1834
+ .,.,
1835
+
1836
+ module_eval(<<'.,.,', 'riml.y', 137)
1837
+ def _reduce_53(val, _values, result)
1838
+ result = val[0]
1839
+ result
1840
+ end
1841
+ .,.,
1842
+
1843
+ module_eval(<<'.,.,', 'riml.y', 138)
1844
+ def _reduce_54(val, _values, result)
1845
+ result = val[0]
1846
+ result
1847
+ end
1848
+ .,.,
1849
+
1850
+ module_eval(<<'.,.,', 'riml.y', 139)
1851
+ def _reduce_55(val, _values, result)
1852
+ result = val[0]
1853
+ result
1854
+ end
1855
+ .,.,
1856
+
1857
+ module_eval(<<'.,.,', 'riml.y', 140)
1858
+ def _reduce_56(val, _values, result)
1859
+ result = make_node(val) { |_| Riml::TrueNode.new }
1860
+ result
1861
+ end
1862
+ .,.,
1863
+
1864
+ module_eval(<<'.,.,', 'riml.y', 141)
1865
+ def _reduce_57(val, _values, result)
1866
+ result = make_node(val) { |_| Riml::FalseNode.new }
1867
+ result
1868
+ end
1869
+ .,.,
1870
+
1871
+ module_eval(<<'.,.,', 'riml.y', 145)
1872
+ def _reduce_58(val, _values, result)
1873
+ result = make_node(val) { |v| Riml::NumberNode.new(v[0]) }
1874
+ result
1875
+ end
1876
+ .,.,
1877
+
1878
+ module_eval(<<'.,.,', 'riml.y', 149)
1879
+ def _reduce_59(val, _values, result)
1880
+ result = make_node(val) { |v| Riml::StringNode.new(v[0], :s) }
1881
+ result
1882
+ end
1883
+ .,.,
1884
+
1885
+ module_eval(<<'.,.,', 'riml.y', 150)
1886
+ def _reduce_60(val, _values, result)
1887
+ result = make_node(val) { |v| Riml::StringNode.new(v[0], :d) }
1888
+ result
1889
+ end
1890
+ .,.,
1891
+
1892
+ module_eval(<<'.,.,', 'riml.y', 151)
1893
+ def _reduce_61(val, _values, result)
1894
+ result = make_node(val) { |v| Riml::StringLiteralConcatNode.new(v[0], Riml::StringNode.new(v[1], :s)) }
1895
+ result
1896
+ end
1897
+ .,.,
1898
+
1899
+ module_eval(<<'.,.,', 'riml.y', 152)
1900
+ def _reduce_62(val, _values, result)
1901
+ result = make_node(val) { |v| Riml::StringLiteralConcatNode.new(v[0], Riml::StringNode.new(v[1], :d)) }
1902
+ result
1903
+ end
1904
+ .,.,
1905
+
1906
+ module_eval(<<'.,.,', 'riml.y', 156)
1907
+ def _reduce_63(val, _values, result)
1908
+ result = make_node(val) { |v| Riml::RegexpNode.new(v[0]) }
1909
+ result
1910
+ end
1911
+ .,.,
1912
+
1913
+ module_eval(<<'.,.,', 'riml.y', 160)
1914
+ def _reduce_64(val, _values, result)
1915
+ result = make_node(val) { |v| Riml::ScopeModifierLiteralNode.new(v[0]) }
1916
+ result
1917
+ end
1918
+ .,.,
1919
+
1920
+ module_eval(<<'.,.,', 'riml.y', 164)
1921
+ def _reduce_65(val, _values, result)
1922
+ result = make_node(val) { |v| Riml::ListNode.new(v[0]) }
1923
+ result
1924
+ end
1925
+ .,.,
1926
+
1927
+ module_eval(<<'.,.,', 'riml.y', 168)
1928
+ def _reduce_66(val, _values, result)
1929
+ result = make_node(val) { |v| Riml::ListUnpackNode.new(v[1] << v[3]) }
1930
+ result
1931
+ end
1932
+ .,.,
1933
+
1934
+ module_eval(<<'.,.,', 'riml.y', 172)
1935
+ def _reduce_67(val, _values, result)
1936
+ result = val[1]
1937
+ result
1938
+ end
1939
+ .,.,
1940
+
1941
+ module_eval(<<'.,.,', 'riml.y', 173)
1942
+ def _reduce_68(val, _values, result)
1943
+ result = val[1]
1944
+ result
1945
+ end
1946
+ .,.,
1947
+
1948
+ module_eval(<<'.,.,', 'riml.y', 177)
1949
+ def _reduce_69(val, _values, result)
1950
+ result = []
1951
+ result
1952
+ end
1953
+ .,.,
1954
+
1955
+ module_eval(<<'.,.,', 'riml.y', 178)
1956
+ def _reduce_70(val, _values, result)
1957
+ result = [val[0]]
1958
+ result
1959
+ end
1960
+ .,.,
1961
+
1962
+ module_eval(<<'.,.,', 'riml.y', 179)
1963
+ def _reduce_71(val, _values, result)
1964
+ result = val[0] << val[2]
1965
+ result
1966
+ end
1967
+ .,.,
1968
+
1969
+ module_eval(<<'.,.,', 'riml.y', 183)
1970
+ def _reduce_72(val, _values, result)
1971
+ result = make_node(val) { |v| Riml::DictionaryNode.new(v[0]) }
1972
+ result
1973
+ end
1974
+ .,.,
1975
+
1976
+ module_eval(<<'.,.,', 'riml.y', 190)
1977
+ def _reduce_73(val, _values, result)
1978
+ result = val[1]
1979
+ result
1980
+ end
1981
+ .,.,
1982
+
1983
+ module_eval(<<'.,.,', 'riml.y', 191)
1984
+ def _reduce_74(val, _values, result)
1985
+ result = val[1]
1986
+ result
1987
+ end
1988
+ .,.,
1989
+
1990
+ module_eval(<<'.,.,', 'riml.y', 196)
1991
+ def _reduce_75(val, _values, result)
1992
+ result = []
1993
+ result
1994
+ end
1995
+ .,.,
1996
+
1997
+ module_eval(<<'.,.,', 'riml.y', 197)
1998
+ def _reduce_76(val, _values, result)
1999
+ result = val
2000
+ result
2001
+ end
2002
+ .,.,
2003
+
2004
+ module_eval(<<'.,.,', 'riml.y', 198)
2005
+ def _reduce_77(val, _values, result)
2006
+ result = val[0] << val[2]
2007
+ result
2008
+ end
2009
+ .,.,
2010
+
2011
+ module_eval(<<'.,.,', 'riml.y', 203)
2012
+ def _reduce_78(val, _values, result)
2013
+ result = [val[0], val[2]]
2014
+ result
2015
+ end
2016
+ .,.,
2017
+
2018
+ module_eval(<<'.,.,', 'riml.y', 207)
2019
+ def _reduce_79(val, _values, result)
2020
+ result = make_node(val) { |v| Riml::DictGetDotNode.new(v[0], v[1]) }
2021
+ result
2022
+ end
2023
+ .,.,
2024
+
2025
+ module_eval(<<'.,.,', 'riml.y', 208)
2026
+ def _reduce_80(val, _values, result)
2027
+ result = make_node(val) { |v| Riml::DictGetDotNode.new(v[0], v[1]) }
2028
+ result
2029
+ end
2030
+ .,.,
2031
+
2032
+ module_eval(<<'.,.,', 'riml.y', 209)
2033
+ def _reduce_81(val, _values, result)
2034
+ result = make_node(val) { |v| Riml::DictGetDotNode.new(v[0], v[1]) }
2035
+ result
2036
+ end
2037
+ .,.,
2038
+
2039
+ module_eval(<<'.,.,', 'riml.y', 210)
2040
+ def _reduce_82(val, _values, result)
2041
+ result = make_node(val) { |v| Riml::DictGetDotNode.new(Riml::WrapInParensNode.new(v[1]), v[3]) }
2042
+ result
2043
+ end
2044
+ .,.,
2045
+
2046
+ module_eval(<<'.,.,', 'riml.y', 214)
2047
+ def _reduce_83(val, _values, result)
2048
+ result = make_node(val) { |v| Riml::ListOrDictGetNode.new(v[0], v[1]) }
2049
+ result
2050
+ end
2051
+ .,.,
2052
+
2053
+ module_eval(<<'.,.,', 'riml.y', 215)
2054
+ def _reduce_84(val, _values, result)
2055
+ result = make_node(val) { |v| Riml::ListOrDictGetNode.new(Riml::WrapInParensNode.new(v[1]), v[3]) }
2056
+ result
2057
+ end
2058
+ .,.,
2059
+
2060
+ module_eval(<<'.,.,', 'riml.y', 219)
2061
+ def _reduce_85(val, _values, result)
2062
+ result = make_node(val) { |v| Riml::ListOrDictGetNode.new(v[0], v[1]) }
2063
+ result
2064
+ end
2065
+ .,.,
2066
+
2067
+ module_eval(<<'.,.,', 'riml.y', 223)
2068
+ def _reduce_86(val, _values, result)
2069
+ result = [val[1]]
2070
+ result
2071
+ end
2072
+ .,.,
2073
+
2074
+ module_eval(<<'.,.,', 'riml.y', 224)
2075
+ def _reduce_87(val, _values, result)
2076
+ result = [val[1]]
2077
+ result
2078
+ end
2079
+ .,.,
2080
+
2081
+ module_eval(<<'.,.,', 'riml.y', 225)
2082
+ def _reduce_88(val, _values, result)
2083
+ result = val[0] << val[2]
2084
+ result
2085
+ end
2086
+ .,.,
2087
+
2088
+ module_eval(<<'.,.,', 'riml.y', 226)
2089
+ def _reduce_89(val, _values, result)
2090
+ result = val[0] << val[2]
2091
+ result
2092
+ end
2093
+ .,.,
2094
+
2095
+ module_eval(<<'.,.,', 'riml.y', 230)
2096
+ def _reduce_90(val, _values, result)
2097
+ result = make_node(val) { |v| Riml::SublistNode.new([v[0], Riml::LiteralNode.new(' : '), v[2]]) }
2098
+ result
2099
+ end
2100
+ .,.,
2101
+
2102
+ module_eval(<<'.,.,', 'riml.y', 231)
2103
+ def _reduce_91(val, _values, result)
2104
+ result = make_node(val) { |v| Riml::SublistNode.new([v[0], Riml::LiteralNode.new(' :')]) }
2105
+ result
2106
+ end
2107
+ .,.,
2108
+
2109
+ module_eval(<<'.,.,', 'riml.y', 232)
2110
+ def _reduce_92(val, _values, result)
2111
+ result = make_node(val) { |v| Riml::SublistNode.new([Riml::LiteralNode.new(': '), v[1]]) }
2112
+ result
2113
+ end
2114
+ .,.,
2115
+
2116
+ module_eval(<<'.,.,', 'riml.y', 233)
2117
+ def _reduce_93(val, _values, result)
2118
+ result = make_node(val) { |_| Riml::SublistNode.new([Riml::LiteralNode.new(':')]) }
2119
+ result
2120
+ end
2121
+ .,.,
2122
+
2123
+ module_eval(<<'.,.,', 'riml.y', 237)
2124
+ def _reduce_94(val, _values, result)
2125
+ result = [val[0]]
2126
+ result
2127
+ end
2128
+ .,.,
2129
+
2130
+ module_eval(<<'.,.,', 'riml.y', 238)
2131
+ def _reduce_95(val, _values, result)
2132
+ result = val[0] << val[1]
2133
+ result
2134
+ end
2135
+ .,.,
2136
+
2137
+ module_eval(<<'.,.,', 'riml.y', 242)
2138
+ def _reduce_96(val, _values, result)
2139
+ result = [val[1]]
2140
+ result
2141
+ end
2142
+ .,.,
2143
+
2144
+ module_eval(<<'.,.,', 'riml.y', 243)
2145
+ def _reduce_97(val, _values, result)
2146
+ result = val[0] << val[1]
2147
+ result
2148
+ end
2149
+ .,.,
2150
+
2151
+ module_eval(<<'.,.,', 'riml.y', 247)
2152
+ def _reduce_98(val, _values, result)
2153
+ result = make_node(val) { |v| Riml::CallNode.new(v[0], v[1], v[3]) }
2154
+ result
2155
+ end
2156
+ .,.,
2157
+
2158
+ module_eval(<<'.,.,', 'riml.y', 248)
2159
+ def _reduce_99(val, _values, result)
2160
+ result = make_node(val) { |v| Riml::CallNode.new(nil, v[0], v[2]) }
2161
+ result
2162
+ end
2163
+ .,.,
2164
+
2165
+ module_eval(<<'.,.,', 'riml.y', 249)
2166
+ def _reduce_100(val, _values, result)
2167
+ result = make_node(val) { |v| Riml::CallNode.new(nil, v[0], v[2]) }
2168
+ result
2169
+ end
2170
+ .,.,
2171
+
2172
+ module_eval(<<'.,.,', 'riml.y', 250)
2173
+ def _reduce_101(val, _values, result)
2174
+ result = make_node(val) { |v| Riml::CallNode.new(nil, v[0], v[1]) }
2175
+ result
2176
+ end
2177
+ .,.,
2178
+
2179
+ module_eval(<<'.,.,', 'riml.y', 251)
2180
+ def _reduce_102(val, _values, result)
2181
+ result = make_node(val) { |v| Riml::CallNode.new(nil, v[0], []) }
2182
+ result
2183
+ end
2184
+ .,.,
2185
+
2186
+ module_eval(<<'.,.,', 'riml.y', 252)
2187
+ def _reduce_103(val, _values, result)
2188
+ result = make_node(val) { |v| Riml::ExplicitCallNode.new(nil, nil, v[2]) }
2189
+ result
2190
+ end
2191
+ .,.,
2192
+
2193
+ module_eval(<<'.,.,', 'riml.y', 256)
2194
+ def _reduce_104(val, _values, result)
2195
+ result = make_node(val) { |v| Riml::CallNode.new(v[0], v[1], v[3]) }
2196
+ result
2197
+ end
2198
+ .,.,
2199
+
2200
+ module_eval(<<'.,.,', 'riml.y', 257)
2201
+ def _reduce_105(val, _values, result)
2202
+ result = make_node(val) { |v| Riml::CallNode.new(v[0], v[1], []) }
2203
+ result
2204
+ end
2205
+ .,.,
2206
+
2207
+ module_eval(<<'.,.,', 'riml.y', 261)
2208
+ def _reduce_106(val, _values, result)
2209
+ result = make_node(val) { |v| Riml::RimlFileCommandNode.new(nil, v[0], v[2]) }
2210
+ result
2211
+ end
2212
+ .,.,
2213
+
2214
+ module_eval(<<'.,.,', 'riml.y', 262)
2215
+ def _reduce_107(val, _values, result)
2216
+ result = make_node(val) { |v| Riml::RimlFileCommandNode.new(nil, v[0], v[1]) }
2217
+ result
2218
+ end
2219
+ .,.,
2220
+
2221
+ module_eval(<<'.,.,', 'riml.y', 266)
2222
+ def _reduce_108(val, _values, result)
2223
+ result = make_node(val) { |v| Riml::RimlClassCommandNode.new(nil, v[0], v[2]) }
2224
+ result
2225
+ end
2226
+ .,.,
2227
+
2228
+ module_eval(<<'.,.,', 'riml.y', 267)
2229
+ def _reduce_109(val, _values, result)
2230
+ result = make_node(val) { |v| Riml::RimlClassCommandNode.new(nil, v[0], v[1]) }
2231
+ result
2232
+ end
2233
+ .,.,
2234
+
2235
+ module_eval(<<'.,.,', 'riml.y', 271)
2236
+ def _reduce_110(val, _values, result)
2237
+ result = ["#{val[0]}#{val[1]}"]
2238
+ result
2239
+ end
2240
+ .,.,
2241
+
2242
+ module_eval(<<'.,.,', 'riml.y', 272)
2243
+ def _reduce_111(val, _values, result)
2244
+ result = val
2245
+ result
2246
+ end
2247
+ .,.,
2248
+
2249
+ module_eval(<<'.,.,', 'riml.y', 273)
2250
+ def _reduce_112(val, _values, result)
2251
+ result = val[0].concat ["#{val[2]}#{val[3]}"]
2252
+ result
2253
+ end
2254
+ .,.,
2255
+
2256
+ module_eval(<<'.,.,', 'riml.y', 277)
2257
+ def _reduce_113(val, _values, result)
2258
+ result = make_node(val) { |v| Riml::ExplicitCallNode.new(v[1], v[2], v[4]) }
2259
+ result
2260
+ end
2261
+ .,.,
2262
+
2263
+ module_eval(<<'.,.,', 'riml.y', 278)
2264
+ def _reduce_114(val, _values, result)
2265
+ result = make_node(val) { |v| Riml::ExplicitCallNode.new(nil, v[1], v[3]) }
2266
+ result
2267
+ end
2268
+ .,.,
2269
+
2270
+ module_eval(<<'.,.,', 'riml.y', 282)
2271
+ def _reduce_115(val, _values, result)
2272
+ result = val[0]
2273
+ result
2274
+ end
2275
+ .,.,
2276
+
2277
+ module_eval(<<'.,.,', 'riml.y', 283)
2278
+ def _reduce_116(val, _values, result)
2279
+ result = nil
2280
+ result
2281
+ end
2282
+ .,.,
2283
+
2284
+ module_eval(<<'.,.,', 'riml.y', 288)
2285
+ def _reduce_117(val, _values, result)
2286
+ result = [ nil, val[0] ]
2287
+ result
2288
+ end
2289
+ .,.,
2290
+
2291
+ module_eval(<<'.,.,', 'riml.y', 289)
2292
+ def _reduce_118(val, _values, result)
2293
+ result = [ make_node(val) { |v| Riml::SIDNode.new(v[1]) }, val[3] ]
2294
+ result
2295
+ end
2296
+ .,.,
2297
+
2298
+ module_eval(<<'.,.,', 'riml.y', 293)
2299
+ def _reduce_119(val, _values, result)
2300
+ result = []
2301
+ result
2302
+ end
2303
+ .,.,
2304
+
2305
+ module_eval(<<'.,.,', 'riml.y', 294)
2306
+ def _reduce_120(val, _values, result)
2307
+ result = val[0]
2308
+ result
2309
+ end
2310
+ .,.,
2311
+
2312
+ module_eval(<<'.,.,', 'riml.y', 298)
2313
+ def _reduce_121(val, _values, result)
2314
+ result = []
2315
+ result
2316
+ end
2317
+ .,.,
2318
+
2319
+ module_eval(<<'.,.,', 'riml.y', 299)
2320
+ def _reduce_122(val, _values, result)
2321
+ result = val[0]
2322
+ result
2323
+ end
2324
+ .,.,
2325
+
2326
+ module_eval(<<'.,.,', 'riml.y', 303)
2327
+ def _reduce_123(val, _values, result)
2328
+ result = val
2329
+ result
2330
+ end
2331
+ .,.,
2332
+
2333
+ module_eval(<<'.,.,', 'riml.y', 304)
2334
+ def _reduce_124(val, _values, result)
2335
+ result = [ make_node(val) { |v| Riml::SplatNode.new(v[1]) } ]
2336
+ result
2337
+ end
2338
+ .,.,
2339
+
2340
+ module_eval(<<'.,.,', 'riml.y', 305)
2341
+ def _reduce_125(val, _values, result)
2342
+ result = val[0] << val[2]
2343
+ result
2344
+ end
2345
+ .,.,
2346
+
2347
+ module_eval(<<'.,.,', 'riml.y', 306)
2348
+ def _reduce_126(val, _values, result)
2349
+ result = val[0] << make_node(val) { |v| Riml::SplatNode.new(v[3]) }
2350
+ result
2351
+ end
2352
+ .,.,
2353
+
2354
+ module_eval(<<'.,.,', 'riml.y', 310)
2355
+ def _reduce_127(val, _values, result)
2356
+ result = val
2357
+ result
2358
+ end
2359
+ .,.,
2360
+
2361
+ module_eval(<<'.,.,', 'riml.y', 311)
2362
+ def _reduce_128(val, _values, result)
2363
+ result = val[0] << val[2]
2364
+ result
2365
+ end
2366
+ .,.,
2367
+
2368
+ module_eval(<<'.,.,', 'riml.y', 315)
2369
+ def _reduce_129(val, _values, result)
2370
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2371
+ result
2372
+ end
2373
+ .,.,
2374
+
2375
+ module_eval(<<'.,.,', 'riml.y', 316)
2376
+ def _reduce_130(val, _values, result)
2377
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2378
+ result
2379
+ end
2380
+ .,.,
2381
+
2382
+ module_eval(<<'.,.,', 'riml.y', 318)
2383
+ def _reduce_131(val, _values, result)
2384
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2385
+ result
2386
+ end
2387
+ .,.,
2388
+
2389
+ module_eval(<<'.,.,', 'riml.y', 319)
2390
+ def _reduce_132(val, _values, result)
2391
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2392
+ result
2393
+ end
2394
+ .,.,
2395
+
2396
+ module_eval(<<'.,.,', 'riml.y', 320)
2397
+ def _reduce_133(val, _values, result)
2398
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2399
+ result
2400
+ end
2401
+ .,.,
2402
+
2403
+ module_eval(<<'.,.,', 'riml.y', 323)
2404
+ def _reduce_134(val, _values, result)
2405
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2406
+ result
2407
+ end
2408
+ .,.,
2409
+
2410
+ module_eval(<<'.,.,', 'riml.y', 325)
2411
+ def _reduce_135(val, _values, result)
2412
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2413
+ result
2414
+ end
2415
+ .,.,
2416
+
2417
+ module_eval(<<'.,.,', 'riml.y', 326)
2418
+ def _reduce_136(val, _values, result)
2419
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2420
+ result
2421
+ end
2422
+ .,.,
2423
+
2424
+ module_eval(<<'.,.,', 'riml.y', 327)
2425
+ def _reduce_137(val, _values, result)
2426
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2427
+ result
2428
+ end
2429
+ .,.,
2430
+
2431
+ module_eval(<<'.,.,', 'riml.y', 329)
2432
+ def _reduce_138(val, _values, result)
2433
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2434
+ result
2435
+ end
2436
+ .,.,
2437
+
2438
+ module_eval(<<'.,.,', 'riml.y', 330)
2439
+ def _reduce_139(val, _values, result)
2440
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2441
+ result
2442
+ end
2443
+ .,.,
2444
+
2445
+ module_eval(<<'.,.,', 'riml.y', 331)
2446
+ def _reduce_140(val, _values, result)
2447
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2448
+ result
2449
+ end
2450
+ .,.,
2451
+
2452
+ module_eval(<<'.,.,', 'riml.y', 333)
2453
+ def _reduce_141(val, _values, result)
2454
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2455
+ result
2456
+ end
2457
+ .,.,
2458
+
2459
+ module_eval(<<'.,.,', 'riml.y', 334)
2460
+ def _reduce_142(val, _values, result)
2461
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2462
+ result
2463
+ end
2464
+ .,.,
2465
+
2466
+ module_eval(<<'.,.,', 'riml.y', 335)
2467
+ def _reduce_143(val, _values, result)
2468
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2469
+ result
2470
+ end
2471
+ .,.,
2472
+
2473
+ module_eval(<<'.,.,', 'riml.y', 337)
2474
+ def _reduce_144(val, _values, result)
2475
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2476
+ result
2477
+ end
2478
+ .,.,
2479
+
2480
+ module_eval(<<'.,.,', 'riml.y', 338)
2481
+ def _reduce_145(val, _values, result)
2482
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2483
+ result
2484
+ end
2485
+ .,.,
2486
+
2487
+ module_eval(<<'.,.,', 'riml.y', 339)
2488
+ def _reduce_146(val, _values, result)
2489
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2490
+ result
2491
+ end
2492
+ .,.,
2493
+
2494
+ module_eval(<<'.,.,', 'riml.y', 341)
2495
+ def _reduce_147(val, _values, result)
2496
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2497
+ result
2498
+ end
2499
+ .,.,
2500
+
2501
+ module_eval(<<'.,.,', 'riml.y', 342)
2502
+ def _reduce_148(val, _values, result)
2503
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2504
+ result
2505
+ end
2506
+ .,.,
2507
+
2508
+ module_eval(<<'.,.,', 'riml.y', 343)
2509
+ def _reduce_149(val, _values, result)
2510
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2511
+ result
2512
+ end
2513
+ .,.,
2514
+
2515
+ module_eval(<<'.,.,', 'riml.y', 345)
2516
+ def _reduce_150(val, _values, result)
2517
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2518
+ result
2519
+ end
2520
+ .,.,
2521
+
2522
+ module_eval(<<'.,.,', 'riml.y', 346)
2523
+ def _reduce_151(val, _values, result)
2524
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2525
+ result
2526
+ end
2527
+ .,.,
2528
+
2529
+ module_eval(<<'.,.,', 'riml.y', 347)
2530
+ def _reduce_152(val, _values, result)
2531
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2532
+ result
2533
+ end
2534
+ .,.,
2535
+
2536
+ module_eval(<<'.,.,', 'riml.y', 349)
2537
+ def _reduce_153(val, _values, result)
2538
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2539
+ result
2540
+ end
2541
+ .,.,
2542
+
2543
+ module_eval(<<'.,.,', 'riml.y', 350)
2544
+ def _reduce_154(val, _values, result)
2545
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2546
+ result
2547
+ end
2548
+ .,.,
2549
+
2550
+ module_eval(<<'.,.,', 'riml.y', 351)
2551
+ def _reduce_155(val, _values, result)
2552
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2553
+ result
2554
+ end
2555
+ .,.,
2556
+
2557
+ module_eval(<<'.,.,', 'riml.y', 353)
2558
+ def _reduce_156(val, _values, result)
2559
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2560
+ result
2561
+ end
2562
+ .,.,
2563
+
2564
+ module_eval(<<'.,.,', 'riml.y', 354)
2565
+ def _reduce_157(val, _values, result)
2566
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2567
+ result
2568
+ end
2569
+ .,.,
2570
+
2571
+ module_eval(<<'.,.,', 'riml.y', 355)
2572
+ def _reduce_158(val, _values, result)
2573
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2574
+ result
2575
+ end
2576
+ .,.,
2577
+
2578
+ module_eval(<<'.,.,', 'riml.y', 356)
2579
+ def _reduce_159(val, _values, result)
2580
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2581
+ result
2582
+ end
2583
+ .,.,
2584
+
2585
+ module_eval(<<'.,.,', 'riml.y', 357)
2586
+ def _reduce_160(val, _values, result)
2587
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2588
+ result
2589
+ end
2590
+ .,.,
2591
+
2592
+ module_eval(<<'.,.,', 'riml.y', 358)
2593
+ def _reduce_161(val, _values, result)
2594
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2595
+ result
2596
+ end
2597
+ .,.,
2598
+
2599
+ module_eval(<<'.,.,', 'riml.y', 360)
2600
+ def _reduce_162(val, _values, result)
2601
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2602
+ result
2603
+ end
2604
+ .,.,
2605
+
2606
+ module_eval(<<'.,.,', 'riml.y', 361)
2607
+ def _reduce_163(val, _values, result)
2608
+ result = make_node(val) { |v| Riml::BinaryOperatorNode.new(v[1], [v[0], v[2]]) }
2609
+ result
2610
+ end
2611
+ .,.,
2612
+
2613
+ module_eval(<<'.,.,', 'riml.y', 365)
2614
+ def _reduce_164(val, _values, result)
2615
+ result = make_node(val) { |v| Riml::UnaryOperatorNode.new(val[0], [val[1]]) }
2616
+ result
2617
+ end
2618
+ .,.,
2619
+
2620
+ module_eval(<<'.,.,', 'riml.y', 366)
2621
+ def _reduce_165(val, _values, result)
2622
+ result = make_node(val) { |v| Riml::UnaryOperatorNode.new(val[0], [val[1]]) }
2623
+ result
2624
+ end
2625
+ .,.,
2626
+
2627
+ module_eval(<<'.,.,', 'riml.y', 367)
2628
+ def _reduce_166(val, _values, result)
2629
+ result = make_node(val) { |v| Riml::UnaryOperatorNode.new(val[0], [val[1]]) }
2630
+ result
2631
+ end
2632
+ .,.,
2633
+
2634
+ module_eval(<<'.,.,', 'riml.y', 372)
2635
+ def _reduce_167(val, _values, result)
2636
+ result = make_node(val) { |v| Riml::AssignNode.new(v[1][0], v[1][1], v[1][2]) }
2637
+ result
2638
+ end
2639
+ .,.,
2640
+
2641
+ module_eval(<<'.,.,', 'riml.y', 373)
2642
+ def _reduce_168(val, _values, result)
2643
+ result = make_node(val) { |v| Riml::AssignNode.new(v[0][0], v[0][1], v[0][2]) }
2644
+ result
2645
+ end
2646
+ .,.,
2647
+
2648
+ module_eval(<<'.,.,', 'riml.y', 377)
2649
+ def _reduce_169(val, _values, result)
2650
+ result = make_node(val) { |v| Riml::MultiAssignNode.new([v[0], v[2]]) }
2651
+ result
2652
+ end
2653
+ .,.,
2654
+
2655
+ module_eval(<<'.,.,', 'riml.y', 378)
2656
+ def _reduce_170(val, _values, result)
2657
+ val[0].assigns << val[2]; result = val[0]
2658
+ result
2659
+ end
2660
+ .,.,
2661
+
2662
+ module_eval(<<'.,.,', 'riml.y', 383)
2663
+ def _reduce_171(val, _values, result)
2664
+ result = [val[1], val[0], val[2]]
2665
+ result
2666
+ end
2667
+ .,.,
2668
+
2669
+ module_eval(<<'.,.,', 'riml.y', 384)
2670
+ def _reduce_172(val, _values, result)
2671
+ result = [val[1], val[0], val[2]]
2672
+ result
2673
+ end
2674
+ .,.,
2675
+
2676
+ module_eval(<<'.,.,', 'riml.y', 385)
2677
+ def _reduce_173(val, _values, result)
2678
+ result = [val[1], val[0], val[2]]
2679
+ result
2680
+ end
2681
+ .,.,
2682
+
2683
+ module_eval(<<'.,.,', 'riml.y', 386)
2684
+ def _reduce_174(val, _values, result)
2685
+ result = [val[1], val[0], val[2]]
2686
+ result
2687
+ end
2688
+ .,.,
2689
+
2690
+ module_eval(<<'.,.,', 'riml.y', 390)
2691
+ def _reduce_175(val, _values, result)
2692
+ result = val[0]
2693
+ result
2694
+ end
2695
+ .,.,
2696
+
2697
+ module_eval(<<'.,.,', 'riml.y', 391)
2698
+ def _reduce_176(val, _values, result)
2699
+ result = val[0]
2700
+ result
2701
+ end
2702
+ .,.,
2703
+
2704
+ module_eval(<<'.,.,', 'riml.y', 392)
2705
+ def _reduce_177(val, _values, result)
2706
+ result = val[0]
2707
+ result
2708
+ end
2709
+ .,.,
2710
+
2711
+ module_eval(<<'.,.,', 'riml.y', 393)
2712
+ def _reduce_178(val, _values, result)
2713
+ result = val[0]
2714
+ result
2715
+ end
2716
+ .,.,
2717
+
2718
+ module_eval(<<'.,.,', 'riml.y', 394)
2719
+ def _reduce_179(val, _values, result)
2720
+ result = val[0]
2721
+ result
2722
+ end
2723
+ .,.,
2724
+
2725
+ module_eval(<<'.,.,', 'riml.y', 399)
2726
+ def _reduce_180(val, _values, result)
2727
+ result = val[0]
2728
+ result
2729
+ end
2730
+ .,.,
2731
+
2732
+ module_eval(<<'.,.,', 'riml.y', 400)
2733
+ def _reduce_181(val, _values, result)
2734
+ result = make_node(val) { |v| Riml::GetSpecialVariableNode.new(v[0], v[1]) }
2735
+ result
2736
+ end
2737
+ .,.,
2738
+
2739
+ module_eval(<<'.,.,', 'riml.y', 401)
2740
+ def _reduce_182(val, _values, result)
2741
+ result = make_node(val) { |v| Riml::GetVariableByScopeAndDictNameNode.new(v[0], v[1]) }
2742
+ result
2743
+ end
2744
+ .,.,
2745
+
2746
+ module_eval(<<'.,.,', 'riml.y', 405)
2747
+ def _reduce_183(val, _values, result)
2748
+ result = make_node(val) { |v| Riml::GetVariableNode.new(v[0], v[1]) }
2749
+ result
2750
+ end
2751
+ .,.,
2752
+
2753
+ module_eval(<<'.,.,', 'riml.y', 409)
2754
+ def _reduce_184(val, _values, result)
2755
+ result = val[0]
2756
+ result
2757
+ end
2758
+ .,.,
2759
+
2760
+ module_eval(<<'.,.,', 'riml.y', 410)
2761
+ def _reduce_185(val, _values, result)
2762
+ result = make_node(val) { |v| Riml::GetCurlyBraceNameNode.new(v[0], v[1]) }
2763
+ result
2764
+ end
2765
+ .,.,
2766
+
2767
+ module_eval(<<'.,.,', 'riml.y', 414)
2768
+ def _reduce_186(val, _values, result)
2769
+ result = make_node(val) { |v| Riml::UnletVariableNode.new('!', [ v[1] ]) }
2770
+ result
2771
+ end
2772
+ .,.,
2773
+
2774
+ module_eval(<<'.,.,', 'riml.y', 415)
2775
+ def _reduce_187(val, _values, result)
2776
+ result = make_node(val) { |v| Riml::UnletVariableNode.new('!', [ v[1] ]) }
2777
+ result
2778
+ end
2779
+ .,.,
2780
+
2781
+ module_eval(<<'.,.,', 'riml.y', 416)
2782
+ def _reduce_188(val, _values, result)
2783
+ result = val[0] << val[1]
2784
+ result
2785
+ end
2786
+ .,.,
2787
+
2788
+ module_eval(<<'.,.,', 'riml.y', 420)
2789
+ def _reduce_189(val, _values, result)
2790
+ result = make_node(val) { |v| Riml::CurlyBraceVariable.new([ v[0] ]) }
2791
+ result
2792
+ end
2793
+ .,.,
2794
+
2795
+ module_eval(<<'.,.,', 'riml.y', 421)
2796
+ def _reduce_190(val, _values, result)
2797
+ result = make_node(val) { |v| Riml::CurlyBraceVariable.new([ Riml::CurlyBracePart.new(v[0]), v[1] ]) }
2798
+ result
2799
+ end
2800
+ .,.,
2801
+
2802
+ module_eval(<<'.,.,', 'riml.y', 422)
2803
+ def _reduce_191(val, _values, result)
2804
+ result = val[0] << make_node(val) { |v| Riml::CurlyBracePart.new(v[1]) }
2805
+ result
2806
+ end
2807
+ .,.,
2808
+
2809
+ module_eval(<<'.,.,', 'riml.y', 423)
2810
+ def _reduce_192(val, _values, result)
2811
+ result = val[0] << val[1]
2812
+ result
2813
+ end
2814
+ .,.,
2815
+
2816
+ module_eval(<<'.,.,', 'riml.y', 427)
2817
+ def _reduce_193(val, _values, result)
2818
+ result = make_node(val) { |v| Riml::CurlyBracePart.new(v[1]) }
2819
+ result
2820
+ end
2821
+ .,.,
2822
+
2823
+ module_eval(<<'.,.,', 'riml.y', 428)
2824
+ def _reduce_194(val, _values, result)
2825
+ result = make_node(val) { |v| Riml::CurlyBracePart.new([v[1], v[2]]) }
2826
+ result
2827
+ end
2828
+ .,.,
2829
+
2830
+ module_eval(<<'.,.,', 'riml.y', 429)
2831
+ def _reduce_195(val, _values, result)
2832
+ result = make_node(val) { |v| Riml::CurlyBracePart.new([v[1], v[2]]) }
2833
+ result
2834
+ end
2835
+ .,.,
2836
+
2837
+ module_eval(<<'.,.,', 'riml.y', 435)
2838
+ def _reduce_196(val, _values, result)
2839
+ result = make_node(val) { |v| Riml.const_get(val[0]).new('!', v[1][0], v[1][1], v[2], [], v[3], v[4]) }
2840
+ result
2841
+ end
2842
+ .,.,
2843
+
2844
+ module_eval(<<'.,.,', 'riml.y', 436)
2845
+ def _reduce_197(val, _values, result)
2846
+ result = make_node(val) { |v| Riml.const_get(val[0]).new('!', v[1][0], v[1][1], v[2], v[4], v[6], v[7]) }
2847
+ result
2848
+ end
2849
+ .,.,
2850
+
2851
+ module_eval(<<'.,.,', 'riml.y', 437)
2852
+ def _reduce_198(val, _values, result)
2853
+ result = make_node(val) { |v| Riml.const_get(val[0]).new('!', v[1][0], v[1][1], v[2], [v[4]], v[6], v[7]) }
2854
+ result
2855
+ end
2856
+ .,.,
2857
+
2858
+ module_eval(<<'.,.,', 'riml.y', 438)
2859
+ def _reduce_199(val, _values, result)
2860
+ result = make_node(val) { |v| Riml.const_get(val[0]).new('!', v[1][0], v[1][1], v[2], v[4] << v[6], v[8], v[9]) }
2861
+ result
2862
+ end
2863
+ .,.,
2864
+
2865
+ module_eval(<<'.,.,', 'riml.y', 442)
2866
+ def _reduce_200(val, _values, result)
2867
+ result = "DefNode"
2868
+ result
2869
+ end
2870
+ .,.,
2871
+
2872
+ module_eval(<<'.,.,', 'riml.y', 443)
2873
+ def _reduce_201(val, _values, result)
2874
+ result = "DefNode"
2875
+ result
2876
+ end
2877
+ .,.,
2878
+
2879
+ module_eval(<<'.,.,', 'riml.y', 444)
2880
+ def _reduce_202(val, _values, result)
2881
+ result = "DefMethodNode"
2882
+ result
2883
+ end
2884
+ .,.,
2885
+
2886
+ module_eval(<<'.,.,', 'riml.y', 449)
2887
+ def _reduce_203(val, _values, result)
2888
+ result = make_node(val) { |v| Riml::GetCurlyBraceNameNode.new('', v[0]) }
2889
+ result
2890
+ end
2891
+ .,.,
2892
+
2893
+ module_eval(<<'.,.,', 'riml.y', 450)
2894
+ def _reduce_204(val, _values, result)
2895
+ result = val[0]
2896
+ result
2897
+ end
2898
+ .,.,
2899
+
2900
+ module_eval(<<'.,.,', 'riml.y', 455)
2901
+ def _reduce_205(val, _values, result)
2902
+ result = [val[0]]
2903
+ result
2904
+ end
2905
+ .,.,
2906
+
2907
+ module_eval(<<'.,.,', 'riml.y', 456)
2908
+ def _reduce_206(val, _values, result)
2909
+ result = val[0] << val[1]
2910
+ result
2911
+ end
2912
+ .,.,
2913
+
2914
+ module_eval(<<'.,.,', 'riml.y', 457)
2915
+ def _reduce_207(val, _values, result)
2916
+ result = nil
2917
+ result
2918
+ end
2919
+ .,.,
2920
+
2921
+ module_eval(<<'.,.,', 'riml.y', 461)
2922
+ def _reduce_208(val, _values, result)
2923
+ result = []
2924
+ result
2925
+ end
2926
+ .,.,
2927
+
2928
+ module_eval(<<'.,.,', 'riml.y', 462)
2929
+ def _reduce_209(val, _values, result)
2930
+ result = val
2931
+ result
2932
+ end
2933
+ .,.,
2934
+
2935
+ module_eval(<<'.,.,', 'riml.y', 463)
2936
+ def _reduce_210(val, _values, result)
2937
+ result = val
2938
+ result
2939
+ end
2940
+ .,.,
2941
+
2942
+ module_eval(<<'.,.,', 'riml.y', 464)
2943
+ def _reduce_211(val, _values, result)
2944
+ result = val[0] << val[2]
2945
+ result
2946
+ end
2947
+ .,.,
2948
+
2949
+ module_eval(<<'.,.,', 'riml.y', 465)
2950
+ def _reduce_212(val, _values, result)
2951
+ result = val[0] << val[2]
2952
+ result
2953
+ end
2954
+ .,.,
2955
+
2956
+ module_eval(<<'.,.,', 'riml.y', 469)
2957
+ def _reduce_213(val, _values, result)
2958
+ result = make_node(val) { |v| Riml::DefaultParamNode.new(v[0], v[2]) }
2959
+ result
2960
+ end
2961
+ .,.,
2962
+
2963
+ module_eval(<<'.,.,', 'riml.y', 473)
2964
+ def _reduce_214(val, _values, result)
2965
+ result = make_node(val) { |v| Riml::ReturnNode.new(v[1]) }
2966
+ result
2967
+ end
2968
+ .,.,
2969
+
2970
+ module_eval(<<'.,.,', 'riml.y', 474)
2971
+ def _reduce_215(val, _values, result)
2972
+ result = make_node(val) { |v| Riml::IfNode.new(v[3], Nodes.new([ReturnNode.new(v[1])])) }
2973
+ result
2974
+ end
2975
+ .,.,
2976
+
2977
+ module_eval(<<'.,.,', 'riml.y', 475)
2978
+ def _reduce_216(val, _values, result)
2979
+ result = make_node(val) { |v| Riml::UnlessNode.new(v[3], Nodes.new([ReturnNode.new(v[1])])) }
2980
+ result
2981
+ end
2982
+ .,.,
2983
+
2984
+ module_eval(<<'.,.,', 'riml.y', 479)
2985
+ def _reduce_217(val, _values, result)
2986
+ result = nil
2987
+ result
2988
+ end
2989
+ .,.,
2990
+
2991
+ module_eval(<<'.,.,', 'riml.y', 480)
2992
+ def _reduce_218(val, _values, result)
2993
+ result = val[0]
2994
+ result
2995
+ end
2996
+ .,.,
2997
+
2998
+ module_eval(<<'.,.,', 'riml.y', 484)
2999
+ def _reduce_219(val, _values, result)
3000
+ result = make_node(val) { |_| Riml::FinishNode.new }
3001
+ result
3002
+ end
3003
+ .,.,
3004
+
3005
+ module_eval(<<'.,.,', 'riml.y', 489)
3006
+ def _reduce_220(val, _values, result)
3007
+ result = make_node(val) { |v| Riml::IfNode.new(v[1], v[2]) }
3008
+ result
3009
+ end
3010
+ .,.,
3011
+
3012
+ module_eval(<<'.,.,', 'riml.y', 490)
3013
+ def _reduce_221(val, _values, result)
3014
+ result = make_node(val) { |v| Riml::IfNode.new(v[1], Riml::Nodes.new([v[3]])) }
3015
+ result
3016
+ end
3017
+ .,.,
3018
+
3019
+ module_eval(<<'.,.,', 'riml.y', 491)
3020
+ def _reduce_222(val, _values, result)
3021
+ result = make_node(val) { |v| Riml::IfNode.new(v[2], Riml::Nodes.new([v[0]])) }
3022
+ result
3023
+ end
3024
+ .,.,
3025
+
3026
+ module_eval(<<'.,.,', 'riml.y', 495)
3027
+ def _reduce_223(val, _values, result)
3028
+ result = make_node(val) { |v| Riml::UnlessNode.new(v[1], v[2]) }
3029
+ result
3030
+ end
3031
+ .,.,
3032
+
3033
+ module_eval(<<'.,.,', 'riml.y', 496)
3034
+ def _reduce_224(val, _values, result)
3035
+ result = make_node(val) { |v| Riml::UnlessNode.new(v[1], Riml::Nodes.new([v[3]])) }
3036
+ result
3037
+ end
3038
+ .,.,
3039
+
3040
+ module_eval(<<'.,.,', 'riml.y', 497)
3041
+ def _reduce_225(val, _values, result)
3042
+ result = make_node(val) { |v| Riml::UnlessNode.new(v[2], Riml::Nodes.new([v[0]])) }
3043
+ result
3044
+ end
3045
+ .,.,
3046
+
3047
+ module_eval(<<'.,.,', 'riml.y', 501)
3048
+ def _reduce_226(val, _values, result)
3049
+ result = make_node(val) { |v| Riml::TernaryOperatorNode.new([v[0], v[2], v[4]]) }
3050
+ result
3051
+ end
3052
+ .,.,
3053
+
3054
+ module_eval(<<'.,.,', 'riml.y', 505)
3055
+ def _reduce_227(val, _values, result)
3056
+ result = make_node(val) { |v| Riml::WhileNode.new(v[1], v[2]) }
3057
+ result
3058
+ end
3059
+ .,.,
3060
+
3061
+ module_eval(<<'.,.,', 'riml.y', 509)
3062
+ def _reduce_228(val, _values, result)
3063
+ result = make_node(val) { |_| Riml::BreakNode.new }
3064
+ result
3065
+ end
3066
+ .,.,
3067
+
3068
+ module_eval(<<'.,.,', 'riml.y', 510)
3069
+ def _reduce_229(val, _values, result)
3070
+ result = make_node(val) { |_| Riml::ContinueNode.new }
3071
+ result
3072
+ end
3073
+ .,.,
3074
+
3075
+ module_eval(<<'.,.,', 'riml.y', 514)
3076
+ def _reduce_230(val, _values, result)
3077
+ result = make_node(val) { |v| Riml::UntilNode.new(v[1], v[2]) }
3078
+ result
3079
+ end
3080
+ .,.,
3081
+
3082
+ module_eval(<<'.,.,', 'riml.y', 518)
3083
+ def _reduce_231(val, _values, result)
3084
+ result = make_node(val) { |v| Riml::ForNode.new(v[1], v[3], v[4]) }
3085
+ result
3086
+ end
3087
+ .,.,
3088
+
3089
+ module_eval(<<'.,.,', 'riml.y', 519)
3090
+ def _reduce_232(val, _values, result)
3091
+ result = make_node(val) { |v| Riml::ForNode.new(v[1], v[3], v[4]) }
3092
+ result
3093
+ end
3094
+ .,.,
3095
+
3096
+ module_eval(<<'.,.,', 'riml.y', 520)
3097
+ def _reduce_233(val, _values, result)
3098
+ result = make_node(val) { |v| Riml::ForNode.new(v[1], v[3], v[4]) }
3099
+ result
3100
+ end
3101
+ .,.,
3102
+
3103
+ module_eval(<<'.,.,', 'riml.y', 524)
3104
+ def _reduce_234(val, _values, result)
3105
+ result = make_node(val) { |v| Riml::TryNode.new(v[1], nil, nil) }
3106
+ result
3107
+ end
3108
+ .,.,
3109
+
3110
+ module_eval(<<'.,.,', 'riml.y', 525)
3111
+ def _reduce_235(val, _values, result)
3112
+ result = make_node(val) { |v| Riml::TryNode.new(v[1], v[2], nil) }
3113
+ result
3114
+ end
3115
+ .,.,
3116
+
3117
+ module_eval(<<'.,.,', 'riml.y', 526)
3118
+ def _reduce_236(val, _values, result)
3119
+ result = make_node(val) { |v| Riml::TryNode.new(v[1], v[2], v[4]) }
3120
+ result
3121
+ end
3122
+ .,.,
3123
+
3124
+ module_eval(<<'.,.,', 'riml.y', 530)
3125
+ def _reduce_237(val, _values, result)
3126
+ result = nil
3127
+ result
3128
+ end
3129
+ .,.,
3130
+
3131
+ module_eval(<<'.,.,', 'riml.y', 531)
3132
+ def _reduce_238(val, _values, result)
3133
+ result = [ make_node(val) { |v| Riml::CatchNode.new(nil, v[1]) } ]
3134
+ result
3135
+ end
3136
+ .,.,
3137
+
3138
+ module_eval(<<'.,.,', 'riml.y', 532)
3139
+ def _reduce_239(val, _values, result)
3140
+ result = [ make_node(val) { |v| Riml::CatchNode.new(v[1], v[2]) } ]
3141
+ result
3142
+ end
3143
+ .,.,
3144
+
3145
+ module_eval(<<'.,.,', 'riml.y', 533)
3146
+ def _reduce_240(val, _values, result)
3147
+ result = val[0] << make_node(val) { |v| Riml::CatchNode.new(nil, v[2]) }
3148
+ result
3149
+ end
3150
+ .,.,
3151
+
3152
+ module_eval(<<'.,.,', 'riml.y', 534)
3153
+ def _reduce_241(val, _values, result)
3154
+ result = val[0] << make_node(val) { |v| Riml::CatchNode.new(v[2], v[3]) }
3155
+ result
3156
+ end
3157
+ .,.,
3158
+
3159
+ module_eval(<<'.,.,', 'riml.y', 538)
3160
+ def _reduce_242(val, _values, result)
3161
+ result = val[0]
3162
+ result
3163
+ end
3164
+ .,.,
3165
+
3166
+ module_eval(<<'.,.,', 'riml.y', 539)
3167
+ def _reduce_243(val, _values, result)
3168
+ result = val[0]
3169
+ result
3170
+ end
3171
+ .,.,
3172
+
3173
+ module_eval(<<'.,.,', 'riml.y', 546)
3174
+ def _reduce_244(val, _values, result)
3175
+ result = val[1]
3176
+ result
3177
+ end
3178
+ .,.,
3179
+
3180
+ module_eval(<<'.,.,', 'riml.y', 547)
3181
+ def _reduce_245(val, _values, result)
3182
+ result = make_node(val) { |_| Riml::Nodes.new([]) }
3183
+ result
3184
+ end
3185
+ .,.,
3186
+
3187
+ module_eval(<<'.,.,', 'riml.y', 551)
3188
+ def _reduce_246(val, _values, result)
3189
+ result = val[0]
3190
+ result
3191
+ end
3192
+ .,.,
3193
+
3194
+ module_eval(<<'.,.,', 'riml.y', 552)
3195
+ def _reduce_247(val, _values, result)
3196
+ result = val[1] << val[2]
3197
+ result
3198
+ end
3199
+ .,.,
3200
+
3201
+ module_eval(<<'.,.,', 'riml.y', 553)
3202
+ def _reduce_248(val, _values, result)
3203
+ result = val[1] << val[2]
3204
+ result
3205
+ end
3206
+ .,.,
3207
+
3208
+ module_eval(<<'.,.,', 'riml.y', 554)
3209
+ def _reduce_249(val, _values, result)
3210
+ result = val[1] << val[2] << val[3]
3211
+ result
3212
+ end
3213
+ .,.,
3214
+
3215
+ module_eval(<<'.,.,', 'riml.y', 558)
3216
+ def _reduce_250(val, _values, result)
3217
+ result = make_node(val) { |v| Riml::ElseNode.new(v[2]) }
3218
+ result
3219
+ end
3220
+ .,.,
3221
+
3222
+ module_eval(<<'.,.,', 'riml.y', 562)
3223
+ def _reduce_251(val, _values, result)
3224
+ result = make_node(val) { |v| Riml::Nodes.new([Riml::ElseifNode.new(v[1], v[3])]) }
3225
+ result
3226
+ end
3227
+ .,.,
3228
+
3229
+ module_eval(<<'.,.,', 'riml.y', 563)
3230
+ def _reduce_252(val, _values, result)
3231
+ result = val[0] << make_node(val) { |v| Riml::ElseifNode.new(v[2], v[4]) }
3232
+ result
3233
+ end
3234
+ .,.,
3235
+
3236
+ module_eval(<<'.,.,', 'riml.y', 567)
3237
+ def _reduce_253(val, _values, result)
3238
+ result = make_node(val) { |v| Riml::ClassDefinitionNode.new(v[1], v[2], nil, v[3]) }
3239
+ result
3240
+ end
3241
+ .,.,
3242
+
3243
+ module_eval(<<'.,.,', 'riml.y', 568)
3244
+ def _reduce_254(val, _values, result)
3245
+ result = make_node(val) { |v| Riml::ClassDefinitionNode.new(v[1], v[2], (v[4] || ClassDefinitionNode::DEFAULT_SCOPE_MODIFIER) + v[5], v[6]) }
3246
+ result
3247
+ end
3248
+ .,.,
3249
+
3250
+ module_eval(<<'.,.,', 'riml.y', 572)
3251
+ def _reduce_255(val, _values, result)
3252
+ result = make_node(val) { |v| Riml::ObjectInstantiationNode.new(v[1]) }
3253
+ result
3254
+ end
3255
+ .,.,
3256
+
3257
+ module_eval(<<'.,.,', 'riml.y', 576)
3258
+ def _reduce_256(val, _values, result)
3259
+ result = make_node(val) { |v| Riml::SuperNode.new(v[2], true) }
3260
+ result
3261
+ end
3262
+ .,.,
3263
+
3264
+ module_eval(<<'.,.,', 'riml.y', 577)
3265
+ def _reduce_257(val, _values, result)
3266
+ result = make_node(val) { |_| Riml::SuperNode.new([], false) }
3267
+ result
3268
+ end
3269
+ .,.,
3270
+
3271
+ module_eval(<<'.,.,', 'riml.y', 581)
3272
+ def _reduce_258(val, _values, result)
3273
+ result = make_node(val) { |v| Riml::ExLiteralNode.new(v[0]) }
3274
+ result
3275
+ end
3276
+ .,.,
3277
+
3278
+ def _reduce_none(val, _values, result)
3279
+ val[0]
3280
+ end
3281
+
3282
+ end # class Parser
3283
+ end # module Riml