ridl 2.7.1 → 2.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,16 +1,15 @@
1
1
  #
2
2
  # DO NOT MODIFY!!!!
3
- # This file is automatically generated by Racc 1.4.9
4
- # from Racc grammer file "".
3
+ # This file is automatically generated by Racc 1.4.16
4
+ # from Racc grammar file "".
5
5
  #
6
6
 
7
7
  ###### racc/parser.rb begin
8
8
  unless $".index 'racc/parser.rb'
9
9
  $".push 'racc/parser.rb'
10
10
  self.class.module_eval(<<'...end racc/parser.rb/module_eval...', 'racc/parser.rb', 1)
11
- #
12
- # $Id: ad1fffef443194fdfa1052d2eee6850552f94313 $
13
- #
11
+ # frozen_string_literal: false
12
+ #--
14
13
  # Copyright (c) 1999-2006 Minero Aoki
15
14
  #
16
15
  # This program is free software.
@@ -19,10 +18,12 @@ self.class.module_eval(<<'...end racc/parser.rb/module_eval...', 'racc/parser.rb
19
18
  # As a special exception, when this code is copied by Racc
20
19
  # into a Racc output file, you may use that output file
21
20
  # without restriction.
22
- #
21
+ #++
22
+
23
+ # require 'racc/info'
23
24
 
24
25
  unless defined?(NotImplementedError)
25
- NotImplementedError = NotImplementError
26
+ NotImplementedError = NotImplementError # :nodoc:
26
27
  end
27
28
 
28
29
  module Racc
@@ -32,21 +33,180 @@ unless defined?(::ParseError)
32
33
  ParseError = Racc::ParseError
33
34
  end
34
35
 
36
+ # Racc is a LALR(1) parser generator.
37
+ # It is written in Ruby itself, and generates Ruby programs.
38
+ #
39
+ # == Command-line Reference
40
+ #
41
+ # racc [-o<var>filename</var>] [--output-file=<var>filename</var>]
42
+ # [-e<var>rubypath</var>] [--embedded=<var>rubypath</var>]
43
+ # [-v] [--verbose]
44
+ # [-O<var>filename</var>] [--log-file=<var>filename</var>]
45
+ # [-g] [--debug]
46
+ # [-E] [--embedded]
47
+ # [-l] [--no-line-convert]
48
+ # [-c] [--line-convert-all]
49
+ # [-a] [--no-omit-actions]
50
+ # [-C] [--check-only]
51
+ # [-S] [--output-status]
52
+ # [--version] [--copyright] [--help] <var>grammarfile</var>
53
+ #
54
+ # [+filename+]
55
+ # Racc grammar file. Any extension is permitted.
56
+ # [-o+outfile+, --output-file=+outfile+]
57
+ # A filename for output. default is <+filename+>.tab.rb
58
+ # [-O+filename+, --log-file=+filename+]
59
+ # Place logging output in file +filename+.
60
+ # Default log file name is <+filename+>.output.
61
+ # [-e+rubypath+, --executable=+rubypath+]
62
+ # output executable file(mode 755). where +path+ is the Ruby interpreter.
63
+ # [-v, --verbose]
64
+ # verbose mode. create +filename+.output file, like yacc's y.output file.
65
+ # [-g, --debug]
66
+ # add debug code to parser class. To display debuggin information,
67
+ # use this '-g' option and set @yydebug true in parser class.
68
+ # [-E, --embedded]
69
+ # Output parser which doesn't need runtime files (racc/parser.rb).
70
+ # [-C, --check-only]
71
+ # Check syntax of racc grammar file and quit.
72
+ # [-S, --output-status]
73
+ # Print messages time to time while compiling.
74
+ # [-l, --no-line-convert]
75
+ # turns off line number converting.
76
+ # [-c, --line-convert-all]
77
+ # Convert line number of actions, inner, header and footer.
78
+ # [-a, --no-omit-actions]
79
+ # Call all actions, even if an action is empty.
80
+ # [--version]
81
+ # print Racc version and quit.
82
+ # [--copyright]
83
+ # Print copyright and quit.
84
+ # [--help]
85
+ # Print usage and quit.
86
+ #
87
+ # == Generating Parser Using Racc
88
+ #
89
+ # To compile Racc grammar file, simply type:
90
+ #
91
+ # $ racc parse.y
92
+ #
93
+ # This creates Ruby script file "parse.tab.y". The -o option can change the output filename.
94
+ #
95
+ # == Writing A Racc Grammar File
96
+ #
97
+ # If you want your own parser, you have to write a grammar file.
98
+ # A grammar file contains the name of your parser class, grammar for the parser,
99
+ # user code, and anything else.
100
+ # When writing a grammar file, yacc's knowledge is helpful.
101
+ # If you have not used yacc before, Racc is not too difficult.
102
+ #
103
+ # Here's an example Racc grammar file.
104
+ #
105
+ # class Calcparser
106
+ # rule
107
+ # target: exp { print val[0] }
108
+ #
109
+ # exp: exp '+' exp
110
+ # | exp '*' exp
111
+ # | '(' exp ')'
112
+ # | NUMBER
113
+ # end
114
+ #
115
+ # Racc grammar files resemble yacc files.
116
+ # But (of course), this is Ruby code.
117
+ # yacc's $$ is the 'result', $0, $1... is
118
+ # an array called 'val', and $-1, $-2... is an array called '_values'.
119
+ #
120
+ # See the {Grammar File Reference}[rdoc-ref:lib/racc/rdoc/grammar.en.rdoc] for
121
+ # more information on grammar files.
122
+ #
123
+ # == Parser
124
+ #
125
+ # Then you must prepare the parse entry method. There are two types of
126
+ # parse methods in Racc, Racc::Parser#do_parse and Racc::Parser#yyparse
127
+ #
128
+ # Racc::Parser#do_parse is simple.
129
+ #
130
+ # It's yyparse() of yacc, and Racc::Parser#next_token is yylex().
131
+ # This method must returns an array like [TOKENSYMBOL, ITS_VALUE].
132
+ # EOF is [false, false].
133
+ # (TOKENSYMBOL is a Ruby symbol (taken from String#intern) by default.
134
+ # If you want to change this, see the grammar reference.
135
+ #
136
+ # Racc::Parser#yyparse is little complicated, but useful.
137
+ # It does not use Racc::Parser#next_token, instead it gets tokens from any iterator.
138
+ #
139
+ # For example, <code>yyparse(obj, :scan)</code> causes
140
+ # calling +obj#scan+, and you can return tokens by yielding them from +obj#scan+.
141
+ #
142
+ # == Debugging
143
+ #
144
+ # When debugging, "-v" or/and the "-g" option is helpful.
145
+ #
146
+ # "-v" creates verbose log file (.output).
147
+ # "-g" creates a "Verbose Parser".
148
+ # Verbose Parser prints the internal status when parsing.
149
+ # But it's _not_ automatic.
150
+ # You must use -g option and set +@yydebug+ to +true+ in order to get output.
151
+ # -g option only creates the verbose parser.
152
+ #
153
+ # === Racc reported syntax error.
154
+ #
155
+ # Isn't there too many "end"?
156
+ # grammar of racc file is changed in v0.10.
157
+ #
158
+ # Racc does not use '%' mark, while yacc uses huge number of '%' marks..
159
+ #
160
+ # === Racc reported "XXXX conflicts".
161
+ #
162
+ # Try "racc -v xxxx.y".
163
+ # It causes producing racc's internal log file, xxxx.output.
164
+ #
165
+ # === Generated parsers does not work correctly
166
+ #
167
+ # Try "racc -g xxxx.y".
168
+ # This command let racc generate "debugging parser".
169
+ # Then set @yydebug=true in your parser.
170
+ # It produces a working log of your parser.
171
+ #
172
+ # == Re-distributing Racc runtime
173
+ #
174
+ # A parser, which is created by Racc, requires the Racc runtime module;
175
+ # racc/parser.rb.
176
+ #
177
+ # Ruby 1.8.x comes with Racc runtime module,
178
+ # you need NOT distribute Racc runtime files.
179
+ #
180
+ # If you want to include the Racc runtime module with your parser.
181
+ # This can be done by using '-E' option:
182
+ #
183
+ # $ racc -E -omyparser.rb myparser.y
184
+ #
185
+ # This command creates myparser.rb which `includes' Racc runtime.
186
+ # Only you must do is to distribute your parser file (myparser.rb).
187
+ #
188
+ # Note: parser.rb is ruby license, but your parser is not.
189
+ # Your own parser is completely yours.
35
190
  module Racc
36
191
 
37
192
  unless defined?(Racc_No_Extentions)
38
- Racc_No_Extentions = false
193
+ Racc_No_Extentions = false # :nodoc:
39
194
  end
40
195
 
41
196
  class Parser
42
197
 
43
- Racc_Runtime_Version = '1.4.6' unless defined?(Racc_Runtime_Version)
44
- Racc_Runtime_Revision = '$Id: ad1fffef443194fdfa1052d2eee6850552f94313 $' unless defined?(Racc_Runtime_Revision)
198
+ Racc_Runtime_Version = '1.4.16' unless defined?(Racc_Runtime_Version)
199
+ Racc_Runtime_Revision = '$Id: 7adc21ee7a5690f10b7ff399b8af4e2717b9d94c $' unless defined?(Racc_Runtime_Revision)
45
200
 
46
- Racc_Runtime_Core_Version_R = '1.4.6' unless defined?(Racc_Runtime_Core_Version_R)
47
- Racc_Runtime_Core_Revision_R = '$Id: ad1fffef443194fdfa1052d2eee6850552f94313 $'.split[1] unless defined?(Racc_Runtime_Core_Revision_R)
201
+ Racc_Runtime_Core_Version_R = '1.4.16' unless defined?(Racc_Runtime_Core_Version_R)
202
+ Racc_Runtime_Core_Revision_R = '$Id: 7adc21ee7a5690f10b7ff399b8af4e2717b9d94c $'.split[1] unless defined?(Racc_Runtime_Core_Revision_R)
48
203
  begin
49
- require 'racc/cparse'
204
+ if Object.const_defined?(:RUBY_ENGINE) and RUBY_ENGINE == 'jruby'
205
+ require 'racc/cparse-jruby.jar'
206
+ com.headius.racc.Cparse.new.load(JRuby.runtime, false)
207
+ else
208
+ require 'racc/cparse'
209
+ end
50
210
  # Racc_Runtime_Core_Version_C = (defined in extention)
51
211
  Racc_Runtime_Core_Revision_C = Racc_Runtime_Core_Id_C.split[2] unless defined?(Racc_Runtime_Core_Revision_C)
52
212
  unless new.respond_to?(:_racc_do_parse_c, true)
@@ -56,25 +216,25 @@ module Racc
56
216
  raise LoadError, 'selecting ruby version of racc runtime core'
57
217
  end
58
218
 
59
- Racc_Main_Parsing_Routine = :_racc_do_parse_c unless defined?(Racc_Main_Parsing_Routine)
60
- Racc_YY_Parse_Method = :_racc_yyparse_c unless defined?(Racc_YY_Parse_Method)
61
- Racc_Runtime_Core_Version = Racc_Runtime_Core_Version_C unless defined?(Racc_Runtime_Core_Version)
62
- Racc_Runtime_Core_Revision = Racc_Runtime_Core_Revision_C unless defined?(Racc_Runtime_Core_Revision)
63
- Racc_Runtime_Type = 'c' unless defined?(Racc_Runtime_Type)
219
+ Racc_Main_Parsing_Routine = :_racc_do_parse_c unless defined?(Racc_Main_Parsing_Routine) # :nodoc:
220
+ Racc_YY_Parse_Method = :_racc_yyparse_c unless defined?(Racc_YY_Parse_Method) # :nodoc:
221
+ Racc_Runtime_Core_Version = Racc_Runtime_Core_Version_C unless defined?(Racc_Runtime_Core_Version) # :nodoc:
222
+ Racc_Runtime_Core_Revision = Racc_Runtime_Core_Revision_C unless defined?(Racc_Runtime_Core_Revision) # :nodoc:
223
+ Racc_Runtime_Type = 'c' unless defined?(Racc_Runtime_Type) # :nodoc:
64
224
  rescue LoadError
65
- Racc_Main_Parsing_Routine = :_racc_do_parse_rb unless defined?(Racc_Main_Parsing_Routine)
66
- Racc_YY_Parse_Method = :_racc_yyparse_rb unless defined?(Racc_YY_Parse_Method)
67
- Racc_Runtime_Core_Version = Racc_Runtime_Core_Version_R unless defined?(Racc_Runtime_Core_Version)
68
- Racc_Runtime_Core_Revision = Racc_Runtime_Core_Revision_R unless defined?(Racc_Runtime_Core_Revision)
69
- Racc_Runtime_Type = 'ruby' unless defined?(Racc_Runtime_Type)
225
+ puts $!
226
+ puts $!.backtrace
227
+ Racc_Main_Parsing_Routine = :_racc_do_parse_rb
228
+ Racc_YY_Parse_Method = :_racc_yyparse_rb
229
+ Racc_Runtime_Core_Version = Racc_Runtime_Core_Version_R
230
+ Racc_Runtime_Core_Revision = Racc_Runtime_Core_Revision_R
231
+ Racc_Runtime_Type = 'ruby'
70
232
  end
71
233
 
72
- def Parser.racc_runtime_type
234
+ def Parser.racc_runtime_type # :nodoc:
73
235
  Racc_Runtime_Type
74
236
  end
75
237
 
76
- private
77
-
78
238
  def _racc_setup
79
239
  @yydebug = false unless self.class::Racc_debug_parser
80
240
  @yydebug = false unless defined?(@yydebug)
@@ -101,14 +261,35 @@ module Racc
101
261
  @racc_error_status = 0
102
262
  end
103
263
 
104
- ###
105
- ### do_parse
106
- ###
107
-
264
+ # The entry point of the parser. This method is used with #next_token.
265
+ # If Racc wants to get token (and its value), calls next_token.
266
+ #
267
+ # Example:
268
+ # def parse
269
+ # @q = [[1,1],
270
+ # [2,2],
271
+ # [3,3],
272
+ # [false, '$']]
273
+ # do_parse
274
+ # end
275
+ #
276
+ # def next_token
277
+ # @q.shift
278
+ # end
279
+ class_eval %{
108
280
  def do_parse
109
- __send__(Racc_Main_Parsing_Routine, _racc_setup(), false)
281
+ #{Racc_Main_Parsing_Routine}(_racc_setup(), false)
110
282
  end
283
+ }
111
284
 
285
+ # The method to fetch next token.
286
+ # If you use #do_parse method, you must implement #next_token.
287
+ #
288
+ # The format of return value is [TOKEN_SYMBOL, VALUE].
289
+ # +token-symbol+ is represented by Ruby's symbol by default, e.g. :IDENT
290
+ # for 'IDENT'. ";" (String) for ';'.
291
+ #
292
+ # The final symbol (End of file) must be false.
112
293
  def next_token
113
294
  raise NotImplementedError, "#{self.class}\#next_token is not defined"
114
295
  end
@@ -152,13 +333,16 @@ module Racc
152
333
  }
153
334
  end
154
335
 
155
- ###
156
- ### yyparse
157
- ###
158
-
336
+ # Another entry point for the parser.
337
+ # If you use this method, you must implement RECEIVER#METHOD_ID method.
338
+ #
339
+ # RECEIVER#METHOD_ID is a method to get next token.
340
+ # It must 'yield' the token, which format is [TOKEN-SYMBOL, VALUE].
341
+ class_eval %{
159
342
  def yyparse(recv, mid)
160
- __send__(Racc_YY_Parse_Method, recv, mid, _racc_setup(), true)
343
+ #{Racc_YY_Parse_Method}(recv, mid, _racc_setup(), true)
161
344
  end
345
+ }
162
346
 
163
347
  def _racc_yyparse_rb(recv, mid, arg, c_debug)
164
348
  action_table, action_check, action_default, action_pointer,
@@ -225,7 +409,7 @@ module Racc
225
409
  # shift
226
410
  #
227
411
  if @racc_error_status > 0
228
- @racc_error_status -= 1 unless @racc_t == 1 # error token
412
+ @racc_error_status -= 1 unless @racc_t <= 1 # error token or EOF
229
413
  end
230
414
  @racc_vstack.push @racc_val
231
415
  @racc_state.push act
@@ -274,6 +458,8 @@ module Racc
274
458
  end
275
459
  when 3
276
460
  if @racc_t == 0 # is $
461
+ # We're at EOF, and another error occurred immediately after
462
+ # attempting auto-recovery
277
463
  throw :racc_end_parse, nil
278
464
  end
279
465
  @racc_read_next = true
@@ -350,27 +536,43 @@ module Racc
350
536
  goto_default[k1]
351
537
  end
352
538
 
539
+ # This method is called when a parse error is found.
540
+ #
541
+ # ERROR_TOKEN_ID is an internal ID of token which caused error.
542
+ # You can get string representation of this ID by calling
543
+ # #token_to_str.
544
+ #
545
+ # ERROR_VALUE is a value of error token.
546
+ #
547
+ # value_stack is a stack of symbol values.
548
+ # DO NOT MODIFY this object.
549
+ #
550
+ # This method raises ParseError by default.
551
+ #
552
+ # If this method returns, parsers enter "error recovering mode".
353
553
  def on_error(t, val, vstack)
354
554
  raise ParseError, sprintf("\nparse error on value %s (%s)",
355
555
  val.inspect, token_to_str(t) || '?')
356
556
  end
357
557
 
558
+ # Enter error recovering mode.
559
+ # This method does not call #on_error.
358
560
  def yyerror
359
561
  throw :racc_jump, 1
360
562
  end
361
563
 
564
+ # Exit parser.
565
+ # Return value is Symbol_Value_Stack[0].
362
566
  def yyaccept
363
567
  throw :racc_jump, 2
364
568
  end
365
569
 
570
+ # Leave error recovering mode.
366
571
  def yyerrok
367
572
  @racc_error_status = 0
368
573
  end
369
574
 
370
- #
371
- # for debugging output
372
- #
373
-
575
+ # For debugging output
374
576
  def racc_read_token(t, tok, val)
375
577
  @racc_debug_out.print 'read '
376
578
  @racc_debug_out.print tok.inspect, '(', racc_token2str(t), ') '
@@ -393,7 +595,6 @@ module Racc
393
595
  toks.each {|t| out.print ' ', racc_token2str(t) }
394
596
  end
395
597
  out.puts " --> #{racc_token2str(sim)}"
396
-
397
598
  racc_print_stacks tstack, vstack
398
599
  @racc_debug_out.puts
399
600
  end
@@ -437,6 +638,7 @@ module Racc
437
638
  raise "[Racc Bug] can't convert token #{tok} to string"
438
639
  end
439
640
 
641
+ # Convert internal ID of token symbol to the string.
440
642
  def token_to_str(t)
441
643
  self.class::Racc_token_to_s_table[t]
442
644
  end
@@ -455,7 +657,7 @@ module IDL
455
657
 
456
658
  class Parser < Racc::Parser
457
659
 
458
- module_eval(<<'...end parser.ry/module_eval...', 'parser.ry', 833)
660
+ module_eval(<<'...end parser.ry/module_eval...', 'parser.ry', 830)
459
661
 
460
662
  def parse_type_declarator(type_spec, declarators)
461
663
  ret = Array.new
@@ -553,102 +755,101 @@ end
553
755
  ##### State transition tables begin ###
554
756
 
555
757
  clist = [
556
- '-200,442,537,122,541,610,122,291,292,122,-85,65,69,428,71,183,456,541',
557
- '701,535,122,319,536,320,492,703,701,122,315,291,292,249,304,305,306',
558
- '307,308,94,389,390,94,291,292,94,291,292,672,399,436,122,307,308,542',
559
- '543,94,122,700,65,69,73,71,94,55,702,727,542,543,421,261,262,122,420',
560
- '136,137,138,144,148,149,150,151,152,179,180,94,675,180,153,154,180,94',
561
- '261,262,701,53,-89,54,611,612,199,180,184,185,261,262,94,261,262,359',
562
- '360,122,617,122,122,-87,430,249,56,62,136,137,138,144,148,149,150,151',
563
- '152,179,180,431,728,122,153,154,249,432,261,262,266,268,477,198,122',
564
- '94,672,94,94,185,616,237,65,69,73,71,239,55,122,122,196,122,122,122',
565
- '233,232,319,94,320,234,238,240,241,242,243,244,246,247,94,291,292,326',
566
- '327,281,671,307,308,419,53,489,54,122,94,94,464,94,94,94,200,65,69,573',
567
- '71,183,122,122,369,370,483,122,122,56,62,136,137,138,144,148,149,150',
568
- '151,152,179,180,122,94,195,153,154,389,390,261,262,266,268,417,444,122',
569
- '94,94,261,262,185,94,94,65,69,73,71,506,55,122,122,122,507,445,122,122',
570
- '94,122,136,137,138,144,148,149,150,151,152,179,180,94,446,-183,153,154',
571
- '281,447,624,282,623,53,448,54,122,94,94,94,184,185,94,94,449,94,319',
572
- '71,320,122,122,122,122,450,122,122,56,62,136,137,138,144,148,149,150',
573
- '151,152,179,180,122,94,122,153,154,118,117,261,262,266,268,469,122,122',
574
- '94,94,94,94,185,94,94,65,69,73,71,414,55,122,122,92,122,-20,-140,-187',
575
- '94,619,94,623,499,144,148,149,412,151,-196,203,94,94,387,388,326,327',
576
- '281,293,319,294,320,53,508,54,122,94,94,94,94,319,408,320,65,69,193',
577
- '71,183,283,458,284,285,391,392,393,56,62,136,137,138,144,148,149,150',
578
- '151,152,179,180,319,94,320,153,154,359,360,261,262,266,268,339,338,122',
579
- '102,104,103,459,185,336,337,65,69,73,71,460,55,391,392,393,391,392,393',
580
- '389,390,461,136,137,138,144,148,149,150,151,152,179,180,94,387,388,153',
581
- '154,382,383,732,701,407,53,320,54,122,547,548,406,184,185,379,350,65',
582
- '69,405,71,183,571,570,191,122,471,472,190,56,62,136,137,138,144,148',
583
- '149,150,151,152,179,180,189,94,422,153,154,404,188,261,262,266,268,478',
584
- '479,122,187,403,483,94,185,486,402,65,69,120,71,183,207,208,209,210',
585
- '211,212,213,214,215,216,136,137,138,144,148,149,150,151,152,179,180',
586
- '94,119,346,153,154,136,137,138,144,148,149,150,151,152,179,180,401,184',
587
- '185,153,154,122,116,115,498,114,204,113,510,65,69,386,71,183,185,136',
588
- '137,138,144,148,149,150,151,152,179,180,513,514,112,153,154,111,110',
589
- '109,108,94,107,106,105,385,101,100,526,184,185,527,99,529,384,98,544',
590
- '545,122,546,381,527,122,549,550,551,97,553,554,527,65,69,73,71,555,55',
591
- '136,137,138,144,148,149,150,151,152,179,180,556,359,360,153,154,94,122',
592
- '557,558,94,559,237,326,327,281,378,239,184,185,53,561,54,527,346,233',
593
- '232,346,96,565,234,238,240,241,242,243,244,246,247,566,346,94,486,56',
594
- '62,136,137,138,144,148,149,150,151,152,179,180,95,377,572,153,154,376',
595
- '122,261,262,266,268,574,346,576,65,69,73,71,185,55,136,137,138,144,148',
596
- '149,150,151,152,179,180,337,577,364,153,154,375,381,385,386,94,374,373',
597
- '372,371,281,368,273,282,185,53,529,54,91,536,614,615,122,90,89,364,207',
598
- '208,209,210,211,212,213,214,215,216,361,-347,56,62,136,137,138,144,148',
599
- '149,150,151,152,179,180,274,-339,351,153,154,94,631,261,262,266,268',
600
- '237,350,561,349,483,239,122,185,483,634,88,87,637,233,232,86,640,641',
601
- '234,238,240,241,242,243,244,246,247,642,643,136,137,138,144,148,149',
602
- '150,151,152,179,180,94,644,645,153,154,646,647,648,649,650,651,652,122',
603
- '653,654,348,535,184,185,657,65,69,612,71,183,611,529,662,122,663,346',
604
- '667,85,529,535,136,137,138,144,148,149,150,151,152,179,180,94,84,83',
605
- '153,154,535,82,676,677,678,679,680,122,81,696,529,94,657,185,341,340',
606
- '80,79,535,183,623,529,535,122,335,334,333,78,713,714,136,137,138,144',
607
- '148,149,150,151,152,179,180,94,715,716,153,154,136,137,138,144,148,149',
608
- '150,151,152,179,180,94,184,185,153,154,291,292,717,304,305,306,307,308',
609
- '718,719,720,721,722,185,136,137,138,144,148,149,150,151,152,179,180',
610
- '723,724,725,153,154,136,137,138,144,148,149,150,151,152,179,180,203',
611
- '184,185,153,154,77,122,76,275,730,268,731,329,328,65,69,73,71,185,55',
612
- '261,262,734,,,,,,,,,,,,,,,,,,94,,,326,327,281,,,,,53,,54,,,,,122,,,',
613
- ',,,,,,,,183,,,,56,62,136,137,138,144,148,149,150,151,152,179,180,,,',
614
- '153,154,94,,261,262,266,268,237,,,,,239,,185,122,,,,,233,232,,,,234',
615
- '238,240,241,242,243,244,246,247,,,136,137,138,144,148,149,150,151,152',
616
- '179,180,122,,94,153,154,,,,65,69,,71,183,,,,122,184,185,,,,,,,,,,,,',
617
- ',,,94,,,136,137,138,144,148,149,150,151,152,,,,,94,153,154,,,,,,,,,',
618
- ',,,155,,,,136,137,138,144,148,149,150,151,152,179,180,,,,153,154,136',
619
- '137,138,144,148,149,150,151,152,,,,184,185,153,154,,,74,,,,,19,,,,,155',
620
- '32,51,45,65,69,73,71,,55,,28,29,31,,34,,,,36,39,42,,,,,,,,,,47,,,,,',
621
- ',,,53,,54,,,,,,,,,,,,122,,,,638,579,,,,56,62,32,51,45,65,69,73,71,,55',
622
- '597,28,29,31,,34,,,,36,39,42,,,94,,,,,,237,47,,,,239,,,,,53,,54,233',
623
- '232,,,,234,238,240,241,242,243,244,246,247,,366,19,,,,56,62,32,51,45',
624
- '65,69,73,71,,55,,28,29,31,,34,,,,36,39,42,,,,,,,,,,47,,,,,,,,,53,,54',
625
- ',,,,,,,,,,,,,,,711,579,,,,56,62,32,51,45,65,69,73,71,,55,,28,29,31,',
626
- '34,,,,36,39,42,,,,,,,,,,47,,,,,,,,,53,579,54,,,,,32,51,45,65,69,73,71',
627
- ',55,,28,29,31,,34,,56,62,36,39,42,,,,,,,,,,47,,,,,,,,,53,19,54,,,,,32',
628
- '51,45,65,69,73,71,,55,,28,29,31,,34,,56,62,36,39,42,,,,,,,,,,47,,,,',
629
- ',,,,53,19,54,,,,,32,51,45,65,69,73,71,,55,,28,29,31,,34,,56,62,36,39',
630
- '42,,,,,,,,,,47,,,,,122,,,,53,579,54,,,,,32,51,45,65,69,73,71,,55,597',
631
- '28,29,31,,34,,56,62,36,39,42,,,94,122,,,,,237,47,,,,239,,,,,53,,54,233',
632
- '232,,,,234,238,240,241,242,243,244,246,247,,122,94,,,,56,62,237,,,,',
633
- '239,,,,,,,,233,232,,,,234,238,240,241,242,243,244,246,247,94,122,,,',
634
- ',237,,,,,239,,,,,,,,233,232,,,,234,238,240,241,242,243,244,246,247,',
635
- '122,94,,,,,,237,,,,,239,,,,,,,,233,232,,,,234,238,240,241,242,243,244',
636
- '246,247,94,122,,,,,237,,,,,239,,,,,,,,233,232,,,,234,238,240,241,242',
637
- '243,244,246,247,,122,94,,,,,,237,,,,,239,,,,,,,,233,232,,,,234,238,240',
638
- '241,242,243,244,246,247,94,122,,,,,237,,,,,239,,,,,,,,233,232,,,,234',
639
- '238,240,241,242,243,244,246,247,,122,94,,,,,,237,,,,,239,,,,,,,,233',
640
- '232,,,,234,238,240,241,242,243,244,246,247,94,122,,,,,237,,,,,239,,',
641
- ',,,,,233,232,,,,234,238,240,241,242,243,244,246,247,,122,94,,,,,,237',
642
- ',,,,239,,,,,,,,233,232,,,,234,238,240,241,242,243,244,246,247,94,122',
643
- ',,,,237,,,,,239,,,,,,,,233,232,,,,234,238,240,241,242,243,244,246,247',
644
- ',122,94,,,,,,237,,,,,239,,,,,,,,233,232,,,,234,238,240,241,242,243,244',
645
- '246,247,94,122,,,,,237,,,,,239,,122,,,,,,233,232,,,,234,238,240,241',
646
- '242,243,244,246,247,,,94,,,,,,237,,,,,239,94,122,,,,,237,233,232,,,239',
647
- '234,238,240,241,242,243,244,246,247,,,,,238,240,241,242,243,244,246',
648
- '247,,122,94,,,,,,237,,,,,239,,,,,,,,233,232,,,,234,238,240,241,242,243',
649
- '244,246,247,94,,,,,,237,,,,,239,,,,,,,,233,232,,,,234,238,240,241,242',
650
- '243,244,246,247' ]
651
- racc_action_table = arr = ::Array.new(2201, nil)
758
+ '-199,428,537,122,541,492,610,290,291,122,617,65,69,672,71,183,92,-139',
759
+ '541,506,122,318,122,319,507,672,701,122,573,290,291,122,703,701,318',
760
+ '483,319,94,292,282,293,283,284,94,76,464,701,399,616,122,94,671,542',
761
+ '543,94,436,94,65,69,73,71,94,55,675,700,94,542,543,260,261,702,727,136',
762
+ '137,138,144,148,149,150,151,152,179,180,94,728,77,153,154,358,359,260',
763
+ '261,-84,53,489,54,122,611,612,180,184,185,118,117,65,69,180,71,183,122',
764
+ '180,122,122,248,122,122,56,62,136,137,138,144,148,149,150,151,152,179',
765
+ '180,122,94,535,153,154,536,-186,260,261,265,267,417,-182,122,94,122',
766
+ '94,94,185,94,94,65,69,73,71,78,55,318,318,319,319,79,456,318,94,319',
767
+ '136,137,138,144,148,149,150,151,152,179,180,94,80,94,153,154,280,335',
768
+ '336,281,-86,53,81,54,290,291,290,291,184,185,306,307,306,307,338,337',
769
+ '-195,122,122,122,122,248,122,122,56,62,136,137,138,144,148,149,150,151',
770
+ '152,179,180,318,122,319,153,154,442,82,260,261,265,267,469,71,122,94',
771
+ '94,94,94,185,94,94,65,69,73,71,-88,55,122,260,261,260,261,122,290,291',
772
+ '94,303,304,305,306,307,619,122,623,122,122,248,94,358,359,325,326,280',
773
+ '102,104,103,624,53,623,54,83,94,368,369,122,122,94,390,391,392,378,349',
774
+ '499,144,148,149,94,151,94,94,56,62,136,137,138,144,148,149,150,151,152',
775
+ '179,180,84,260,261,153,154,94,94,260,261,265,267,477,236,122,122,122',
776
+ '85,238,185,122,122,65,69,73,71,86,55,122,122,122,122,237,239,240,241',
777
+ '242,243,245,246,122,122,122,122,122,390,391,392,94,94,94,325,326,280',
778
+ '94,94,381,382,53,508,54,122,94,94,94,94,390,391,392,65,69,87,71,183',
779
+ '94,94,94,94,94,386,387,56,62,136,137,138,144,148,149,150,151,152,179',
780
+ '180,88,94,89,153,154,388,389,260,261,265,267,547,548,122,571,570,386',
781
+ '387,185,388,389,65,69,90,71,183,207,208,209,210,211,212,213,214,215',
782
+ '216,136,137,138,144,148,149,150,151,152,179,180,94,388,389,153,154,290',
783
+ '291,91,303,304,305,306,307,732,701,95,96,184,185,97,122,98,99,100,207',
784
+ '208,209,210,211,212,213,214,215,216,101,136,137,138,144,148,149,150',
785
+ '151,152,179,180,105,106,107,153,154,108,109,122,94,110,111,112,113,114',
786
+ '236,115,116,184,185,238,260,261,119,120,187,188,189,232,231,190,191',
787
+ '193,233,237,239,240,241,242,243,245,246,94,195,136,137,138,144,148,149',
788
+ '150,151,152,179,180,122,196,198,153,154,199,200,-20,65,69,73,71,203',
789
+ '55,204,272,273,184,185,274,314,327,136,137,138,144,148,149,150,151,152',
790
+ '179,180,328,94,203,153,154,332,333,334,339,340,345,53,347,54,348,349',
791
+ '350,-338,185,-346,360,363,367,370,371,372,373,374,375,376,377,380,383',
792
+ '384,56,62,136,137,138,144,148,149,150,151,152,179,180,385,122,401,153',
793
+ '154,402,122,260,261,265,267,403,404,405,65,69,73,71,185,55,406,407,408',
794
+ '412,414,419,420,421,422,430,431,432,444,445,446,94,447,122,448,449,94',
795
+ '236,450,458,459,280,238,460,281,461,53,319,54,471,232,231,472,478,479',
796
+ '233,237,239,240,241,242,243,245,246,483,486,345,94,498,56,62,136,137',
797
+ '138,144,148,149,150,151,152,179,180,510,513,122,153,154,514,122,260',
798
+ '261,265,267,526,527,529,65,69,73,71,185,55,136,137,138,144,148,149,150',
799
+ '151,152,179,180,544,545,546,153,154,94,122,527,549,94,267,236,325,326',
800
+ '280,550,238,551,185,53,553,54,554,527,232,231,555,556,557,233,237,239',
801
+ '240,241,242,243,245,246,558,559,94,561,56,62,136,137,138,144,148,149',
802
+ '150,151,152,179,180,527,345,345,153,154,565,122,260,261,265,267,566',
803
+ '345,486,65,69,73,71,185,55,136,137,138,144,148,149,150,151,152,179,180',
804
+ '572,574,345,153,154,576,336,577,363,94,380,384,325,326,280,385,529,536',
805
+ '185,53,614,54,122,615,631,561,483,483,634,637,65,69,640,71,183,641,642',
806
+ '643,644,645,646,647,56,62,136,137,138,144,148,149,150,151,152,179,180',
807
+ '648,94,649,153,154,650,651,260,261,265,267,652,653,122,654,535,657,612',
808
+ '185,611,529,65,69,662,71,183,663,667,529,535,535,676,677,678,679,680',
809
+ '136,137,138,144,148,149,150,151,152,179,180,94,696,529,153,154,657,535',
810
+ '623,529,535,713,714,122,715,122,716,717,184,185,718,65,69,719,71,183',
811
+ '720,721,722,723,724,725,730,731,734,,136,137,138,144,148,149,150,151',
812
+ '152,179,180,94,,94,153,154,,,,236,,,,122,238,,,,184,185,,,232,231,,183',
813
+ ',233,237,239,240,241,242,243,245,246,136,137,138,144,148,149,150,151',
814
+ '152,179,180,94,,,153,154,,,,,,,,122,,,,,184,185,,65,69,,71,183,,,,,',
815
+ ',,,,,136,137,138,144,148,149,150,151,152,179,180,94,,,153,154,,,,,,',
816
+ ',122,,,,,184,185,,,,,,183,,,,122,,,,,,,136,137,138,144,148,149,150,151',
817
+ '152,179,180,94,358,359,153,154,,236,,,,,238,122,,,,94,184,185,232,231',
818
+ ',,,233,237,239,240,241,242,243,245,246,,,136,137,138,144,148,149,150',
819
+ '151,152,179,180,94,,,153,154,136,137,138,144,148,149,150,151,152,179',
820
+ '180,,184,185,153,154,122,,,,,,,,,,,,,185,136,137,138,144,148,149,150',
821
+ '151,152,179,180,,,,153,154,122,,,,94,,,74,,,,,19,185,,,,,32,51,45,65',
822
+ '69,73,71,,55,,28,29,31,,34,,94,,36,39,42,136,137,138,144,148,149,150',
823
+ '151,152,47,,,,,153,154,,,53,,54,,,,,,,,155,,136,137,138,144,148,149',
824
+ '150,151,152,,,56,62,,153,154,,,122,,,,365,19,,,,,155,32,51,45,65,69',
825
+ '73,71,,55,,28,29,31,,34,,,,36,39,42,,,94,,,,,,236,47,,,,238,,,,,53,',
826
+ '54,232,231,,,,233,237,239,240,241,242,243,245,246,,638,579,,,,56,62',
827
+ '32,51,45,65,69,73,71,,55,597,28,29,31,,34,,,,36,39,42,,,,,,,,,,47,,',
828
+ ',,,,,,53,,54,,,,,,,,,,,,,,,,711,579,,,,56,62,32,51,45,65,69,73,71,,55',
829
+ ',28,29,31,,34,,,,36,39,42,,,,,,,,,,47,,,,,,,,,53,19,54,,,,,32,51,45',
830
+ '65,69,73,71,,55,,28,29,31,,34,,56,62,36,39,42,,,,,,,,,,47,,,,,,,,,53',
831
+ '19,54,,,,,32,51,45,65,69,73,71,,55,,28,29,31,,34,,56,62,36,39,42,,,',
832
+ ',,,,,,47,,,,,,,,,53,579,54,,,,,32,51,45,65,69,73,71,,55,597,28,29,31',
833
+ ',34,,56,62,36,39,42,,,,,,,,,,47,,,,,122,,,,53,579,54,,,,,32,51,45,65',
834
+ '69,73,71,,55,,28,29,31,,34,,56,62,36,39,42,,,94,122,,,,,236,47,,,,238',
835
+ ',,,,53,,54,232,231,,,,233,237,239,240,241,242,243,245,246,,122,94,,',
836
+ ',56,62,236,,,,,238,,,,,,,,232,231,,,,233,237,239,240,241,242,243,245',
837
+ '246,94,122,,,,,236,,,,,238,,,,,,,,232,231,,,,233,237,239,240,241,242',
838
+ '243,245,246,,122,94,,,,,,236,,,,,238,,,,,,,,232,231,,,,233,237,239,240',
839
+ '241,242,243,245,246,94,122,,,,,236,,,,,238,,,,,,,,232,231,,,,233,237',
840
+ '239,240,241,242,243,245,246,,122,94,,,,,,236,,,,,238,,,,,,,,232,231',
841
+ ',,,233,237,239,240,241,242,243,245,246,94,122,,,,,236,,,,,238,,,,,,',
842
+ ',232,231,,,,233,237,239,240,241,242,243,245,246,,122,94,,,,,,236,,,',
843
+ ',238,,,,,,,,232,231,,,,233,237,239,240,241,242,243,245,246,94,122,,',
844
+ ',,236,,,,,238,,,,,,,,232,231,,,,233,237,239,240,241,242,243,245,246',
845
+ ',122,94,,,,,,236,,,,,238,,,,,,,,232,231,,,,233,237,239,240,241,242,243',
846
+ '245,246,94,122,,,,,236,,,,,238,,,,,,,,232,231,,,,233,237,239,240,241',
847
+ '242,243,245,246,,122,94,,,,,,236,,,,,238,,,,,,,,232,231,,,,233,237,239',
848
+ '240,241,242,243,245,246,94,122,,,,,236,,,,,238,,,,,,,,232,231,,,,233',
849
+ '237,239,240,241,242,243,245,246,,122,94,,,,,,236,,,,,238,,,,,,,,232',
850
+ '231,,,,233,237,239,240,241,242,243,245,246,94,,,,,,236,,,,,238,,,,,',
851
+ ',,232,231,,,,233,237,239,240,241,242,243,245,246' ]
852
+ racc_action_table = arr = ::Array.new(2163, nil)
652
853
  idx = 0
653
854
  clist.each do |str|
654
855
  str.split(',', -1).each do |i|
@@ -658,103 +859,102 @@ clist = [
658
859
  end
659
860
 
660
861
  clist = [
661
- '119,295,412,119,412,530,291,109,109,436,96,119,119,286,119,119,309,617',
662
- '664,410,292,119,410,119,355,666,698,464,114,295,295,96,295,295,295,295',
663
- '295,119,519,519,291,286,286,436,309,309,625,252,292,252,309,309,412',
664
- '412,292,285,664,252,252,252,252,464,252,666,698,617,617,281,109,109',
665
- '731,280,119,119,119,119,119,119,119,119,119,119,119,252,625,291,119',
666
- '119,436,285,295,295,699,252,98,252,530,530,73,292,119,119,286,286,731',
667
- '309,309,355,355,341,538,293,294,97,288,98,252,252,252,252,252,252,252',
668
- '252,252,252,252,252,252,289,699,701,252,252,97,290,252,252,252,252,332',
669
- '72,332,341,620,293,294,252,538,341,332,332,332,332,341,332,319,696,71',
670
- '678,677,676,341,341,328,701,328,341,341,341,341,341,341,341,341,341',
671
- '332,113,113,332,332,332,620,113,113,279,332,352,332,352,319,696,319',
672
- '678,677,676,74,352,352,491,352,352,304,305,205,205,491,663,662,332,332',
673
- '332,332,332,332,332,332,332,332,332,332,332,614,352,70,332,332,520,520',
674
- '332,332,332,332,276,297,276,304,305,113,113,332,663,662,276,276,276',
675
- '276,362,276,597,284,554,362,298,550,549,614,548,352,352,352,352,352',
676
- '352,352,352,352,352,352,276,299,274,352,352,276,300,546,276,546,276',
677
- '301,276,361,597,284,554,352,352,550,549,302,548,274,361,274,547,306',
678
- '307,308,303,527,315,276,276,276,276,276,276,276,276,276,276,276,276',
679
- '276,283,361,320,276,276,47,47,276,276,276,276,321,54,321,547,306,307',
680
- '308,276,527,315,321,321,321,321,265,321,53,249,19,561,92,111,115,283',
681
- '545,320,545,361,361,361,361,263,361,275,93,54,321,518,518,321,321,321',
682
- '111,115,111,115,321,365,321,365,53,249,19,561,275,261,275,365,365,68',
683
- '365,365,108,311,108,108,228,228,228,321,321,321,321,321,321,321,321',
684
- '321,321,321,321,321,329,365,329,321,321,191,191,321,321,321,321,148',
685
- '148,99,29,29,29,312,321,138,138,99,99,99,99,313,99,522,522,522,521,521',
686
- '521,227,227,314,365,365,365,365,365,365,365,365,365,365,365,99,226,226',
687
- '365,365,218,218,726,726,260,99,317,99,189,423,423,259,365,365,215,215',
688
- '189,189,258,189,189,487,487,67,622,324,325,66,99,99,99,99,99,99,99,99',
689
- '99,99,99,99,99,64,189,282,99,99,257,63,99,99,99,99,335,339,56,62,256',
690
- '342,622,99,346,255,56,56,52,56,56,370,370,370,370,370,370,370,370,370',
691
- '370,189,189,189,189,189,189,189,189,189,189,189,56,51,354,189,189,622',
692
- '622,622,622,622,622,622,622,622,622,622,254,189,189,622,622,357,46,45',
693
- '360,42,94,41,369,357,357,225,357,357,622,56,56,56,56,56,56,56,56,56',
694
- '56,56,380,382,40,56,56,39,36,35,34,357,33,31,30,224,28,27,395,56,56',
695
- '396,26,409,223,25,413,421,351,422,217,425,120,426,427,433,24,437,438',
696
- '440,120,120,120,120,451,120,357,357,357,357,357,357,357,357,357,357',
697
- '357,452,357,357,357,357,351,540,453,454,120,455,351,120,120,120,214',
698
- '351,357,357,120,465,120,468,473,351,351,474,23,481,351,351,351,351,351',
699
- '351,351,351,351,482,483,540,484,120,120,120,120,120,120,120,120,120',
700
- '120,120,120,120,20,213,488,120,120,212,107,120,120,120,120,494,496,497',
701
- '107,107,107,107,120,107,540,540,540,540,540,540,540,540,540,540,540',
702
- '499,500,507,540,540,211,512,516,517,107,210,209,208,207,107,203,100',
703
- '107,540,107,528,107,18,533,535,536,95,17,16,195,95,95,95,95,95,95,95',
704
- '95,95,95,193,190,107,107,107,107,107,107,107,107,107,107,107,107,107',
705
- '103,188,184,107,107,95,552,107,107,107,107,95,183,560,182,562,95,408',
706
- '107,563,569,15,14,579,95,95,13,582,583,95,95,95,95,95,95,95,95,95,584',
707
- '585,95,95,95,95,95,95,95,95,95,95,95,408,586,587,95,95,588,589,590,591',
708
- '592,593,594,326,595,596,181,600,95,95,601,326,326,608,326,326,609,610',
709
- '611,262,612,157,615,12,618,619,408,408,408,408,408,408,408,408,408,408',
710
- '408,326,11,10,408,408,624,9,626,627,628,635,636,350,8,655,657,262,660',
711
- '408,154,153,7,6,671,350,672,673,675,264,125,124,123,5,683,684,326,326',
712
- '326,326,326,326,326,326,326,326,326,350,685,686,326,326,262,262,262',
713
- '262,262,262,262,262,262,262,262,264,326,326,262,262,112,112,687,112',
714
- '112,112,112,112,688,689,690,691,692,262,350,350,350,350,350,350,350',
715
- '350,350,350,350,693,694,695,350,350,264,264,264,264,264,264,264,264',
716
- '264,264,264,121,350,350,264,264,4,116,3,104,703,264,708,118,117,116',
717
- '116,116,116,264,116,112,112,732,,,,,,,,,,,,,,,,,,116,,,116,116,116,',
718
- ',,,116,,116,,,,,383,,,,,,,,,,,,383,,,,116,116,116,116,116,116,116,116',
719
- '116,116,116,116,116,,,,116,116,383,,116,116,116,116,383,,,,,383,,116',
720
- '55,,,,,383,383,,,,383,383,383,383,383,383,383,383,383,,,383,383,383',
721
- '383,383,383,383,383,383,383,383,327,,55,383,383,,,,327,327,,327,327',
722
- ',,,216,383,383,,,,,,,,,,,,,,,,327,,,55,55,55,55,55,55,55,55,55,,,,,216',
723
- '55,55,,,,,,,,,,,,,55,,,,327,327,327,327,327,327,327,327,327,327,327',
724
- ',,,327,327,216,216,216,216,216,216,216,216,216,,,,327,327,216,216,,',
725
- '1,,,,,1,,,,,216,1,1,1,1,1,1,1,,1,,1,1,1,,1,,,,1,1,1,,,,,,,,,,1,,,,,',
726
- ',,,1,,1,,,,,,,,,,,,359,,,,580,580,,,,1,1,580,580,580,580,580,580,580',
727
- ',580,580,580,580,580,,580,,,,580,580,580,,,359,,,,,,359,580,,,,359,',
728
- ',,,580,,580,359,359,,,,359,359,359,359,359,359,359,359,359,,201,201',
729
- ',,,580,580,201,201,201,201,201,201,201,,201,,201,201,201,,201,,,,201',
730
- '201,201,,,,,,,,,,201,,,,,,,,,201,,201,,,,,,,,,,,,,,,,681,681,,,,201',
731
- '201,681,681,681,681,681,681,681,,681,,681,681,681,,681,,,,681,681,681',
732
- ',,,,,,,,,681,,,,,,,,,681,654,681,,,,,654,654,654,654,654,654,654,,654',
733
- ',654,654,654,,654,,681,681,654,654,654,,,,,,,,,,654,,,,,,,,,654,91,654',
734
- ',,,,91,91,91,91,91,91,91,,91,,91,91,91,,91,,654,654,91,91,91,,,,,,,',
735
- ',,91,,,,,,,,,91,0,91,,,,,0,0,0,0,0,0,0,,0,,0,0,0,,0,,91,91,0,0,0,,,',
736
- ',,,,,,0,,,,,340,,,,0,510,0,,,,,510,510,510,510,510,510,510,,510,510',
737
- '510,510,510,,510,,0,0,510,510,510,,,340,384,,,,,340,510,,,,340,,,,,510',
738
- ',510,340,340,,,,340,340,340,340,340,340,340,340,340,,385,384,,,,510',
739
- '510,384,,,,,384,,,,,,,,384,384,,,,384,384,384,384,384,384,384,384,384',
740
- '385,386,,,,,385,,,,,385,,,,,,,,385,385,,,,385,385,385,385,385,385,385',
741
- '385,385,,387,386,,,,,,386,,,,,386,,,,,,,,386,386,,,,386,386,386,386',
742
- '386,386,386,386,386,387,388,,,,,387,,,,,387,,,,,,,,387,387,,,,387,387',
743
- '387,387,387,387,387,387,387,,389,388,,,,,,388,,,,,388,,,,,,,,388,388',
744
- ',,,388,388,388,388,388,388,388,388,388,389,390,,,,,389,,,,,389,,,,,',
745
- ',,389,389,,,,389,389,389,389,389,389,389,389,389,,391,390,,,,,,390,',
746
- ',,,390,,,,,,,,390,390,,,,390,390,390,390,390,390,390,390,390,391,392',
747
- ',,,,391,,,,,391,,,,,,,,391,391,,,,391,391,391,391,391,391,391,391,391',
748
- ',393,392,,,,,,392,,,,,392,,,,,,,,392,392,,,,392,392,392,392,392,392',
749
- '392,392,392,393,572,,,,,393,,,,,393,,,,,,,,393,393,,,,393,393,393,393',
750
- '393,393,393,393,393,,237,572,,,,,,572,,,,,572,,,,,,,,572,572,,,,572',
751
- '572,572,572,572,572,572,572,572,237,486,,,,,237,,,,,237,,230,,,,,,237',
752
- '237,,,,237,237,237,237,237,237,237,237,237,,,486,,,,,,486,,,,,486,230',
753
- '570,,,,,230,486,486,,,230,486,486,486,486,486,486,486,486,486,,,,,230',
754
- '230,230,230,230,230,230,230,,478,570,,,,,,570,,,,,570,,,,,,,,570,570',
755
- ',,,570,570,570,570,570,570,570,570,570,478,,,,,,478,,,,,478,,,,,,,,478',
756
- '478,,,,478,478,478,478,478,478,478,478,478' ]
757
- racc_action_check = arr = ::Array.new(2201, nil)
862
+ '119,285,412,119,412,354,530,109,109,318,538,119,119,620,119,119,19,111',
863
+ '617,361,290,119,53,119,361,625,664,291,491,285,285,436,666,698,327,491',
864
+ '327,119,111,108,111,108,108,318,3,318,699,251,538,251,19,620,412,412',
865
+ '290,291,53,251,251,251,251,291,251,625,664,436,617,617,109,109,666,698',
866
+ '119,119,119,119,119,119,119,119,119,119,119,251,699,4,119,119,354,354',
867
+ '285,285,96,251,351,251,351,530,530,290,119,119,47,47,351,351,291,351',
868
+ '351,54,436,248,282,96,283,284,251,251,251,251,251,251,251,251,251,251',
869
+ '251,251,251,292,351,410,251,251,410,115,251,251,251,251,275,273,275',
870
+ '54,293,248,282,251,283,284,275,275,275,275,5,275,115,328,115,328,6,308',
871
+ '273,292,273,351,351,351,351,351,351,351,351,351,351,351,275,7,293,351',
872
+ '351,275,138,138,275,97,275,8,275,308,308,113,113,351,351,308,308,113',
873
+ '113,148,148,274,303,304,305,306,97,307,314,275,275,275,275,275,275,275',
874
+ '275,275,275,275,275,275,274,360,274,275,275,294,9,275,275,275,275,320',
875
+ '360,320,303,304,305,306,275,307,314,320,320,320,320,98,320,319,308,308',
876
+ '113,113,464,294,294,360,294,294,294,294,294,545,527,545,547,548,98,320',
877
+ '191,191,320,320,320,29,29,29,546,320,546,320,10,319,205,205,549,229',
878
+ '464,227,227,227,215,215,360,360,360,360,527,360,547,548,320,320,320',
879
+ '320,320,320,320,320,320,320,320,320,320,11,294,294,320,320,549,229,320',
880
+ '320,320,320,331,229,331,550,554,12,229,320,561,597,331,331,331,331,13',
881
+ '331,614,662,663,676,229,229,229,229,229,229,229,229,677,678,696,701',
882
+ '731,521,521,521,331,550,554,331,331,331,561,597,218,218,331,364,331',
883
+ '364,614,662,663,676,522,522,522,364,364,14,364,364,677,678,696,701,731',
884
+ '225,225,331,331,331,331,331,331,331,331,331,331,331,331,331,15,364,16',
885
+ '331,331,226,226,331,331,331,331,423,423,56,487,487,518,518,331,519,519',
886
+ '56,56,17,56,56,369,369,369,369,369,369,369,369,369,369,364,364,364,364',
887
+ '364,364,364,364,364,364,364,56,520,520,364,364,112,112,18,112,112,112',
888
+ '112,112,726,726,20,23,364,364,24,95,25,26,27,95,95,95,95,95,95,95,95',
889
+ '95,95,28,56,56,56,56,56,56,56,56,56,56,56,30,31,33,56,56,34,35,261,95',
890
+ '36,39,40,41,42,95,45,46,56,56,95,112,112,51,52,62,63,64,95,95,66,67',
891
+ '68,95,95,95,95,95,95,95,95,95,261,70,95,95,95,95,95,95,95,95,95,95,95',
892
+ '99,71,72,95,95,73,74,92,99,99,99,99,93,99,94,100,103,95,95,104,114,117',
893
+ '261,261,261,261,261,261,261,261,261,261,261,118,99,121,261,261,123,124',
894
+ '125,153,154,157,99,181,99,182,183,184,188,261,190,193,195,203,207,208',
895
+ '209,210,211,212,213,214,217,222,223,99,99,99,99,99,99,99,99,99,99,99',
896
+ '99,99,224,236,253,99,99,254,107,99,99,99,99,255,256,257,107,107,107',
897
+ '107,99,107,258,259,260,262,264,278,279,280,281,287,288,289,296,297,298',
898
+ '236,299,263,300,301,107,236,302,310,311,107,236,312,107,313,107,316',
899
+ '107,323,236,236,324,334,338,236,236,236,236,236,236,236,236,236,341',
900
+ '345,353,263,359,107,107,107,107,107,107,107,107,107,107,107,107,107',
901
+ '368,379,339,107,107,381,116,107,107,107,107,395,396,409,116,116,116',
902
+ '116,107,116,263,263,263,263,263,263,263,263,263,263,263,413,421,422',
903
+ '263,263,339,408,425,426,116,263,339,116,116,116,427,339,433,263,116',
904
+ '437,116,438,440,339,339,451,452,453,339,339,339,339,339,339,339,339',
905
+ '339,454,455,408,465,116,116,116,116,116,116,116,116,116,116,116,116',
906
+ '116,468,473,474,116,116,481,120,116,116,116,116,482,483,484,120,120',
907
+ '120,120,116,120,408,408,408,408,408,408,408,408,408,408,408,488,494',
908
+ '496,408,408,497,499,500,507,120,512,516,120,120,120,517,528,533,408',
909
+ '120,535,120,189,536,552,560,562,563,569,579,189,189,582,189,189,583',
910
+ '584,585,586,587,588,589,120,120,120,120,120,120,120,120,120,120,120',
911
+ '120,120,590,189,591,120,120,592,593,120,120,120,120,594,595,325,596',
912
+ '600,601,608,120,609,610,325,325,611,325,325,612,615,618,619,624,626',
913
+ '627,628,635,636,189,189,189,189,189,189,189,189,189,189,189,325,655',
914
+ '657,189,189,660,671,672,673,675,683,684,326,685,340,686,687,189,189',
915
+ '688,326,326,689,326,326,690,691,692,693,694,695,703,708,732,,325,325',
916
+ '325,325,325,325,325,325,325,325,325,326,,340,325,325,,,,340,,,,349,340',
917
+ ',,,325,325,,,340,340,,349,,340,340,340,340,340,340,340,340,340,326,326',
918
+ '326,326,326,326,326,326,326,326,326,349,,,326,326,,,,,,,,356,,,,,326',
919
+ '326,,356,356,,356,356,,,,,,,,,,,349,349,349,349,349,349,349,349,349',
920
+ '349,349,356,,,349,349,,,,,,,,382,,,,,349,349,,,,,,382,,,,540,,,,,,,356',
921
+ '356,356,356,356,356,356,356,356,356,356,382,356,356,356,356,,382,,,',
922
+ ',382,622,,,,540,356,356,382,382,,,,382,382,382,382,382,382,382,382,382',
923
+ ',,382,382,382,382,382,382,382,382,382,382,382,622,,,382,382,540,540',
924
+ '540,540,540,540,540,540,540,540,540,,382,382,540,540,55,,,,,,,,,,,,',
925
+ '540,622,622,622,622,622,622,622,622,622,622,622,,,,622,622,216,,,,55',
926
+ ',,1,,,,,1,622,,,,,1,1,1,1,1,1,1,,1,,1,1,1,,1,,216,,1,1,1,55,55,55,55',
927
+ '55,55,55,55,55,1,,,,,55,55,,,1,,1,,,,,,,,55,,216,216,216,216,216,216',
928
+ '216,216,216,,,1,1,,216,216,,,350,,,,201,201,,,,,216,201,201,201,201',
929
+ '201,201,201,,201,,201,201,201,,201,,,,201,201,201,,,350,,,,,,350,201',
930
+ ',,,350,,,,,201,,201,350,350,,,,350,350,350,350,350,350,350,350,350,',
931
+ '580,580,,,,201,201,580,580,580,580,580,580,580,,580,580,580,580,580',
932
+ ',580,,,,580,580,580,,,,,,,,,,580,,,,,,,,,580,,580,,,,,,,,,,,,,,,,681',
933
+ '681,,,,580,580,681,681,681,681,681,681,681,,681,,681,681,681,,681,,',
934
+ ',681,681,681,,,,,,,,,,681,,,,,,,,,681,0,681,,,,,0,0,0,0,0,0,0,,0,,0',
935
+ '0,0,,0,,681,681,0,0,0,,,,,,,,,,0,,,,,,,,,0,91,0,,,,,91,91,91,91,91,91',
936
+ '91,,91,,91,91,91,,91,,0,0,91,91,91,,,,,,,,,,91,,,,,,,,,91,510,91,,,',
937
+ ',510,510,510,510,510,510,510,,510,510,510,510,510,,510,,91,91,510,510',
938
+ '510,,,,,,,,,,510,,,,,358,,,,510,654,510,,,,,654,654,654,654,654,654',
939
+ '654,,654,,654,654,654,,654,,510,510,654,654,654,,,358,383,,,,,358,654',
940
+ ',,,358,,,,,654,,654,358,358,,,,358,358,358,358,358,358,358,358,358,',
941
+ '384,383,,,,654,654,383,,,,,383,,,,,,,,383,383,,,,383,383,383,383,383',
942
+ '383,383,383,383,384,385,,,,,384,,,,,384,,,,,,,,384,384,,,,384,384,384',
943
+ '384,384,384,384,384,384,,386,385,,,,,,385,,,,,385,,,,,,,,385,385,,,',
944
+ '385,385,385,385,385,385,385,385,385,386,387,,,,,386,,,,,386,,,,,,,,386',
945
+ '386,,,,386,386,386,386,386,386,386,386,386,,388,387,,,,,,387,,,,,387',
946
+ ',,,,,,,387,387,,,,387,387,387,387,387,387,387,387,387,388,389,,,,,388',
947
+ ',,,,388,,,,,,,,388,388,,,,388,388,388,388,388,388,388,388,388,,390,389',
948
+ ',,,,,389,,,,,389,,,,,,,,389,389,,,,389,389,389,389,389,389,389,389,389',
949
+ '390,391,,,,,390,,,,,390,,,,,,,,390,390,,,,390,390,390,390,390,390,390',
950
+ '390,390,,392,391,,,,,,391,,,,,391,,,,,,,,391,391,,,,391,391,391,391',
951
+ '391,391,391,391,391,392,478,,,,,392,,,,,392,,,,,,,,392,392,,,,392,392',
952
+ '392,392,392,392,392,392,392,,486,478,,,,,,478,,,,,478,,,,,,,,478,478',
953
+ ',,,478,478,478,478,478,478,478,478,478,486,570,,,,,486,,,,,486,,,,,',
954
+ ',,486,486,,,,486,486,486,486,486,486,486,486,486,,572,570,,,,,,570,',
955
+ ',,,570,,,,,,,,570,570,,,,570,570,570,570,570,570,570,570,570,572,,,',
956
+ ',,572,,,,,572,,,,,,,,572,572,,,,572,572,572,572,572,572,572,572,572' ]
957
+ racc_action_check = arr = ::Array.new(2163, nil)
758
958
  idx = 0
759
959
  clist.each do |str|
760
960
  str.split(',', -1).each do |i|
@@ -764,227 +964,227 @@ clist = [
764
964
  end
765
965
 
766
966
  racc_action_pointer = [
767
- 1565, 1235, nil, 1000, 998, 917, 907, 906, 898, 891,
768
- 887, 886, 871, 814, 810, 809, 761, 760, 754, 338,
769
- 697, nil, nil, 670, 622, 611, 611, 606, 597, 411,
770
- 600, 594, nil, 601, 596, 598, 594, nil, nil, 593,
771
- 593, 572, 567, nil, nil, 565, 567, 308, nil, nil,
772
- nil, 543, 521, 336, 321, 1094, 508, nil, nil, nil,
773
- nil, nil, 509, 501, 498, nil, 481, 480, 299, nil,
774
- 221, 152, 138, 92, 196, nil, nil, nil, nil, nil,
967
+ 1482, 1228, nil, 42, 83, 152, 158, 175, 185, 226,
968
+ 280, 313, 329, 338, 383, 406, 408, 429, 459, 10,
969
+ 463, nil, nil, 465, 468, 470, 474, 475, 478, 264,
970
+ 495, 491, nil, 500, 500, 504, 504, nil, nil, 505,
971
+ 509, 510, 508, nil, nil, 510, 514, 90, nil, nil,
972
+ nil, 517, 521, 16, 103, 1185, 415, nil, nil, nil,
973
+ nil, nil, 519, 520, 524, nil, 524, 528, 446, nil,
974
+ 540, 550, 554, 554, 561, nil, nil, nil, nil, nil,
775
975
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
776
- nil, 1519, 343, 320, 568, 755, 7, 110, 91, 415,
777
- 747, nil, nil, 784, 997, nil, nil, 704, 364, -25,
778
- nil, 344, 922, 145, 4, 345, 995, 1002, 1001, -3,
779
- 618, 955, nil, 867, 866, 910, nil, nil, nil, nil,
780
- nil, nil, nil, nil, nil, nil, nil, nil, 351, nil,
781
- nil, nil, nil, nil, nil, nil, nil, nil, 342, nil,
782
- nil, nil, nil, 900, 899, nil, nil, 865, nil, nil,
976
+ nil, 1528, 559, 527, 563, 469, 89, 182, 244, 549,
977
+ 566, nil, nil, 565, 568, nil, nil, 635, 15, -25,
978
+ nil, 14, 428, 159, 551, 132, 721, 570, 582, -3,
979
+ 807, 550, nil, 542, 543, 589, nil, nil, nil, nil,
980
+ nil, nil, nil, nil, nil, nil, nil, nil, 106, nil,
981
+ nil, nil, nil, nil, nil, nil, nil, nil, 122, nil,
982
+ nil, nil, nil, 589, 590, nil, nil, 592, nil, nil,
783
983
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
784
984
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
785
- nil, 850, 798, 795, 785, nil, nil, nil, 788, 462,
786
- 690, 326, nil, 729, nil, 758, nil, nil, nil, nil,
787
- nil, 1363, nil, 744, nil, 196, nil, 742, 741, 740,
788
- 739, 734, 703, 699, 658, 468, 1142, 616, 452, nil,
789
- nil, nil, nil, 562, 552, 523, 399, 382, 331, nil,
790
- 2060, nil, nil, nil, nil, nil, nil, 2013, nil, nil,
791
- nil, nil, nil, nil, nil, nil, nil, nil, nil, 337,
792
- nil, nil, 43, nil, 562, 519, 514, 504, 476, 469,
793
- 462, 287, 863, 311, 909, 334, nil, nil, nil, nil,
794
- nil, nil, nil, nil, 268, 356, 229, nil, nil, 183,
795
- 69, 61, 497, 309, 244, 49, 9, nil, 112, 127,
796
- 133, 0, 14, 105, 106, -3, nil, 232, 251, 268,
797
- 273, 278, 288, 297, 196, 197, 290, 291, 292, 12,
798
- nil, 387, 423, 431, 441, 295, nil, 440, nil, 150,
799
- 311, 322, nil, nil, 483, 484, 847, 1126, 140, 384,
800
- nil, nil, 136, nil, nil, 459, nil, nil, nil, 436,
801
- 1605, 103, 508, nil, nil, nil, 429, nil, nil, nil,
802
- 893, 614, 183, nil, 544, 20, nil, 563, nil, 1293,
803
- 548, 276, 243, nil, nil, 369, nil, nil, nil, 573,
804
- 517, nil, nil, nil, nil, nil, nil, nil, nil, nil,
805
- 588, nil, 589, 1046, 1640, 1673, 1708, 1741, 1776, 1809,
806
- 1844, 1877, 1912, 1945, nil, 563, 604, nil, nil, nil,
807
- nil, nil, nil, nil, nil, nil, nil, nil, 801, 609,
808
- -80, nil, -45, 612, nil, nil, nil, nil, nil, nil,
809
- nil, 573, 575, 443, nil, 614, 598, 598, nil, nil,
810
- nil, nil, nil, 621, nil, nil, 3, 623, 604, nil,
811
- 622, nil, nil, nil, nil, nil, nil, nil, nil, nil,
812
- nil, 630, 643, 650, 651, 653, nil, nil, nil, nil,
813
- nil, nil, nil, nil, 21, 660, nil, nil, 662, nil,
814
- nil, nil, nil, 666, 669, nil, nil, nil, 2128, nil,
815
- nil, 669, 679, 682, 599, nil, 2048, 473, 697, nil,
816
- nil, 197, nil, nil, 713, nil, 710, 693, nil, 658,
817
- 689, nil, nil, nil, nil, nil, nil, 731, nil, nil,
818
- 1611, nil, 735, nil, nil, nil, 687, 687, 306, -21,
819
- 168, 377, 374, nil, nil, nil, nil, 294, 749, nil,
820
- -4, nil, nil, 656, nil, 713, 714, nil, 101, nil,
821
- 649, nil, nil, nil, nil, 303, 229, 289, 251, 249,
822
- 248, nil, 790, nil, 245, nil, nil, nil, nil, nil,
823
- 794, 339, 796, 800, nil, nil, nil, nil, nil, 718,
824
- 2095, nil, 1980, nil, nil, nil, nil, nil, nil, 807,
825
- 1299, nil, 815, 816, 826, 827, 840, 841, 844, 845,
826
- 846, 847, 848, 849, 850, 852, 852, 243, nil, nil,
827
- 758, 851, nil, nil, nil, nil, nil, nil, 762, 766,
828
- 861, 822, 824, nil, 216, 821, nil, -32, 868, 776,
829
- 135, nil, 478, nil, 793, 37, 867, 867, 868, nil,
830
- nil, nil, nil, nil, nil, 889, 890, nil, nil, nil,
985
+ nil, 594, 596, 596, 597, nil, nil, nil, 602, 854,
986
+ 521, 183, nil, 562, nil, 603, nil, nil, nil, nil,
987
+ nil, 1308, nil, 604, nil, 276, nil, 605, 606, 607,
988
+ 608, 609, 610, 611, 612, 286, 1215, 613, 362, nil,
989
+ nil, nil, 566, 566, 579, 336, 354, 228, nil, 281,
990
+ nil, nil, nil, nil, nil, nil, 630, nil, nil, nil,
991
+ nil, nil, nil, nil, nil, nil, nil, nil, 105, nil,
992
+ nil, 43, nil, 635, 638, 644, 645, 646, 653, 654,
993
+ 563, 502, 612, 666, 653, nil, nil, nil, nil, nil,
994
+ nil, nil, nil, 138, 198, 136, nil, nil, 658, 659,
995
+ 656, 657, 106, 108, 109, -3, nil, 662, 663, 664,
996
+ 14, 21, 123, 138, 223, nil, 665, 666, 667, 669,
997
+ 671, 672, 675, 196, 197, 198, 199, 201, 157, nil,
998
+ 676, 677, 680, 682, 202, nil, 660, nil, 3, 243,
999
+ 229, nil, nil, 686, 689, 900, 946, 10, 133, nil,
1000
+ nil, 322, nil, nil, 639, nil, nil, nil, 616, 717,
1001
+ 948, 694, nil, nil, nil, 613, nil, nil, nil, 992,
1002
+ 1302, 90, nil, 699, 1, nil, 1038, nil, 1614, 683,
1003
+ 217, 15, nil, nil, 369, nil, nil, nil, 718, 424,
1004
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, 716,
1005
+ nil, 720, 1084, 1649, 1682, 1717, 1750, 1785, 1818, 1853,
1006
+ 1886, 1921, 1954, nil, nil, 685, 724, nil, nil, nil,
1007
+ nil, nil, nil, nil, nil, nil, nil, nil, 752, 728,
1008
+ 32, nil, -45, 746, nil, nil, nil, nil, nil, nil,
1009
+ nil, 707, 708, 393, nil, 750, 733, 739, nil, nil,
1010
+ nil, nil, nil, 763, nil, nil, 25, 766, 748, nil,
1011
+ 766, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1012
+ nil, 772, 773, 774, 784, 785, nil, nil, nil, nil,
1013
+ nil, nil, nil, nil, 248, 784, nil, nil, 798, nil,
1014
+ nil, nil, nil, 802, 803, nil, nil, nil, 1989, nil,
1015
+ nil, 804, 810, 813, 729, nil, 2022, 414, 829, nil,
1016
+ nil, 26, nil, nil, 837, nil, 834, 819, nil, 767,
1017
+ 798, nil, nil, nil, nil, nil, nil, 840, nil, nil,
1018
+ 1574, nil, 842, nil, nil, nil, 794, 797, 367, 368,
1019
+ 397, 298, 319, nil, nil, nil, nil, 258, 848, nil,
1020
+ -3, nil, nil, 753, nil, 812, 815, nil, 1, nil,
1021
+ 1100, nil, nil, nil, nil, 216, 231, 260, 261, 280,
1022
+ 323, nil, 856, nil, 324, nil, nil, nil, nil, nil,
1023
+ 854, 328, 855, 856, nil, nil, nil, nil, nil, 774,
1024
+ 2057, nil, 2090, nil, nil, nil, nil, nil, nil, 861,
1025
+ 1372, nil, 868, 871, 872, 873, 874, 875, 876, 877,
1026
+ 891, 893, 896, 897, 902, 903, 904, 329, nil, nil,
1027
+ 809, 900, nil, nil, nil, nil, nil, nil, 809, 812,
1028
+ 907, 870, 873, nil, 336, 869, nil, -31, 915, 823,
1029
+ 4, nil, 1130, nil, 824, 16, 897, 897, 898, nil,
1030
+ nil, nil, nil, nil, nil, 919, 920, nil, nil, nil,
831
1031
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
832
- nil, nil, nil, nil, 1473, 894, nil, 896, nil, nil,
833
- 895, nil, 202, 201, 9, nil, 16, nil, nil, nil,
834
- nil, 811, 863, 907, nil, 815, 155, 154, 153, nil,
835
- nil, 1427, nil, 918, 919, 932, 933, 954, 960, 961,
836
- 962, 963, 964, 977, 978, 979, 151, nil, 17, 83,
837
- nil, 125, nil, 953, nil, nil, nil, nil, 978, nil,
1032
+ nil, nil, nil, nil, 1620, 934, nil, 936, nil, nil,
1033
+ 936, nil, 337, 338, 17, nil, 23, nil, nil, nil,
1034
+ nil, 847, 898, 942, nil, 850, 339, 348, 349, nil,
1035
+ nil, 1436, nil, 948, 949, 951, 953, 954, 957, 960,
1036
+ 963, 964, 965, 966, 967, 968, 350, nil, 24, 37,
1037
+ nil, 351, nil, 920, nil, nil, nil, nil, 944, nil,
838
1038
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
839
- nil, nil, nil, nil, nil, nil, 454, nil, nil, nil,
840
- nil, 64, 1011, nil, nil ]
1039
+ nil, nil, nil, nil, nil, nil, 460, nil, nil, nil,
1040
+ nil, 352, 967, nil, nil ]
841
1041
 
842
1042
  racc_action_default = [
843
- -18, -436, -1, -436, -436, -436, -436, -436, -436, -436,
844
- -436, -436, -436, -436, -436, -436, -436, -436, -436, -436,
845
- -436, -77, -78, -436, -436, -436, -436, -436, -436, -436,
846
- -436, -436, -94, -436, -436, -436, -436, -133, -134, -436,
847
- -436, -436, -436, -177, -178, -436, -436, -436, -188, -189,
848
- -190, -436, -436, -436, -436, -436, -436, -279, -280, -281,
849
- -282, -283, -436, -436, -436, -340, -436, -436, -436, -348,
850
- -436, -436, -436, -436, -436, -2, -3, -4, -5, -6,
1043
+ -18, -435, -1, -435, -435, -435, -435, -435, -435, -435,
1044
+ -435, -435, -435, -435, -435, -435, -435, -435, -435, -435,
1045
+ -435, -76, -77, -435, -435, -435, -435, -435, -435, -435,
1046
+ -435, -435, -93, -435, -435, -435, -435, -132, -133, -435,
1047
+ -435, -435, -435, -176, -177, -435, -435, -435, -187, -188,
1048
+ -189, -435, -435, -435, -435, -435, -435, -278, -279, -280,
1049
+ -281, -282, -435, -435, -435, -339, -435, -435, -435, -347,
1050
+ -435, -435, -435, -435, -435, -2, -3, -4, -5, -6,
851
1051
  -7, -8, -9, -10, -11, -12, -13, -14, -15, -16,
852
- -17, -18, -174, -24, -436, -436, -79, -80, -81, -104,
853
- -436, -90, -91, -436, -436, -92, -93, -104, -436, -436,
854
- -127, -135, -152, -162, -155, -180, -104, -436, -436, -192,
855
- -104, -173, -174, -436, -436, -436, -232, -233, -234, -235,
856
- -236, -237, -238, -239, -240, -241, -314, -315, -323, -317,
857
- -318, -319, -320, -321, -322, -325, -326, -327, -436, -331,
858
- -332, -333, -334, -372, -374, -434, -278, -436, -286, -287,
859
- -288, -289, -290, -291, -292, -293, -294, -295, -296, -297,
860
- -298, -299, -300, -301, -302, -303, -304, -305, -306, -335,
861
- -336, -436, -436, -436, -436, -435, -284, -311, -337, -436,
862
- -344, -436, -346, -436, -363, -436, -364, -397, -400, -398,
863
- 735, -436, -21, -436, -175, -436, -25, -436, -436, -436,
864
- -436, -436, -436, -436, -436, -436, -436, -300, -436, -71,
865
- -73, -74, -75, -242, -243, -245, -247, -249, -252, -255,
866
- -436, -260, -261, -262, -263, -264, -265, -436, -267, -268,
867
- -269, -270, -271, -272, -273, -274, -275, -276, -84, -436,
868
- -86, -88, -436, -95, -436, -436, -436, -436, -436, -436,
869
- -436, -436, -436, -436, -436, -436, -410, -411, -412, -429,
870
- -430, -431, -432, -83, -179, -191, -436, -121, -123, -436,
871
- -436, -436, -436, -436, -436, -436, -436, -128, -436, -436,
872
- -436, -436, -436, -436, -436, -436, -143, -436, -436, -436,
873
- -436, -436, -436, -436, -436, -436, -436, -436, -436, -436,
874
- -156, -436, -436, -436, -436, -436, -186, -204, -205, -436,
875
- -436, -436, -201, -212, -436, -436, -436, -436, -185, -198,
876
- -193, -199, -436, -229, -230, -436, -316, -324, -328, -329,
877
- -436, -436, -285, -307, -309, -310, -312, -313, -339, -347,
878
- -436, -436, -436, -341, -436, -436, -355, -436, -358, -436,
879
- -436, -436, -436, -366, -368, -436, -19, -22, -176, -436,
880
- -436, -27, -28, -29, -30, -31, -32, -33, -34, -35,
881
- -436, -37, -436, -436, -436, -436, -436, -436, -436, -436,
882
- -436, -436, -436, -436, -259, -436, -105, -106, -108, -82,
883
- -96, -97, -98, -99, -100, -101, -102, -103, -436, -436,
884
- -409, -405, -436, -436, -404, -182, -195, -109, -122, -124,
885
- -125, -436, -436, -436, -118, -119, -436, -117, -126, -129,
886
- -130, -131, -132, -436, -171, -172, -436, -436, -138, -141,
887
- -142, -139, -136, -144, -145, -146, -147, -148, -149, -150,
888
- -151, -436, -436, -436, -436, -436, -153, -157, -158, -159,
889
- -160, -161, -154, -203, -436, -207, -209, -211, -208, -181,
890
- -202, -213, -214, -436, -436, -184, -197, -194, -436, -330,
891
- -277, -436, -436, -436, -375, -376, -436, -436, -436, -338,
892
- -342, -436, -345, -356, -436, -359, -436, -436, -361, -323,
893
- -436, -350, -351, -352, -353, -354, -365, -436, -399, -401,
894
- -436, -26, -436, -36, -70, -72, -244, -246, -248, -250,
895
- -251, -253, -254, -256, -257, -258, -266, -436, -436, -312,
896
- -391, -381, -402, -407, -408, -436, -436, -413, -436, -415,
897
- -436, -418, -419, -420, -403, -436, -436, -436, -436, -436,
898
- -436, -163, -436, -165, -436, -166, -167, -168, -169, -170,
899
- -206, -436, -215, -216, -231, -371, -373, -308, -377, -436,
900
- -436, -370, -436, -343, -357, -362, -360, -349, -367, -436,
901
- -436, -38, -436, -436, -436, -436, -436, -436, -436, -436,
902
- -436, -436, -436, -436, -436, -436, -436, -436, -107, -379,
903
- -395, -394, -380, -382, -383, -384, -385, -386, -389, -390,
904
- -436, -436, -436, -406, -436, -436, -414, -436, -436, -217,
905
- -436, -225, -436, -228, -221, -436, -436, -115, -114, -116,
906
- -120, -164, -137, -210, -378, -436, -436, -20, -23, -39,
1052
+ -17, -18, -173, -24, -435, -435, -78, -79, -80, -103,
1053
+ -435, -89, -90, -435, -435, -91, -92, -103, -435, -435,
1054
+ -126, -134, -151, -161, -154, -179, -103, -435, -435, -191,
1055
+ -103, -172, -173, -435, -435, -435, -231, -232, -233, -234,
1056
+ -235, -236, -237, -238, -239, -240, -313, -314, -322, -316,
1057
+ -317, -318, -319, -320, -321, -324, -325, -326, -435, -330,
1058
+ -331, -332, -333, -371, -373, -433, -277, -435, -285, -286,
1059
+ -287, -288, -289, -290, -291, -292, -293, -294, -295, -296,
1060
+ -297, -298, -299, -300, -301, -302, -303, -304, -305, -334,
1061
+ -335, -435, -435, -435, -435, -434, -283, -310, -336, -435,
1062
+ -343, -435, -345, -435, -362, -435, -363, -396, -399, -397,
1063
+ 735, -435, -21, -435, -174, -435, -25, -435, -435, -435,
1064
+ -435, -435, -435, -435, -435, -435, -435, -299, -435, -71,
1065
+ -73, -74, -241, -242, -244, -246, -248, -251, -254, -435,
1066
+ -259, -260, -261, -262, -263, -264, -435, -266, -267, -268,
1067
+ -269, -270, -271, -272, -273, -274, -275, -83, -435, -85,
1068
+ -87, -435, -94, -435, -435, -435, -435, -435, -435, -435,
1069
+ -435, -435, -435, -435, -435, -409, -410, -411, -428, -429,
1070
+ -430, -431, -82, -178, -190, -435, -120, -122, -435, -435,
1071
+ -435, -435, -435, -435, -435, -435, -127, -435, -435, -435,
1072
+ -435, -435, -435, -435, -435, -142, -435, -435, -435, -435,
1073
+ -435, -435, -435, -435, -435, -435, -435, -435, -435, -155,
1074
+ -435, -435, -435, -435, -435, -185, -203, -204, -435, -435,
1075
+ -435, -200, -211, -435, -435, -435, -435, -184, -197, -192,
1076
+ -198, -435, -228, -229, -435, -315, -323, -327, -328, -435,
1077
+ -435, -284, -306, -308, -309, -311, -312, -338, -346, -435,
1078
+ -435, -435, -340, -435, -435, -354, -435, -357, -435, -435,
1079
+ -435, -435, -365, -367, -435, -19, -22, -175, -435, -435,
1080
+ -27, -28, -29, -30, -31, -32, -33, -34, -35, -435,
1081
+ -37, -435, -435, -435, -435, -435, -435, -435, -435, -435,
1082
+ -435, -435, -435, -258, -263, -435, -104, -105, -107, -81,
1083
+ -95, -96, -97, -98, -99, -100, -101, -102, -435, -435,
1084
+ -408, -404, -435, -435, -403, -181, -194, -108, -121, -123,
1085
+ -124, -435, -435, -435, -117, -118, -435, -116, -125, -128,
1086
+ -129, -130, -131, -435, -170, -171, -435, -435, -137, -140,
1087
+ -141, -138, -135, -143, -144, -145, -146, -147, -148, -149,
1088
+ -150, -435, -435, -435, -435, -435, -152, -156, -157, -158,
1089
+ -159, -160, -153, -202, -435, -206, -208, -210, -207, -180,
1090
+ -201, -212, -213, -435, -435, -183, -196, -193, -435, -329,
1091
+ -276, -435, -435, -435, -374, -375, -435, -435, -435, -337,
1092
+ -341, -435, -344, -355, -435, -358, -435, -435, -360, -322,
1093
+ -435, -349, -350, -351, -352, -353, -364, -435, -398, -400,
1094
+ -435, -26, -435, -36, -70, -72, -243, -245, -247, -249,
1095
+ -250, -252, -253, -255, -256, -257, -265, -435, -435, -311,
1096
+ -390, -380, -401, -406, -407, -435, -435, -412, -435, -414,
1097
+ -435, -417, -418, -419, -402, -435, -435, -435, -435, -435,
1098
+ -435, -162, -435, -164, -435, -165, -166, -167, -168, -169,
1099
+ -205, -435, -214, -215, -230, -370, -372, -307, -376, -435,
1100
+ -435, -369, -435, -342, -356, -361, -359, -348, -366, -435,
1101
+ -435, -38, -435, -435, -435, -435, -435, -435, -435, -435,
1102
+ -435, -435, -435, -435, -435, -435, -435, -435, -106, -378,
1103
+ -394, -393, -379, -381, -382, -383, -384, -385, -388, -389,
1104
+ -435, -435, -435, -405, -435, -435, -413, -435, -435, -216,
1105
+ -435, -224, -435, -227, -220, -435, -435, -114, -113, -115,
1106
+ -119, -163, -136, -209, -377, -435, -435, -20, -23, -39,
907
1107
  -40, -41, -42, -43, -44, -45, -46, -47, -48, -49,
908
- -50, -51, -52, -53, -436, -436, -393, -436, -387, -388,
909
- -392, -395, -436, -436, -436, -424, -436, -427, -416, -417,
910
- -219, -218, -436, -436, -223, -222, -436, -436, -436, -369,
911
- -433, -436, -55, -436, -436, -436, -436, -436, -436, -436,
912
- -436, -436, -436, -436, -436, -436, -436, -396, -436, -436,
913
- -421, -436, -426, -436, -220, -226, -227, -224, -111, -112,
914
- -113, -54, -56, -57, -58, -59, -60, -61, -62, -63,
915
- -64, -65, -66, -67, -68, -69, -436, -422, -423, -425,
916
- -428, -436, -436, -110, -76 ]
1108
+ -50, -51, -52, -53, -435, -435, -392, -435, -386, -387,
1109
+ -391, -394, -435, -435, -435, -423, -435, -426, -415, -416,
1110
+ -218, -217, -435, -435, -222, -221, -435, -435, -435, -368,
1111
+ -432, -435, -55, -435, -435, -435, -435, -435, -435, -435,
1112
+ -435, -435, -435, -435, -435, -435, -435, -395, -435, -435,
1113
+ -420, -435, -425, -435, -219, -225, -226, -223, -110, -111,
1114
+ -112, -54, -56, -57, -58, -59, -60, -61, -62, -63,
1115
+ -64, -65, -66, -67, -68, -69, -435, -421, -422, -424,
1116
+ -427, -435, -435, -109, -75 ]
917
1117
 
918
1118
  racc_goto_table = [
919
- 4, 4, 16, 16, 3, 3, 17, 17, 5, 5,
920
- 222, 409, 363, 127, 221, 342, 219, 157, 533, 426,
921
- 441, 217, 206, 126, 481, 482, 313, 530, 132, 174,
922
- 396, 296, 316, 539, 129, 488, 331, 297, 311, 131,
923
- 173, 2, 75, 160, 290, 310, 287, 303, 314, 277,
924
- 353, 356, 298, 312, 123, 124, 134, 162, 629, 465,
925
- 279, 485, 664, 253, 534, 601, 433, 437, 174, 608,
926
- 567, 278, 609, 581, 321, 440, 1, 178, 332, 173,
927
- 330, 589, 220, 575, 518, 691, 682, 125, 516, 596,
928
- 705, 4, 174, 16, 135, 3, 130, 17, 176, 5,
929
- 272, 468, 633, 173, 177, 128, 160, 394, 272, 463,
930
- 698, 699, 691, 712, 181, 470, 156, 272, 182, 309,
931
- 162, 272, 435, 435, 521, 522, 470, 248, 250, 251,
932
- 620, 625, 202, 523, 524, 525, 519, 520, 438, 295,
933
- 178, 186, 487, 639, 726, 286, 600, 660, 659, 423,
934
- 658, 589, 395, 352, 276, 517, 355, 528, 192, 596,
935
- 500, 176, 174, 598, 494, 495, 194, 177, 362, 252,
936
- 569, 484, 218, 173, 127, 599, 160, 181, 602, 531,
937
- 603, 182, 604, 605, 126, 709, 710, 613, 606, 132,
938
- 162, 415, 416, 607, 681, 129, 93, 580, 197, 568,
939
- 131, 4, 365, 16, 560, 3, 588, 17, 656, 5,
940
- 178, 552, 491, 490, 443, 493, 400, 134, 418, 410,
941
- 297, 290, 313, 429, 532, 690, 509, 670, 661, 279,
942
- 303, 176, 674, 596, 311, 298, 669, 177, 668, 733,
943
- 278, 457, 367, 413, 314, 475, 476, 181, 380, 312,
944
- 398, 182, 690, 272, 635, 135, 636, 130, 411, 205,
945
- 596, 538, 201, 272, 666, 272, 128, 435, nil, nil,
946
- nil, nil, 585, 586, 497, 697, 588, 272, nil, 704,
947
- 632, nil, 626, 707, 424, 398, 427, 473, 474, 618,
948
- 587, 706, 434, 434, 439, 398, 512, 511, 222, 174,
949
- 174, nil, 221, nil, 515, 451, 452, 453, 454, 455,
950
- 173, 173, nil, 160, 160, nil, 462, nil, 496, 502,
951
- 467, 398, 272, 174, 578, 174, 593, 162, 162, 501,
952
- 174, 562, 563, 272, 173, 440, 173, 160, 174, 160,
953
- 503, 173, 585, 586, 160, nil, nil, 178, 178, 173,
954
- 689, 162, 160, 162, 592, nil, 174, nil, 162, nil,
955
- 587, nil, 505, nil, nil, nil, 162, 173, 176, 176,
956
- 220, 673, nil, 178, 177, 177, nil, 689, 178, nil,
957
- nil, nil, 504, nil, 181, 181, 178, nil, 182, 182,
958
- nil, nil, nil, 564, 176, nil, 593, nil, nil, 176,
959
- 177, nil, nil, nil, nil, 177, nil, 176, nil, 272,
960
- 181, nil, nil, 177, 182, 181, 686, 687, nil, 182,
961
- nil, nil, nil, 181, 592, nil, nil, 182, nil, nil,
962
- nil, nil, nil, nil, 688, nil, nil, 434, nil, nil,
963
- nil, nil, nil, 686, 687, nil, nil, nil, nil, nil,
964
- nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
965
- nil, 688, nil, nil, nil, 467, nil, nil, nil, nil,
1119
+ 3, 3, 4, 4, 5, 5, 16, 16, 17, 17,
1120
+ 221, 409, 206, 362, 341, 219, 220, 396, 157, 441,
1121
+ 315, 217, 539, 126, 330, 426, 312, 629, 131, 173,
1122
+ 296, 310, 297, 311, 127, 309, 129, 2, 75, 132,
1123
+ 174, 295, 252, 160, 289, 276, 465, 302, 313, 286,
1124
+ 277, 534, 530, 355, 123, 124, 134, 162, 433, 437,
1125
+ 435, 435, 440, 125, 601, 608, 278, 664, 173, 352,
1126
+ 609, 585, 485, 581, 128, 586, 470, 567, 130, 174,
1127
+ 135, 329, 160, 1, 691, 682, 201, 470, 468, 176,
1128
+ 575, 3, 173, 4, 320, 5, 234, 16, 331, 17,
1129
+ 271, 620, 625, 174, 177, 205, 160, 178, 271, 580,
1130
+ 587, 691, 712, 481, 482, 698, 699, 271, 181, 93,
1131
+ 162, 271, 182, 681, 488, 247, 249, 250, 202, 523,
1132
+ 524, 525, 519, 520, 521, 522, 218, 251, 598, 275,
1133
+ 423, 585, 285, 639, 659, 586, 660, 294, 658, 726,
1134
+ 438, 395, 176, 308, 709, 710, 463, 633, 528, 705,
1135
+ 516, 517, 173, 518, 393, 156, 533, 177, 186, 351,
1136
+ 178, 600, 354, 174, 613, 192, 160, 500, 415, 416,
1137
+ 587, 181, 494, 495, 126, 182, 194, 361, 484, 131,
1138
+ 162, 599, 560, 602, 400, 127, 531, 129, 603, 604,
1139
+ 132, 3, 605, 4, 552, 5, 435, 16, 733, 17,
1140
+ 491, 568, 296, 418, 297, 686, 493, 134, 277, 687,
1141
+ 289, 312, 176, 443, 379, 429, 310, 668, 311, 302,
1142
+ 457, 490, 475, 476, 278, 128, 606, 177, 366, 130,
1143
+ 178, 135, 686, 313, 509, 607, 687, 197, 364, 398,
1144
+ 410, 181, 271, 661, 688, 182, 532, 413, 411, 538,
1145
+ 569, 669, 271, 666, 271, nil, nil, nil, nil, nil,
1146
+ 487, nil, 588, 497, nil, 589, 271, 592, nil, 593,
1147
+ 632, 688, nil, 424, 398, 427, 511, 473, 474, 626,
1148
+ 618, 434, 434, 439, 398, 512, nil, 221, 173, 173,
1149
+ 697, 596, 515, 220, 451, 452, 453, 454, 455, 174,
1150
+ 174, nil, 160, 160, nil, 462, 706, nil, 496, 467,
1151
+ 398, 271, 173, 440, 173, 578, 162, 162, 501, 173,
1152
+ 562, 563, 271, 174, nil, 174, 160, 173, 160, 502,
1153
+ 174, 503, 588, 160, 635, 589, 636, 592, 174, 593,
1154
+ 162, 160, 162, nil, nil, 173, 656, 162, 176, 176,
1155
+ nil, 505, nil, nil, nil, 162, 174, nil, nil, 160,
1156
+ nil, 596, 673, 177, 177, 670, 178, 178, nil, nil,
1157
+ 674, nil, nil, 234, 176, nil, nil, 181, 181, 176,
1158
+ nil, 182, 182, 564, nil, nil, nil, 176, nil, 177,
1159
+ nil, nil, 178, nil, 177, nil, nil, 178, nil, 271,
1160
+ nil, 504, 177, 181, nil, 178, 689, 182, 181, 690,
1161
+ nil, 692, 182, 693, nil, nil, 181, 704, nil, nil,
1162
+ 182, 707, nil, nil, nil, nil, nil, 434, nil, nil,
1163
+ nil, nil, nil, 689, nil, 596, 690, nil, 692, nil,
966
1164
  693, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1165
+ nil, nil, nil, nil, nil, 467, nil, nil, nil, nil,
1166
+ nil, nil, 596, nil, nil, nil, nil, nil, nil, nil,
1167
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
967
1168
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
968
- nil, nil, nil, nil, nil, nil, nil, 693, 692, nil,
969
1169
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
970
- 583, nil, 594, nil, 582, nil, 595, nil, 584, nil,
971
- nil, nil, nil, nil, nil, 692, nil, nil, 398, nil,
1170
+ 582, nil, 583, nil, 584, nil, 594, nil, 595, nil,
1171
+ nil, nil, nil, nil, nil, nil, nil, nil, 398, nil,
972
1172
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
973
- nil, 272, nil, nil, nil, nil, nil, nil, 398, 627,
1173
+ nil, 271, nil, nil, nil, nil, nil, nil, 398, 627,
974
1174
  628, 630, nil, nil, nil, 398, nil, nil, nil, nil,
975
1175
  nil, nil, 467, nil, nil, nil, nil, nil, nil, nil,
976
1176
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
977
- 583, nil, 594, nil, 582, nil, 595, nil, 584, nil,
1177
+ 582, nil, 583, nil, 584, nil, 594, nil, 595, nil,
978
1178
  nil, nil, nil, nil, nil, nil, nil, nil, 655, nil,
979
1179
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
980
1180
  nil, nil, nil, nil, nil, 665, nil, nil, nil, nil,
981
- nil, nil, nil, 272, nil, nil, nil, nil, nil, nil,
1181
+ nil, nil, nil, 271, nil, nil, nil, nil, nil, nil,
982
1182
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
983
1183
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
984
- nil, nil, nil, nil, 684, nil, 694, nil, 683, nil,
985
- 695, nil, 685, 665, 665, nil, nil, nil, nil, nil,
1184
+ nil, nil, nil, nil, 683, nil, 684, nil, 685, nil,
1185
+ 694, nil, 695, 665, 665, nil, nil, nil, nil, nil,
986
1186
  nil, nil, nil, nil, nil, nil, nil, 708, 630, 630,
987
- nil, 684, nil, 694, nil, 683, nil, 695, nil, 685,
1187
+ nil, 683, nil, 684, nil, 685, nil, 694, nil, 695,
988
1188
  nil, nil, nil, nil, nil, nil, nil, 665, nil, nil,
989
1189
  nil, nil, 729, nil, nil, nil, nil, nil, nil, nil,
990
1190
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
@@ -992,123 +1192,123 @@ racc_goto_table = [
992
1192
  nil, nil, 630 ]
993
1193
 
994
1194
  racc_goto_check = [
995
- 4, 4, 16, 16, 3, 3, 17, 17, 5, 5,
996
- 36, 104, 167, 107, 35, 99, 33, 91, 101, 57,
997
- 72, 26, 24, 106, 126, 126, 77, 105, 112, 112,
998
- 52, 73, 87, 192, 109, 126, 87, 65, 65, 111,
999
- 111, 2, 2, 34, 50, 80, 64, 50, 50, 59,
1000
- 153, 160, 66, 66, 37, 37, 37, 37, 58, 96,
1001
- 60, 169, 38, 49, 190, 180, 81, 81, 112, 178,
1002
- 139, 49, 179, 27, 86, 52, 1, 132, 86, 111,
1003
- 91, 10, 34, 139, 118, 28, 31, 25, 116, 18,
1004
- 102, 4, 112, 16, 114, 3, 110, 17, 128, 5,
1005
- 37, 52, 97, 111, 130, 108, 34, 123, 37, 95,
1006
- 38, 38, 28, 31, 150, 93, 127, 37, 154, 79,
1007
- 37, 37, 82, 82, 120, 120, 93, 47, 47, 47,
1008
- 100, 100, 2, 121, 121, 121, 119, 119, 71, 70,
1009
- 132, 133, 134, 27, 38, 63, 105, 180, 178, 56,
1010
- 179, 10, 36, 152, 55, 117, 156, 104, 158, 18,
1011
- 159, 128, 112, 53, 162, 163, 165, 130, 166, 45,
1012
- 126, 168, 32, 111, 107, 170, 34, 150, 171, 172,
1013
- 173, 154, 174, 175, 106, 58, 58, 190, 176, 112,
1014
- 37, 87, 87, 177, 30, 109, 23, 22, 182, 169,
1015
- 111, 4, 183, 16, 96, 3, 9, 17, 101, 5,
1016
- 132, 81, 99, 153, 73, 160, 49, 37, 59, 185,
1017
- 65, 50, 77, 64, 186, 10, 153, 101, 105, 60,
1018
- 50, 128, 101, 18, 65, 66, 105, 130, 192, 58,
1019
- 49, 80, 2, 188, 50, 87, 87, 150, 25, 66,
1020
- 37, 154, 10, 37, 126, 114, 126, 110, 189, 21,
1021
- 18, 191, 19, 37, 194, 37, 108, 82, nil, nil,
1022
- nil, nil, 6, 7, 36, 105, 9, 37, nil, 101,
1023
- 72, nil, 57, 101, 37, 37, 37, 91, 91, 104,
1024
- 8, 105, 37, 37, 37, 37, 26, 24, 36, 112,
1025
- 112, nil, 35, nil, 33, 37, 37, 37, 37, 37,
1026
- 111, 111, nil, 34, 34, nil, 37, nil, 91, 107,
1027
- 37, 37, 37, 112, 167, 112, 15, 37, 37, 106,
1028
- 112, 99, 99, 37, 111, 52, 111, 34, 112, 34,
1029
- 109, 111, 6, 7, 34, nil, nil, 132, 132, 111,
1030
- 9, 37, 34, 37, 14, nil, 112, nil, 37, nil,
1031
- 8, nil, 37, nil, nil, nil, 37, 111, 128, 128,
1032
- 34, 104, nil, 132, 130, 130, nil, 9, 132, nil,
1033
- nil, nil, 132, nil, 150, 150, 132, nil, 154, 154,
1034
- nil, nil, nil, 36, 128, nil, 15, nil, nil, 128,
1035
- 130, nil, nil, nil, nil, 130, nil, 128, nil, 37,
1036
- 150, nil, nil, 130, 154, 150, 6, 7, nil, 154,
1037
- nil, nil, nil, 150, 14, nil, nil, 154, nil, nil,
1038
- nil, nil, nil, nil, 8, nil, nil, 37, nil, nil,
1039
- nil, nil, nil, 6, 7, nil, nil, nil, nil, nil,
1040
- nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1041
- nil, 8, nil, nil, nil, 37, nil, nil, nil, nil,
1195
+ 3, 3, 4, 4, 5, 5, 16, 16, 17, 17,
1196
+ 35, 103, 24, 167, 98, 33, 34, 51, 90, 71,
1197
+ 86, 26, 192, 105, 86, 56, 76, 57, 110, 110,
1198
+ 64, 64, 65, 65, 106, 79, 108, 2, 2, 111,
1199
+ 111, 72, 48, 134, 49, 58, 95, 49, 49, 63,
1200
+ 48, 190, 104, 160, 36, 36, 36, 36, 80, 80,
1201
+ 81, 81, 51, 25, 180, 178, 59, 37, 110, 153,
1202
+ 179, 6, 169, 27, 107, 7, 92, 139, 109, 111,
1203
+ 113, 90, 134, 1, 28, 31, 19, 92, 51, 127,
1204
+ 139, 3, 110, 4, 85, 5, 36, 16, 85, 17,
1205
+ 36, 99, 99, 111, 129, 21, 134, 131, 36, 22,
1206
+ 8, 28, 31, 125, 125, 37, 37, 36, 150, 23,
1207
+ 36, 36, 154, 30, 125, 46, 46, 46, 2, 120,
1208
+ 120, 120, 118, 118, 119, 119, 32, 44, 52, 54,
1209
+ 55, 6, 62, 27, 178, 7, 180, 69, 179, 37,
1210
+ 70, 35, 127, 78, 57, 57, 94, 96, 103, 101,
1211
+ 115, 116, 110, 117, 122, 126, 100, 129, 132, 152,
1212
+ 131, 104, 156, 111, 190, 158, 134, 159, 86, 86,
1213
+ 8, 150, 162, 163, 105, 154, 165, 166, 168, 110,
1214
+ 36, 170, 95, 171, 48, 106, 172, 108, 173, 174,
1215
+ 111, 3, 175, 4, 80, 5, 81, 16, 57, 17,
1216
+ 98, 169, 64, 58, 65, 6, 160, 36, 48, 7,
1217
+ 49, 76, 127, 72, 25, 63, 64, 192, 65, 49,
1218
+ 79, 153, 86, 86, 59, 107, 176, 129, 2, 109,
1219
+ 131, 113, 6, 49, 153, 177, 7, 182, 183, 36,
1220
+ 185, 150, 36, 104, 8, 154, 186, 188, 189, 191,
1221
+ 125, 104, 36, 194, 36, nil, nil, nil, nil, nil,
1222
+ 34, nil, 9, 35, nil, 10, 36, 14, nil, 15,
1223
+ 71, 8, nil, 36, 36, 36, 24, 90, 90, 56,
1224
+ 103, 36, 36, 36, 36, 26, nil, 35, 110, 110,
1225
+ 104, 18, 33, 34, 36, 36, 36, 36, 36, 111,
1226
+ 111, nil, 134, 134, nil, 36, 104, nil, 90, 36,
1227
+ 36, 36, 110, 51, 110, 167, 36, 36, 105, 110,
1228
+ 98, 98, 36, 111, nil, 111, 134, 110, 134, 106,
1229
+ 111, 108, 9, 134, 125, 10, 125, 14, 111, 15,
1230
+ 36, 134, 36, nil, nil, 110, 100, 36, 127, 127,
1231
+ nil, 36, nil, nil, nil, 36, 111, nil, nil, 134,
1232
+ nil, 18, 103, 129, 129, 100, 131, 131, nil, nil,
1233
+ 100, nil, nil, 36, 127, nil, nil, 150, 150, 127,
1234
+ nil, 154, 154, 35, nil, nil, nil, 127, nil, 129,
1235
+ nil, nil, 131, nil, 129, nil, nil, 131, nil, 36,
1236
+ nil, 131, 129, 150, nil, 131, 9, 154, 150, 10,
1237
+ nil, 14, 154, 15, nil, nil, 150, 100, nil, nil,
1238
+ 154, 100, nil, nil, nil, nil, nil, 36, nil, nil,
1239
+ nil, nil, nil, 9, nil, 18, 10, nil, 14, nil,
1042
1240
  15, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1241
+ nil, nil, nil, nil, nil, 36, nil, nil, nil, nil,
1242
+ nil, nil, 18, nil, nil, nil, nil, nil, nil, nil,
1243
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1043
1244
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1044
- nil, nil, nil, nil, nil, nil, nil, 15, 14, nil,
1045
1245
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1046
- 4, nil, 16, nil, 3, nil, 17, nil, 5, nil,
1047
- nil, nil, nil, nil, nil, 14, nil, nil, 37, nil,
1246
+ 3, nil, 4, nil, 5, nil, 16, nil, 17, nil,
1247
+ nil, nil, nil, nil, nil, nil, nil, nil, 36, nil,
1048
1248
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1049
- nil, 37, nil, nil, nil, nil, nil, nil, 37, 37,
1050
- 37, 37, nil, nil, nil, 37, nil, nil, nil, nil,
1051
- nil, nil, 37, nil, nil, nil, nil, nil, nil, nil,
1249
+ nil, 36, nil, nil, nil, nil, nil, nil, 36, 36,
1250
+ 36, 36, nil, nil, nil, 36, nil, nil, nil, nil,
1251
+ nil, nil, 36, nil, nil, nil, nil, nil, nil, nil,
1052
1252
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1053
- 4, nil, 16, nil, 3, nil, 17, nil, 5, nil,
1054
- nil, nil, nil, nil, nil, nil, nil, nil, 37, nil,
1253
+ 3, nil, 4, nil, 5, nil, 16, nil, 17, nil,
1254
+ nil, nil, nil, nil, nil, nil, nil, nil, 36, nil,
1055
1255
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1056
- nil, nil, nil, nil, nil, 37, nil, nil, nil, nil,
1057
- nil, nil, nil, 37, nil, nil, nil, nil, nil, nil,
1256
+ nil, nil, nil, nil, nil, 36, nil, nil, nil, nil,
1257
+ nil, nil, nil, 36, nil, nil, nil, nil, nil, nil,
1058
1258
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1059
1259
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1060
- nil, nil, nil, nil, 4, nil, 16, nil, 3, nil,
1061
- 17, nil, 5, 37, 37, nil, nil, nil, nil, nil,
1062
- nil, nil, nil, nil, nil, nil, nil, 37, 37, 37,
1063
- nil, 4, nil, 16, nil, 3, nil, 17, nil, 5,
1064
- nil, nil, nil, nil, nil, nil, nil, 37, nil, nil,
1065
- nil, nil, 37, nil, nil, nil, nil, nil, nil, nil,
1260
+ nil, nil, nil, nil, 3, nil, 4, nil, 5, nil,
1261
+ 16, nil, 17, 36, 36, nil, nil, nil, nil, nil,
1262
+ nil, nil, nil, nil, nil, nil, nil, 36, 36, 36,
1263
+ nil, 3, nil, 4, nil, 5, nil, 16, nil, 17,
1264
+ nil, nil, nil, nil, nil, nil, nil, 36, nil, nil,
1265
+ nil, nil, 36, nil, nil, nil, nil, nil, nil, nil,
1066
1266
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1067
1267
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1068
- nil, nil, 37 ]
1268
+ nil, nil, 36 ]
1069
1269
 
1070
1270
  racc_goto_pointer = [
1071
- nil, 76, 41, 4, 0, 8, -238, -237, -220, -304,
1072
- -429, nil, nil, nil, -156, -184, 2, 6, -421, 171,
1073
- nil, 164, -313, 177, -73, 32, -74, -437, -569, nil,
1074
- -460, -568, 77, -79, -13, -81, -85, 1, -552, nil,
1075
- nil, nil, nil, nil, nil, 70, nil, 31, nil, -36,
1076
- -65, nil, -219, -364, nil, 47, -134, -265, -492, -58,
1077
- -47, nil, nil, 36, -63, -75, -60, nil, nil, nil,
1078
- 27, -155, -274, -81, nil, nil, nil, -87, nil, 6,
1079
- -68, -225, -169, nil, nil, nil, -42, -83, nil, nil,
1080
- nil, -39, nil, -206, nil, -208, -260, -459, nil, -142,
1081
- -415, -392, -582, nil, -251, -382, -32, -42, 50, -21,
1082
- 41, -16, -27, nil, 39, nil, -296, -230, -302, -251,
1083
- -265, -258, nil, -123, nil, nil, -316, 60, 42, nil,
1084
- 48, nil, 21, 79, -208, nil, nil, nil, nil, -413,
1271
+ nil, 83, 37, 0, 2, 4, -439, -435, -400, -238,
1272
+ -235, nil, nil, nil, -233, -231, 6, 8, -209, -5,
1273
+ nil, 10, -401, 100, -83, 8, -74, -437, -570, nil,
1274
+ -531, -569, 41, -80, -79, -85, 1, -547, nil, nil,
1275
+ nil, nil, nil, nil, 38, nil, 29, nil, -57, -65,
1276
+ nil, -231, -389, nil, 32, -142, -258, -523, -62, -41,
1277
+ nil, nil, 33, -60, -82, -80, nil, nil, nil, 35,
1278
+ -142, -274, -71, nil, nil, nil, -87, nil, 40, -78,
1279
+ -232, -230, nil, nil, nil, -22, -95, nil, nil, nil,
1280
+ -38, nil, -244, nil, -160, -272, -404, nil, -143, -444,
1281
+ -244, -513, nil, -250, -357, -32, -21, 19, -19, 23,
1282
+ -27, -16, nil, 25, nil, -223, -223, -222, -254, -254,
1283
+ -261, nil, -65, nil, nil, -226, 109, 33, nil, 48,
1284
+ nil, 51, 106, nil, -13, nil, nil, nil, nil, -406,
1085
1285
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1086
- 58, nil, -36, -139, 62, nil, -35, nil, 90, -201,
1087
- -140, nil, -193, -192, nil, 96, -27, -183, -175, -285,
1088
- -353, -352, -230, -350, -348, -347, -342, -337, -461, -458,
1089
- -463, nil, 126, 4, nil, -44, -186, nil, -21, -5,
1090
- -346, -151, -379, nil, -351 ]
1286
+ 62, nil, -20, -120, 66, nil, -19, nil, 107, -183,
1287
+ -138, nil, -174, -173, nil, 116, -8, -182, -157, -273,
1288
+ -337, -337, -213, -332, -331, -328, -294, -285, -465, -460,
1289
+ -464, nil, 175, 50, nil, -12, -154, nil, -6, -4,
1290
+ -359, -153, -390, nil, -352 ]
1091
1291
 
1092
1292
  racc_goto_default = [
1093
- nil, nil, nil, 254, 255, 256, 6, 7, 8, 9,
1094
- 10, 11, 12, 13, 14, 15, 259, 260, 18, nil,
1293
+ nil, nil, nil, 253, 254, 255, 6, 7, 8, 9,
1294
+ 10, 11, 12, 13, 14, 15, 258, 259, 18, nil,
1095
1295
  20, nil, nil, 121, nil, nil, 172, nil, 590, 591,
1096
- nil, nil, nil, nil, 269, 161, 480, 235, nil, 21,
1097
- 22, 23, 24, 25, 26, nil, 27, nil, 30, 323,
1098
- 257, 258, 425, 397, 33, nil, nil, nil, nil, nil,
1099
- 325, 280, 35, nil, nil, 288, 289, 37, 38, 40,
1100
- nil, nil, nil, nil, 299, 300, 301, 302, 41, nil,
1101
- nil, nil, 170, 43, 44, 46, nil, nil, 48, 49,
1102
- 50, 354, 52, 322, 317, 318, nil, 466, 324, nil,
1103
- nil, nil, 621, 622, 267, 344, 164, 165, 166, 167,
1104
- 163, 270, 271, 133, 168, 223, 224, 225, 226, 227,
1105
- 228, 229, 230, 231, 236, 245, nil, nil, 57, 58,
1106
- 59, 60, 61, nil, 158, 159, 169, 171, 175, 343,
1107
- 345, 347, 139, 140, 141, 142, 143, 145, 146, 147,
1296
+ nil, nil, nil, nil, 158, 480, 394, nil, 21, 22,
1297
+ 23, 24, 25, 26, nil, 27, nil, 30, 322, 256,
1298
+ 257, 425, 397, 33, nil, nil, nil, nil, nil, 324,
1299
+ 279, 35, nil, nil, 287, 288, 37, 38, 40, nil,
1300
+ nil, nil, nil, 298, 299, 300, 301, 41, nil, nil,
1301
+ nil, 170, 43, 44, 46, nil, nil, 48, 49, 50,
1302
+ 353, 52, 321, 316, 317, nil, 466, 323, nil, nil,
1303
+ nil, 621, 622, 266, 343, 164, 165, 166, 167, 163,
1304
+ 269, 270, 133, 168, 222, 223, 224, 225, 226, 227,
1305
+ 228, 229, 230, 235, 244, nil, nil, 57, 58, 59,
1306
+ 60, 61, nil, 159, 268, 161, 169, 171, 175, 342,
1307
+ 344, 346, 139, 140, 141, 142, 143, 145, 146, 147,
1108
1308
  63, 64, nil, nil, 66, 67, nil, 68, nil, nil,
1109
- nil, 357, nil, 358, 70, nil, nil, nil, nil, nil,
1309
+ nil, 356, nil, 357, 70, nil, nil, nil, nil, nil,
1110
1310
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
1111
- nil, 72, nil, nil, 263, nil, nil, 264, 265, nil,
1311
+ nil, 72, nil, nil, 262, nil, nil, 263, 264, nil,
1112
1312
  nil, nil, nil, 540, nil ]
1113
1313
 
1114
1314
  racc_reduce_table = [
@@ -1187,163 +1387,162 @@ racc_reduce_table = [
1187
1387
  3, 137, :_reduce_72,
1188
1388
  1, 138, :_reduce_73,
1189
1389
  1, 138, :_reduce_74,
1190
- 1, 138, :_reduce_75,
1191
- 6, 134, :_reduce_76,
1390
+ 6, 134, :_reduce_75,
1192
1391
  1, 111, :_reduce_none,
1193
1392
  1, 111, :_reduce_none,
1194
- 2, 145, :_reduce_79,
1195
- 2, 145, :_reduce_80,
1196
- 2, 145, :_reduce_81,
1197
- 4, 144, :_reduce_82,
1198
- 3, 144, :_reduce_83,
1199
- 3, 149, :_reduce_84,
1200
- 2, 149, :_reduce_85,
1201
- 3, 149, :_reduce_86,
1202
- 2, 149, :_reduce_87,
1203
- 3, 149, :_reduce_88,
1204
- 2, 149, :_reduce_89,
1393
+ 2, 144, :_reduce_78,
1394
+ 2, 144, :_reduce_79,
1395
+ 2, 144, :_reduce_80,
1396
+ 4, 143, :_reduce_81,
1397
+ 3, 143, :_reduce_82,
1398
+ 3, 148, :_reduce_83,
1399
+ 2, 148, :_reduce_84,
1400
+ 3, 148, :_reduce_85,
1401
+ 2, 148, :_reduce_86,
1402
+ 3, 148, :_reduce_87,
1403
+ 2, 148, :_reduce_88,
1404
+ 2, 145, :_reduce_89,
1205
1405
  2, 146, :_reduce_90,
1206
- 2, 147, :_reduce_91,
1207
- 2, 151, :_reduce_92,
1208
- 2, 153, :_reduce_93,
1209
- 1, 148, :_reduce_94,
1210
- 1, 150, :_reduce_none,
1211
- 2, 150, :_reduce_none,
1212
- 2, 154, :_reduce_none,
1213
- 2, 154, :_reduce_none,
1214
- 2, 154, :_reduce_none,
1215
- 2, 154, :_reduce_none,
1216
- 2, 154, :_reduce_none,
1217
- 2, 154, :_reduce_none,
1218
- 2, 154, :_reduce_none,
1219
- 0, 154, :_reduce_none,
1220
- 2, 152, :_reduce_105,
1221
- 1, 157, :_reduce_106,
1222
- 3, 157, :_reduce_107,
1223
- 1, 158, :_reduce_none,
1224
- 4, 115, :_reduce_109,
1225
- 10, 159, :_reduce_110,
1226
- 8, 159, :_reduce_111,
1227
- 8, 159, :_reduce_112,
1228
- 8, 159, :_reduce_113,
1229
- 6, 159, :_reduce_114,
1230
- 6, 159, :_reduce_115,
1231
- 6, 159, :_reduce_116,
1232
- 4, 159, :_reduce_117,
1406
+ 2, 150, :_reduce_91,
1407
+ 2, 152, :_reduce_92,
1408
+ 1, 147, :_reduce_93,
1409
+ 1, 149, :_reduce_none,
1410
+ 2, 149, :_reduce_none,
1411
+ 2, 153, :_reduce_none,
1412
+ 2, 153, :_reduce_none,
1413
+ 2, 153, :_reduce_none,
1414
+ 2, 153, :_reduce_none,
1415
+ 2, 153, :_reduce_none,
1416
+ 2, 153, :_reduce_none,
1417
+ 2, 153, :_reduce_none,
1418
+ 0, 153, :_reduce_none,
1419
+ 2, 151, :_reduce_104,
1420
+ 1, 156, :_reduce_105,
1421
+ 3, 156, :_reduce_106,
1422
+ 1, 157, :_reduce_none,
1423
+ 4, 115, :_reduce_108,
1424
+ 10, 158, :_reduce_109,
1425
+ 8, 158, :_reduce_110,
1426
+ 8, 158, :_reduce_111,
1427
+ 8, 158, :_reduce_112,
1428
+ 6, 158, :_reduce_113,
1429
+ 6, 158, :_reduce_114,
1430
+ 6, 158, :_reduce_115,
1431
+ 4, 158, :_reduce_116,
1432
+ 1, 160, :_reduce_none,
1233
1433
  1, 161, :_reduce_none,
1234
1434
  1, 162, :_reduce_none,
1435
+ 1, 159, :_reduce_none,
1436
+ 2, 159, :_reduce_none,
1235
1437
  1, 163, :_reduce_none,
1236
- 1, 160, :_reduce_none,
1237
- 2, 160, :_reduce_none,
1238
- 1, 164, :_reduce_none,
1239
- 2, 164, :_reduce_none,
1240
- 2, 164, :_reduce_none,
1241
- 4, 112, :_reduce_126,
1242
- 2, 167, :_reduce_127,
1243
- 1, 168, :_reduce_none,
1438
+ 2, 163, :_reduce_none,
1439
+ 2, 163, :_reduce_none,
1440
+ 4, 112, :_reduce_125,
1441
+ 2, 166, :_reduce_126,
1442
+ 1, 167, :_reduce_none,
1443
+ 2, 167, :_reduce_none,
1444
+ 2, 168, :_reduce_none,
1445
+ 2, 168, :_reduce_none,
1244
1446
  2, 168, :_reduce_none,
1245
- 2, 169, :_reduce_none,
1246
- 2, 169, :_reduce_none,
1247
- 2, 169, :_reduce_none,
1248
1447
  1, 113, :_reduce_none,
1249
1448
  1, 113, :_reduce_none,
1250
- 2, 173, :_reduce_135,
1251
- 4, 172, :_reduce_136,
1252
- 6, 174, :_reduce_137,
1253
- 4, 174, :_reduce_138,
1254
- 4, 174, :_reduce_139,
1255
- 2, 174, :_reduce_140,
1256
- 1, 176, :_reduce_none,
1257
- 1, 177, :_reduce_none,
1449
+ 2, 172, :_reduce_134,
1450
+ 4, 171, :_reduce_135,
1451
+ 6, 173, :_reduce_136,
1452
+ 4, 173, :_reduce_137,
1453
+ 4, 173, :_reduce_138,
1454
+ 2, 173, :_reduce_139,
1258
1455
  1, 175, :_reduce_none,
1259
- 2, 175, :_reduce_none,
1260
- 2, 178, :_reduce_none,
1261
- 2, 178, :_reduce_none,
1262
- 2, 178, :_reduce_none,
1263
- 2, 178, :_reduce_none,
1264
- 2, 178, :_reduce_none,
1265
- 2, 178, :_reduce_none,
1266
- 2, 178, :_reduce_none,
1267
- 0, 178, :_reduce_none,
1268
- 4, 114, :_reduce_153,
1269
- 4, 183, :_reduce_154,
1270
- 2, 183, :_reduce_155,
1271
- 1, 184, :_reduce_none,
1456
+ 1, 176, :_reduce_none,
1457
+ 1, 174, :_reduce_none,
1458
+ 2, 174, :_reduce_none,
1459
+ 2, 177, :_reduce_none,
1460
+ 2, 177, :_reduce_none,
1461
+ 2, 177, :_reduce_none,
1462
+ 2, 177, :_reduce_none,
1463
+ 2, 177, :_reduce_none,
1464
+ 2, 177, :_reduce_none,
1465
+ 2, 177, :_reduce_none,
1466
+ 0, 177, :_reduce_none,
1467
+ 4, 114, :_reduce_152,
1468
+ 4, 182, :_reduce_153,
1469
+ 2, 182, :_reduce_154,
1470
+ 1, 183, :_reduce_none,
1471
+ 2, 183, :_reduce_none,
1472
+ 2, 184, :_reduce_none,
1473
+ 2, 184, :_reduce_none,
1272
1474
  2, 184, :_reduce_none,
1273
- 2, 185, :_reduce_none,
1274
- 2, 185, :_reduce_none,
1275
- 2, 185, :_reduce_none,
1276
- 2, 185, :_reduce_none,
1277
- 0, 185, :_reduce_none,
1278
- 3, 170, :_reduce_163,
1279
- 4, 171, :_reduce_164,
1280
- 3, 171, :_reduce_165,
1281
- 3, 180, :_reduce_166,
1282
- 3, 179, :_reduce_167,
1475
+ 2, 184, :_reduce_none,
1476
+ 0, 184, :_reduce_none,
1477
+ 3, 169, :_reduce_162,
1478
+ 4, 170, :_reduce_163,
1479
+ 3, 170, :_reduce_164,
1480
+ 3, 179, :_reduce_165,
1481
+ 3, 178, :_reduce_166,
1482
+ 3, 180, :_reduce_167,
1283
1483
  3, 181, :_reduce_168,
1284
- 3, 182, :_reduce_169,
1285
- 3, 182, :_reduce_170,
1286
- 1, 186, :_reduce_none,
1287
- 1, 186, :_reduce_none,
1288
- 1, 142, :_reduce_173,
1289
- 1, 128, :_reduce_174,
1290
- 2, 128, :_reduce_175,
1291
- 3, 128, :_reduce_176,
1484
+ 3, 181, :_reduce_169,
1485
+ 1, 185, :_reduce_none,
1486
+ 1, 185, :_reduce_none,
1487
+ 1, 141, :_reduce_172,
1488
+ 1, 128, :_reduce_173,
1489
+ 2, 128, :_reduce_174,
1490
+ 3, 128, :_reduce_175,
1292
1491
  1, 120, :_reduce_none,
1293
1492
  1, 120, :_reduce_none,
1294
- 3, 189, :_reduce_179,
1295
- 2, 189, :_reduce_180,
1296
- 4, 188, :_reduce_181,
1297
- 4, 190, :_reduce_182,
1298
- 3, 190, :_reduce_183,
1299
- 4, 190, :_reduce_184,
1300
- 3, 190, :_reduce_185,
1301
- 3, 190, :_reduce_186,
1302
- 2, 190, :_reduce_187,
1493
+ 3, 188, :_reduce_178,
1494
+ 2, 188, :_reduce_179,
1495
+ 4, 187, :_reduce_180,
1496
+ 4, 189, :_reduce_181,
1497
+ 3, 189, :_reduce_182,
1498
+ 4, 189, :_reduce_183,
1499
+ 3, 189, :_reduce_184,
1500
+ 3, 189, :_reduce_185,
1501
+ 2, 189, :_reduce_186,
1303
1502
  1, 119, :_reduce_none,
1304
1503
  1, 119, :_reduce_none,
1305
1504
  1, 119, :_reduce_none,
1306
- 3, 195, :_reduce_191,
1307
- 2, 195, :_reduce_192,
1308
- 3, 194, :_reduce_193,
1309
- 4, 193, :_reduce_194,
1310
- 4, 197, :_reduce_195,
1311
- 3, 197, :_reduce_196,
1312
- 4, 197, :_reduce_197,
1313
- 3, 197, :_reduce_198,
1314
- 3, 197, :_reduce_199,
1315
- 2, 197, :_reduce_200,
1316
- 1, 191, :_reduce_none,
1317
- 2, 191, :_reduce_none,
1318
- 2, 192, :_reduce_203,
1319
- 1, 192, :_reduce_204,
1320
- 1, 192, :_reduce_205,
1321
- 3, 199, :_reduce_206,
1505
+ 3, 194, :_reduce_190,
1506
+ 2, 194, :_reduce_191,
1507
+ 3, 193, :_reduce_192,
1508
+ 4, 192, :_reduce_193,
1509
+ 4, 196, :_reduce_194,
1510
+ 3, 196, :_reduce_195,
1511
+ 4, 196, :_reduce_196,
1512
+ 3, 196, :_reduce_197,
1513
+ 3, 196, :_reduce_198,
1514
+ 2, 196, :_reduce_199,
1515
+ 1, 190, :_reduce_none,
1516
+ 2, 190, :_reduce_none,
1517
+ 2, 191, :_reduce_202,
1518
+ 1, 191, :_reduce_203,
1519
+ 1, 191, :_reduce_204,
1520
+ 3, 198, :_reduce_205,
1521
+ 2, 198, :_reduce_206,
1322
1522
  2, 199, :_reduce_207,
1323
- 2, 200, :_reduce_208,
1324
- 1, 201, :_reduce_209,
1325
- 3, 201, :_reduce_210,
1326
- 1, 202, :_reduce_none,
1327
- 1, 198, :_reduce_none,
1328
- 2, 198, :_reduce_none,
1329
- 2, 198, :_reduce_none,
1330
- 3, 203, :_reduce_215,
1331
- 3, 203, :_reduce_216,
1332
- 4, 165, :_reduce_217,
1333
- 5, 165, :_reduce_218,
1334
- 5, 165, :_reduce_219,
1335
- 6, 165, :_reduce_220,
1336
- 4, 166, :_reduce_221,
1337
- 5, 166, :_reduce_222,
1338
- 5, 166, :_reduce_223,
1339
- 6, 166, :_reduce_224,
1340
- 1, 205, :_reduce_225,
1341
- 3, 205, :_reduce_226,
1342
- 3, 207, :_reduce_227,
1343
- 1, 208, :_reduce_none,
1344
- 3, 122, :_reduce_229,
1345
- 3, 121, :_reduce_230,
1346
- 5, 109, :_reduce_231,
1523
+ 1, 200, :_reduce_208,
1524
+ 3, 200, :_reduce_209,
1525
+ 1, 201, :_reduce_none,
1526
+ 1, 197, :_reduce_none,
1527
+ 2, 197, :_reduce_none,
1528
+ 2, 197, :_reduce_none,
1529
+ 3, 202, :_reduce_214,
1530
+ 3, 202, :_reduce_215,
1531
+ 4, 164, :_reduce_216,
1532
+ 5, 164, :_reduce_217,
1533
+ 5, 164, :_reduce_218,
1534
+ 6, 164, :_reduce_219,
1535
+ 4, 165, :_reduce_220,
1536
+ 5, 165, :_reduce_221,
1537
+ 5, 165, :_reduce_222,
1538
+ 6, 165, :_reduce_223,
1539
+ 1, 204, :_reduce_224,
1540
+ 3, 204, :_reduce_225,
1541
+ 3, 206, :_reduce_226,
1542
+ 1, 207, :_reduce_none,
1543
+ 3, 122, :_reduce_228,
1544
+ 3, 121, :_reduce_229,
1545
+ 5, 109, :_reduce_230,
1347
1546
  1, 130, :_reduce_none,
1348
1547
  1, 130, :_reduce_none,
1349
1548
  1, 130, :_reduce_none,
@@ -1354,42 +1553,42 @@ racc_reduce_table = [
1354
1553
  1, 130, :_reduce_none,
1355
1554
  1, 130, :_reduce_none,
1356
1555
  1, 130, :_reduce_none,
1357
- 1, 141, :_reduce_none,
1556
+ 1, 140, :_reduce_none,
1557
+ 1, 219, :_reduce_none,
1558
+ 3, 219, :_reduce_243,
1358
1559
  1, 220, :_reduce_none,
1359
- 3, 220, :_reduce_244,
1560
+ 3, 220, :_reduce_245,
1360
1561
  1, 221, :_reduce_none,
1361
- 3, 221, :_reduce_246,
1562
+ 3, 221, :_reduce_247,
1362
1563
  1, 222, :_reduce_none,
1363
- 3, 222, :_reduce_248,
1564
+ 3, 222, :_reduce_249,
1565
+ 3, 222, :_reduce_250,
1364
1566
  1, 223, :_reduce_none,
1365
- 3, 223, :_reduce_250,
1366
- 3, 223, :_reduce_251,
1567
+ 3, 223, :_reduce_252,
1568
+ 3, 223, :_reduce_253,
1367
1569
  1, 224, :_reduce_none,
1368
- 3, 224, :_reduce_253,
1369
- 3, 224, :_reduce_254,
1570
+ 3, 224, :_reduce_255,
1571
+ 3, 224, :_reduce_256,
1572
+ 3, 224, :_reduce_257,
1573
+ 2, 225, :_reduce_258,
1370
1574
  1, 225, :_reduce_none,
1371
- 3, 225, :_reduce_256,
1372
- 3, 225, :_reduce_257,
1373
- 3, 225, :_reduce_258,
1374
- 2, 226, :_reduce_259,
1375
- 1, 226, :_reduce_none,
1376
- 1, 227, :_reduce_261,
1377
- 1, 227, :_reduce_262,
1378
- 1, 227, :_reduce_263,
1379
- 1, 228, :_reduce_none,
1380
- 1, 228, :_reduce_none,
1381
- 3, 228, :_reduce_266,
1382
- 1, 229, :_reduce_267,
1383
- 1, 229, :_reduce_268,
1384
- 1, 229, :_reduce_269,
1385
- 1, 229, :_reduce_270,
1386
- 1, 229, :_reduce_271,
1387
- 1, 229, :_reduce_272,
1388
- 1, 229, :_reduce_273,
1575
+ 1, 226, :_reduce_260,
1576
+ 1, 226, :_reduce_261,
1577
+ 1, 226, :_reduce_262,
1578
+ 1, 227, :_reduce_none,
1579
+ 1, 227, :_reduce_none,
1580
+ 3, 227, :_reduce_265,
1581
+ 1, 228, :_reduce_266,
1582
+ 1, 228, :_reduce_267,
1583
+ 1, 228, :_reduce_268,
1584
+ 1, 228, :_reduce_269,
1585
+ 1, 228, :_reduce_270,
1586
+ 1, 228, :_reduce_271,
1587
+ 1, 228, :_reduce_272,
1588
+ 1, 228, :_reduce_273,
1389
1589
  1, 229, :_reduce_274,
1390
- 1, 230, :_reduce_275,
1590
+ 1, 229, :_reduce_275,
1391
1591
  1, 230, :_reduce_276,
1392
- 1, 231, :_reduce_277,
1393
1592
  2, 108, :_reduce_none,
1394
1593
  1, 108, :_reduce_none,
1395
1594
  1, 108, :_reduce_none,
@@ -1397,71 +1596,71 @@ racc_reduce_table = [
1397
1596
  1, 108, :_reduce_none,
1398
1597
  1, 108, :_reduce_none,
1399
1598
  2, 108, :_reduce_none,
1400
- 2, 232, :_reduce_285,
1401
- 1, 196, :_reduce_none,
1402
- 1, 196, :_reduce_none,
1403
- 1, 239, :_reduce_none,
1404
- 1, 239, :_reduce_none,
1405
- 1, 239, :_reduce_none,
1406
- 1, 139, :_reduce_none,
1407
- 1, 139, :_reduce_none,
1408
- 1, 139, :_reduce_none,
1599
+ 2, 231, :_reduce_284,
1600
+ 1, 195, :_reduce_none,
1601
+ 1, 195, :_reduce_none,
1409
1602
  1, 139, :_reduce_none,
1410
1603
  1, 139, :_reduce_none,
1411
1604
  1, 139, :_reduce_none,
1412
- 1, 139, :_reduce_none,
1413
- 1, 139, :_reduce_none,
1414
- 1, 139, :_reduce_none,
1415
- 1, 140, :_reduce_none,
1416
- 1, 140, :_reduce_none,
1417
- 1, 140, :_reduce_none,
1418
- 1, 140, :_reduce_none,
1605
+ 1, 239, :_reduce_none,
1606
+ 1, 239, :_reduce_none,
1607
+ 1, 239, :_reduce_none,
1608
+ 1, 239, :_reduce_none,
1609
+ 1, 239, :_reduce_none,
1610
+ 1, 239, :_reduce_none,
1611
+ 1, 239, :_reduce_none,
1612
+ 1, 239, :_reduce_none,
1613
+ 1, 239, :_reduce_none,
1419
1614
  1, 240, :_reduce_none,
1420
1615
  1, 240, :_reduce_none,
1421
1616
  1, 240, :_reduce_none,
1422
- 1, 204, :_reduce_307,
1423
- 3, 204, :_reduce_308,
1617
+ 1, 240, :_reduce_none,
1618
+ 1, 238, :_reduce_none,
1619
+ 1, 238, :_reduce_none,
1620
+ 1, 238, :_reduce_none,
1621
+ 1, 203, :_reduce_306,
1622
+ 3, 203, :_reduce_307,
1424
1623
  1, 244, :_reduce_none,
1425
1624
  1, 244, :_reduce_none,
1426
- 1, 238, :_reduce_311,
1427
- 1, 210, :_reduce_none,
1625
+ 1, 237, :_reduce_310,
1626
+ 1, 209, :_reduce_none,
1428
1627
  1, 245, :_reduce_none,
1429
- 1, 215, :_reduce_314,
1430
- 1, 215, :_reduce_315,
1431
- 2, 215, :_reduce_316,
1432
- 1, 211, :_reduce_none,
1433
- 1, 211, :_reduce_none,
1628
+ 1, 214, :_reduce_313,
1629
+ 1, 214, :_reduce_314,
1630
+ 2, 214, :_reduce_315,
1631
+ 1, 210, :_reduce_none,
1632
+ 1, 210, :_reduce_none,
1434
1633
  1, 247, :_reduce_none,
1435
1634
  1, 247, :_reduce_none,
1436
1635
  1, 247, :_reduce_none,
1437
- 1, 249, :_reduce_322,
1438
- 1, 250, :_reduce_323,
1439
- 2, 251, :_reduce_324,
1636
+ 1, 249, :_reduce_321,
1637
+ 1, 250, :_reduce_322,
1638
+ 2, 251, :_reduce_323,
1440
1639
  1, 248, :_reduce_none,
1441
1640
  1, 248, :_reduce_none,
1442
1641
  1, 248, :_reduce_none,
1443
- 2, 252, :_reduce_328,
1444
- 2, 253, :_reduce_329,
1445
- 3, 254, :_reduce_330,
1642
+ 2, 252, :_reduce_327,
1643
+ 2, 253, :_reduce_328,
1644
+ 3, 254, :_reduce_329,
1645
+ 1, 211, :_reduce_330,
1446
1646
  1, 212, :_reduce_331,
1447
1647
  1, 213, :_reduce_332,
1448
- 1, 214, :_reduce_333,
1449
- 1, 219, :_reduce_334,
1450
- 1, 241, :_reduce_335,
1451
- 1, 187, :_reduce_336,
1452
- 2, 234, :_reduce_337,
1453
- 4, 233, :_reduce_338,
1454
- 2, 256, :_reduce_339,
1455
- 1, 255, :_reduce_340,
1648
+ 1, 218, :_reduce_333,
1649
+ 1, 241, :_reduce_334,
1650
+ 1, 186, :_reduce_335,
1651
+ 2, 233, :_reduce_336,
1652
+ 4, 232, :_reduce_337,
1653
+ 2, 256, :_reduce_338,
1654
+ 1, 255, :_reduce_339,
1456
1655
  1, 257, :_reduce_none,
1457
1656
  2, 257, :_reduce_none,
1458
- 3, 258, :_reduce_343,
1459
- 2, 236, :_reduce_344,
1460
- 4, 235, :_reduce_345,
1461
- 2, 260, :_reduce_346,
1462
- 2, 262, :_reduce_347,
1463
- 1, 259, :_reduce_348,
1464
- 4, 263, :_reduce_349,
1657
+ 3, 258, :_reduce_342,
1658
+ 2, 235, :_reduce_343,
1659
+ 4, 234, :_reduce_344,
1660
+ 2, 260, :_reduce_345,
1661
+ 2, 262, :_reduce_346,
1662
+ 1, 259, :_reduce_347,
1663
+ 4, 263, :_reduce_348,
1465
1664
  1, 264, :_reduce_none,
1466
1665
  1, 264, :_reduce_none,
1467
1666
  1, 264, :_reduce_none,
@@ -1469,87 +1668,87 @@ racc_reduce_table = [
1469
1668
  1, 264, :_reduce_none,
1470
1669
  1, 261, :_reduce_none,
1471
1670
  2, 261, :_reduce_none,
1472
- 3, 265, :_reduce_357,
1473
- 1, 266, :_reduce_358,
1474
- 2, 266, :_reduce_359,
1475
- 3, 268, :_reduce_360,
1476
- 2, 268, :_reduce_361,
1477
- 2, 267, :_reduce_362,
1478
- 2, 237, :_reduce_363,
1479
- 2, 269, :_reduce_364,
1671
+ 3, 265, :_reduce_356,
1672
+ 1, 266, :_reduce_357,
1673
+ 2, 266, :_reduce_358,
1674
+ 3, 268, :_reduce_359,
1675
+ 2, 268, :_reduce_360,
1676
+ 2, 267, :_reduce_361,
1677
+ 2, 236, :_reduce_362,
1678
+ 2, 269, :_reduce_363,
1480
1679
  3, 270, :_reduce_none,
1481
1680
  1, 271, :_reduce_none,
1482
1681
  3, 271, :_reduce_none,
1483
- 1, 272, :_reduce_368,
1484
- 6, 131, :_reduce_369,
1485
- 4, 131, :_reduce_370,
1486
- 4, 216, :_reduce_371,
1487
- 1, 216, :_reduce_372,
1488
- 4, 217, :_reduce_373,
1489
- 1, 217, :_reduce_374,
1490
- 2, 246, :_reduce_375,
1491
- 1, 273, :_reduce_376,
1492
- 2, 273, :_reduce_377,
1493
- 3, 274, :_reduce_378,
1494
- 4, 155, :_reduce_379,
1495
- 4, 155, :_reduce_380,
1496
- 3, 155, :_reduce_381,
1682
+ 1, 272, :_reduce_367,
1683
+ 6, 131, :_reduce_368,
1684
+ 4, 131, :_reduce_369,
1685
+ 4, 215, :_reduce_370,
1686
+ 1, 215, :_reduce_371,
1687
+ 4, 216, :_reduce_372,
1688
+ 1, 216, :_reduce_373,
1689
+ 2, 246, :_reduce_374,
1690
+ 1, 273, :_reduce_375,
1691
+ 2, 273, :_reduce_376,
1692
+ 3, 274, :_reduce_377,
1693
+ 4, 154, :_reduce_378,
1694
+ 4, 154, :_reduce_379,
1695
+ 3, 154, :_reduce_380,
1497
1696
  1, 276, :_reduce_none,
1498
1697
  1, 276, :_reduce_none,
1499
1698
  1, 276, :_reduce_none,
1500
1699
  1, 276, :_reduce_none,
1501
1700
  1, 276, :_reduce_none,
1502
- 2, 278, :_reduce_387,
1503
- 2, 279, :_reduce_388,
1504
- 1, 280, :_reduce_389,
1505
- 1, 281, :_reduce_390,
1506
- 0, 282, :_reduce_391,
1507
- 3, 277, :_reduce_392,
1508
- 2, 275, :_reduce_393,
1509
- 1, 275, :_reduce_394,
1510
- 1, 285, :_reduce_395,
1511
- 3, 285, :_reduce_396,
1512
- 2, 110, :_reduce_397,
1513
- 2, 286, :_reduce_398,
1701
+ 2, 278, :_reduce_386,
1702
+ 2, 279, :_reduce_387,
1703
+ 1, 280, :_reduce_388,
1704
+ 1, 281, :_reduce_389,
1705
+ 0, 282, :_reduce_390,
1706
+ 3, 277, :_reduce_391,
1707
+ 2, 275, :_reduce_392,
1708
+ 1, 275, :_reduce_393,
1709
+ 1, 285, :_reduce_394,
1710
+ 3, 285, :_reduce_395,
1711
+ 2, 110, :_reduce_396,
1712
+ 2, 286, :_reduce_397,
1514
1713
  3, 287, :_reduce_none,
1515
1714
  0, 288, :_reduce_none,
1516
1715
  2, 288, :_reduce_none,
1517
- 3, 156, :_reduce_none,
1518
- 3, 289, :_reduce_403,
1519
- 2, 289, :_reduce_404,
1716
+ 3, 155, :_reduce_none,
1717
+ 3, 289, :_reduce_402,
1718
+ 2, 289, :_reduce_403,
1520
1719
  1, 290, :_reduce_none,
1521
- 2, 291, :_reduce_406,
1720
+ 2, 291, :_reduce_405,
1721
+ 1, 291, :_reduce_406,
1522
1722
  1, 291, :_reduce_407,
1523
- 1, 291, :_reduce_408,
1524
- 0, 291, :_reduce_409,
1525
- 1, 292, :_reduce_410,
1723
+ 0, 291, :_reduce_408,
1724
+ 1, 292, :_reduce_409,
1725
+ 1, 293, :_reduce_410,
1526
1726
  1, 293, :_reduce_411,
1527
- 1, 293, :_reduce_412,
1528
1727
  2, 294, :_reduce_none,
1529
1728
  3, 294, :_reduce_none,
1530
1729
  1, 296, :_reduce_none,
1531
1730
  3, 296, :_reduce_none,
1532
- 3, 297, :_reduce_417,
1731
+ 3, 297, :_reduce_416,
1732
+ 1, 298, :_reduce_417,
1533
1733
  1, 298, :_reduce_418,
1534
1734
  1, 298, :_reduce_419,
1535
- 1, 298, :_reduce_420,
1536
- 4, 206, :_reduce_421,
1537
- 4, 283, :_reduce_422,
1538
- 4, 284, :_reduce_423,
1539
- 1, 143, :_reduce_424,
1540
- 3, 143, :_reduce_425,
1541
- 4, 295, :_reduce_426,
1542
- 1, 299, :_reduce_427,
1543
- 3, 299, :_reduce_428,
1544
- 1, 209, :_reduce_429,
1545
- 1, 209, :_reduce_430,
1546
- 1, 209, :_reduce_431,
1547
- 1, 209, :_reduce_432,
1548
- 6, 243, :_reduce_433,
1549
- 1, 218, :_reduce_434,
1550
- 1, 242, :_reduce_435 ]
1551
-
1552
- racc_reduce_n = 436
1735
+ 4, 205, :_reduce_420,
1736
+ 4, 283, :_reduce_421,
1737
+ 4, 284, :_reduce_422,
1738
+ 1, 142, :_reduce_423,
1739
+ 3, 142, :_reduce_424,
1740
+ 4, 295, :_reduce_425,
1741
+ 1, 299, :_reduce_426,
1742
+ 3, 299, :_reduce_427,
1743
+ 1, 208, :_reduce_428,
1744
+ 1, 208, :_reduce_429,
1745
+ 1, 208, :_reduce_430,
1746
+ 1, 208, :_reduce_431,
1747
+ 6, 243, :_reduce_432,
1748
+ 1, 217, :_reduce_433,
1749
+ 1, 242, :_reduce_434 ]
1750
+
1751
+ racc_reduce_n = 435
1553
1752
 
1554
1753
  racc_shift_n = 735
1555
1754
 
@@ -1820,8 +2019,7 @@ Racc_token_to_s_table = [
1820
2019
  "fixed_module_definition",
1821
2020
  "template_module_inst_parameters",
1822
2021
  "template_module_inst_parameter",
1823
- "base_type_spec",
1824
- "template_type_spec",
2022
+ "simple_type_spec",
1825
2023
  "const_exp",
1826
2024
  "scoped_name",
1827
2025
  "_scoped_name_list",
@@ -1920,8 +2118,9 @@ Racc_token_to_s_table = [
1920
2118
  "union_forward_dcl",
1921
2119
  "enum_type",
1922
2120
  "native_declarator",
1923
- "simple_type_spec",
1924
2121
  "constr_type_spec",
2122
+ "base_type_spec",
2123
+ "template_type_spec",
1925
2124
  "any_type",
1926
2125
  "value_base_type",
1927
2126
  "fixed_pt_type",
@@ -2024,13 +2223,13 @@ Racc_debug_parser = true
2024
2223
 
2025
2224
  # reduce 18 omitted
2026
2225
 
2027
- module_eval(<<'.,.,', 'parser.ry', 39)
2226
+ module_eval(<<'.,.,', 'parser.ry', 38)
2028
2227
  def _reduce_19(val, _values)
2029
2228
  @d.end_module(val[0])
2030
2229
  end
2031
2230
  .,.,
2032
2231
 
2033
- module_eval(<<'.,.,', 'parser.ry', 42)
2232
+ module_eval(<<'.,.,', 'parser.ry', 41)
2034
2233
  def _reduce_20(val, _values)
2035
2234
  @d.define_module(val[1])
2036
2235
  end
@@ -2040,13 +2239,13 @@ module_eval(<<'.,.,', 'parser.ry', 42)
2040
2239
 
2041
2240
  # reduce 22 omitted
2042
2241
 
2043
- module_eval(<<'.,.,', 'parser.ry', 48)
2242
+ module_eval(<<'.,.,', 'parser.ry', 47)
2044
2243
  def _reduce_23(val, _values)
2045
2244
  @d.end_template_module(val[0])
2046
2245
  end
2047
2246
  .,.,
2048
2247
 
2049
- module_eval(<<'.,.,', 'parser.ry', 51)
2248
+ module_eval(<<'.,.,', 'parser.ry', 50)
2050
2249
  def _reduce_24(val, _values)
2051
2250
  @d.register_template_module_name(val[1])
2052
2251
  end
@@ -2056,67 +2255,67 @@ module_eval(<<'.,.,', 'parser.ry', 51)
2056
2255
 
2057
2256
  # reduce 26 omitted
2058
2257
 
2059
- module_eval(<<'.,.,', 'parser.ry', 57)
2258
+ module_eval(<<'.,.,', 'parser.ry', 56)
2060
2259
  def _reduce_27(val, _values)
2061
2260
  @d.define_template_parameter(val[1], IDL::Type::Any.new)
2062
2261
  end
2063
2262
  .,.,
2064
2263
 
2065
- module_eval(<<'.,.,', 'parser.ry', 59)
2264
+ module_eval(<<'.,.,', 'parser.ry', 58)
2066
2265
  def _reduce_28(val, _values)
2067
2266
  @d.define_template_parameter(val[1], IDL::Type::Interface.new(nil))
2068
2267
  end
2069
2268
  .,.,
2070
2269
 
2071
- module_eval(<<'.,.,', 'parser.ry', 61)
2270
+ module_eval(<<'.,.,', 'parser.ry', 60)
2072
2271
  def _reduce_29(val, _values)
2073
2272
  @d.define_template_parameter(val[1], IDL::Type::Valuetype.new(nil))
2074
2273
  end
2075
2274
  .,.,
2076
2275
 
2077
- module_eval(<<'.,.,', 'parser.ry', 63)
2276
+ module_eval(<<'.,.,', 'parser.ry', 62)
2078
2277
  def _reduce_30(val, _values)
2079
2278
  @d.define_template_parameter(val[1], IDL::Type::Eventtype.new(nil))
2080
2279
  end
2081
2280
  .,.,
2082
2281
 
2083
- module_eval(<<'.,.,', 'parser.ry', 65)
2282
+ module_eval(<<'.,.,', 'parser.ry', 64)
2084
2283
  def _reduce_31(val, _values)
2085
2284
  @d.define_template_parameter(val[1], IDL::Type::Struct.new(nil))
2086
2285
  end
2087
2286
  .,.,
2088
2287
 
2089
- module_eval(<<'.,.,', 'parser.ry', 67)
2288
+ module_eval(<<'.,.,', 'parser.ry', 66)
2090
2289
  def _reduce_32(val, _values)
2091
2290
  @d.define_template_parameter(val[1], IDL::Type::Union.new(nil))
2092
2291
  end
2093
2292
  .,.,
2094
2293
 
2095
- module_eval(<<'.,.,', 'parser.ry', 69)
2294
+ module_eval(<<'.,.,', 'parser.ry', 68)
2096
2295
  def _reduce_33(val, _values)
2097
2296
  @d.define_template_parameter(val[1], IDL::Type::Exception.new(nil))
2098
2297
  end
2099
2298
  .,.,
2100
2299
 
2101
- module_eval(<<'.,.,', 'parser.ry', 71)
2300
+ module_eval(<<'.,.,', 'parser.ry', 70)
2102
2301
  def _reduce_34(val, _values)
2103
2302
  @d.define_template_parameter(val[1], IDL::Type::Enum.new(nil))
2104
2303
  end
2105
2304
  .,.,
2106
2305
 
2107
- module_eval(<<'.,.,', 'parser.ry', 73)
2306
+ module_eval(<<'.,.,', 'parser.ry', 72)
2108
2307
  def _reduce_35(val, _values)
2109
2308
  @d.define_template_parameter(val[1], IDL::Type::Sequence.new(IDL::Type::Void.new, nil))
2110
2309
  end
2111
2310
  .,.,
2112
2311
 
2113
- module_eval(<<'.,.,', 'parser.ry', 75)
2312
+ module_eval(<<'.,.,', 'parser.ry', 74)
2114
2313
  def _reduce_36(val, _values)
2115
2314
  @d.define_template_parameter(val[2], IDL::Type::Const.new(val[1]))
2116
2315
  end
2117
2316
  .,.,
2118
2317
 
2119
- module_eval(<<'.,.,', 'parser.ry', 77)
2318
+ module_eval(<<'.,.,', 'parser.ry', 76)
2120
2319
  def _reduce_37(val, _values)
2121
2320
  @d.define_template_parameter(val[1], val[0])
2122
2321
  end
@@ -2154,7 +2353,7 @@ module_eval(<<'.,.,', 'parser.ry', 77)
2154
2353
 
2155
2354
  # reduce 53 omitted
2156
2355
 
2157
- module_eval(<<'.,.,', 'parser.ry', 98)
2356
+ module_eval(<<'.,.,', 'parser.ry', 97)
2158
2357
  def _reduce_54(val, _values)
2159
2358
  @d.end_module(val[0])
2160
2359
  end
@@ -2190,31 +2389,31 @@ module_eval(<<'.,.,', 'parser.ry', 98)
2190
2389
 
2191
2390
  # reduce 69 omitted
2192
2391
 
2193
- module_eval(<<'.,.,', 'parser.ry', 118)
2392
+ module_eval(<<'.,.,', 'parser.ry', 117)
2194
2393
  def _reduce_70(val, _values)
2195
2394
  @d.instantiate_template_module(val[4], val[2])
2196
2395
  end
2197
2396
  .,.,
2198
2397
 
2199
- module_eval(<<'.,.,', 'parser.ry', 121)
2398
+ module_eval(<<'.,.,', 'parser.ry', 120)
2200
2399
  def _reduce_71(val, _values)
2201
2400
  [val[0]]
2202
2401
  end
2203
2402
  .,.,
2204
2403
 
2205
- module_eval(<<'.,.,', 'parser.ry', 123)
2404
+ module_eval(<<'.,.,', 'parser.ry', 122)
2206
2405
  def _reduce_72(val, _values)
2207
2406
  val[0] << val[2]; val[0]
2208
2407
  end
2209
2408
  .,.,
2210
2409
 
2211
- module_eval(<<'.,.,', 'parser.ry', 126)
2410
+ module_eval(<<'.,.,', 'parser.ry', 125)
2212
2411
  def _reduce_73(val, _values)
2213
2412
  val[0]
2214
2413
  end
2215
2414
  .,.,
2216
2415
 
2217
- module_eval(<<'.,.,', 'parser.ry', 128)
2416
+ module_eval(<<'.,.,', 'parser.ry', 127)
2218
2417
  def _reduce_74(val, _values)
2219
2418
  val[0]
2220
2419
  end
@@ -2222,27 +2421,27 @@ module_eval(<<'.,.,', 'parser.ry', 128)
2222
2421
 
2223
2422
  module_eval(<<'.,.,', 'parser.ry', 130)
2224
2423
  def _reduce_75(val, _values)
2225
- val[0]
2226
- end
2227
- .,.,
2228
-
2229
- module_eval(<<'.,.,', 'parser.ry', 133)
2230
- def _reduce_76(val, _values)
2231
2424
  @d.declare_template_reference(val[5], val[1], val[3])
2232
2425
  end
2233
2426
  .,.,
2234
2427
 
2428
+ # reduce 76 omitted
2429
+
2235
2430
  # reduce 77 omitted
2236
2431
 
2237
- # reduce 78 omitted
2432
+ module_eval(<<'.,.,', 'parser.ry', 137)
2433
+ def _reduce_78(val, _values)
2434
+ @d.declare_interface(val[1], val[0])
2435
+ end
2436
+ .,.,
2238
2437
 
2239
- module_eval(<<'.,.,', 'parser.ry', 140)
2438
+ module_eval(<<'.,.,', 'parser.ry', 139)
2240
2439
  def _reduce_79(val, _values)
2241
2440
  @d.declare_interface(val[1], val[0])
2242
2441
  end
2243
2442
  .,.,
2244
2443
 
2245
- module_eval(<<'.,.,', 'parser.ry', 142)
2444
+ module_eval(<<'.,.,', 'parser.ry', 141)
2246
2445
  def _reduce_80(val, _values)
2247
2446
  @d.declare_interface(val[1], val[0])
2248
2447
  end
@@ -2250,11 +2449,11 @@ module_eval(<<'.,.,', 'parser.ry', 142)
2250
2449
 
2251
2450
  module_eval(<<'.,.,', 'parser.ry', 144)
2252
2451
  def _reduce_81(val, _values)
2253
- @d.declare_interface(val[1], val[0])
2452
+ @d.end_interface(val[0])
2254
2453
  end
2255
2454
  .,.,
2256
2455
 
2257
- module_eval(<<'.,.,', 'parser.ry', 147)
2456
+ module_eval(<<'.,.,', 'parser.ry', 146)
2258
2457
  def _reduce_82(val, _values)
2259
2458
  @d.end_interface(val[0])
2260
2459
  end
@@ -2262,76 +2461,72 @@ module_eval(<<'.,.,', 'parser.ry', 147)
2262
2461
 
2263
2462
  module_eval(<<'.,.,', 'parser.ry', 149)
2264
2463
  def _reduce_83(val, _values)
2265
- @d.end_interface(val[0])
2464
+ @d.define_interface(val[1], val[0], val[2])
2266
2465
  end
2267
2466
  .,.,
2268
2467
 
2269
- module_eval(<<'.,.,', 'parser.ry', 152)
2468
+ module_eval(<<'.,.,', 'parser.ry', 151)
2270
2469
  def _reduce_84(val, _values)
2271
- @d.define_interface(val[1], val[0], val[2])
2470
+ @d.define_interface(val[1], val[0])
2272
2471
  end
2273
2472
  .,.,
2274
2473
 
2275
- module_eval(<<'.,.,', 'parser.ry', 154)
2474
+ module_eval(<<'.,.,', 'parser.ry', 153)
2276
2475
  def _reduce_85(val, _values)
2277
- @d.define_interface(val[1], val[0])
2476
+ @d.define_interface(val[1], val[0], val[2])
2278
2477
  end
2279
2478
  .,.,
2280
2479
 
2281
- module_eval(<<'.,.,', 'parser.ry', 156)
2480
+ module_eval(<<'.,.,', 'parser.ry', 155)
2282
2481
  def _reduce_86(val, _values)
2283
- @d.define_interface(val[1], val[0], val[2])
2482
+ @d.define_interface(val[1], val[0])
2284
2483
  end
2285
2484
  .,.,
2286
2485
 
2287
- module_eval(<<'.,.,', 'parser.ry', 158)
2486
+ module_eval(<<'.,.,', 'parser.ry', 157)
2288
2487
  def _reduce_87(val, _values)
2289
- @d.define_interface(val[1], val[0])
2488
+ @d.define_interface(val[1], val[0], val[2])
2290
2489
  end
2291
2490
  .,.,
2292
2491
 
2293
- module_eval(<<'.,.,', 'parser.ry', 160)
2492
+ module_eval(<<'.,.,', 'parser.ry', 159)
2294
2493
  def _reduce_88(val, _values)
2295
- @d.define_interface(val[1], val[0], val[2])
2494
+ @d.define_interface(val[1], val[0])
2296
2495
  end
2297
2496
  .,.,
2298
2497
 
2299
- module_eval(<<'.,.,', 'parser.ry', 162)
2498
+ module_eval(<<'.,.,', 'parser.ry', 161)
2300
2499
  def _reduce_89(val, _values)
2301
- @d.define_interface(val[1], val[0])
2500
+ :local
2302
2501
  end
2303
2502
  .,.,
2304
2503
 
2305
- module_eval(<<'.,.,', 'parser.ry', 164)
2504
+ module_eval(<<'.,.,', 'parser.ry', 163)
2306
2505
  def _reduce_90(val, _values)
2307
- :local
2506
+ :abstract
2308
2507
  end
2309
2508
  .,.,
2310
2509
 
2311
2510
  module_eval(<<'.,.,', 'parser.ry', 166)
2312
2511
  def _reduce_91(val, _values)
2313
- :abstract
2314
- end
2315
- .,.,
2316
-
2317
- module_eval(<<'.,.,', 'parser.ry', 169)
2318
- def _reduce_92(val, _values)
2319
2512
  @d.define_interface(val[1], val[0])
2320
2513
  end
2321
2514
  .,.,
2322
2515
 
2323
- module_eval(<<'.,.,', 'parser.ry', 171)
2324
- def _reduce_93(val, _values)
2516
+ module_eval(<<'.,.,', 'parser.ry', 168)
2517
+ def _reduce_92(val, _values)
2325
2518
  :pseudo
2326
2519
  end
2327
2520
  .,.,
2328
2521
 
2329
- module_eval(<<'.,.,', 'parser.ry', 173)
2330
- def _reduce_94(val, _values)
2522
+ module_eval(<<'.,.,', 'parser.ry', 170)
2523
+ def _reduce_93(val, _values)
2331
2524
  :none
2332
2525
  end
2333
2526
  .,.,
2334
2527
 
2528
+ # reduce 94 omitted
2529
+
2335
2530
  # reduce 95 omitted
2336
2531
 
2337
2532
  # reduce 96 omitted
@@ -2350,82 +2545,82 @@ module_eval(<<'.,.,', 'parser.ry', 173)
2350
2545
 
2351
2546
  # reduce 103 omitted
2352
2547
 
2353
- # reduce 104 omitted
2354
-
2355
- module_eval(<<'.,.,', 'parser.ry', 187)
2356
- def _reduce_105(val, _values)
2548
+ module_eval(<<'.,.,', 'parser.ry', 184)
2549
+ def _reduce_104(val, _values)
2357
2550
  val[1]
2358
2551
  end
2359
2552
  .,.,
2360
2553
 
2361
- module_eval(<<'.,.,', 'parser.ry', 188)
2362
- def _reduce_106(val, _values)
2554
+ module_eval(<<'.,.,', 'parser.ry', 185)
2555
+ def _reduce_105(val, _values)
2363
2556
  [val[0]]
2364
2557
  end
2365
2558
  .,.,
2366
2559
 
2367
- module_eval(<<'.,.,', 'parser.ry', 190)
2368
- def _reduce_107(val, _values)
2560
+ module_eval(<<'.,.,', 'parser.ry', 187)
2561
+ def _reduce_106(val, _values)
2369
2562
  val[0] << val[2]; val[0]
2370
2563
  end
2371
2564
  .,.,
2372
2565
 
2373
- # reduce 108 omitted
2566
+ # reduce 107 omitted
2374
2567
 
2375
- module_eval(<<'.,.,', 'parser.ry', 195)
2376
- def _reduce_109(val, _values)
2568
+ module_eval(<<'.,.,', 'parser.ry', 192)
2569
+ def _reduce_108(val, _values)
2377
2570
  @d.end_home(val[0])
2378
2571
  end
2379
2572
  .,.,
2380
2573
 
2381
- module_eval(<<'.,.,', 'parser.ry', 198)
2382
- def _reduce_110(val, _values)
2574
+ module_eval(<<'.,.,', 'parser.ry', 195)
2575
+ def _reduce_109(val, _values)
2383
2576
  @d.define_home(val[1], val[3], val[7], val[9], val[5])
2384
2577
  end
2385
2578
  .,.,
2386
2579
 
2387
- module_eval(<<'.,.,', 'parser.ry', 200)
2388
- def _reduce_111(val, _values)
2580
+ module_eval(<<'.,.,', 'parser.ry', 197)
2581
+ def _reduce_110(val, _values)
2389
2582
  @d.define_home(val[1], val[3], val[7], nil, val[5])
2390
2583
  end
2391
2584
  .,.,
2392
2585
 
2393
- module_eval(<<'.,.,', 'parser.ry', 202)
2394
- def _reduce_112(val, _values)
2586
+ module_eval(<<'.,.,', 'parser.ry', 199)
2587
+ def _reduce_111(val, _values)
2395
2588
  @d.define_home(val[1], val[3], val[5], val[7], nil)
2396
2589
  end
2397
2590
  .,.,
2398
2591
 
2399
- module_eval(<<'.,.,', 'parser.ry', 204)
2400
- def _reduce_113(val, _values)
2592
+ module_eval(<<'.,.,', 'parser.ry', 201)
2593
+ def _reduce_112(val, _values)
2401
2594
  @d.define_home(val[1], nil, val[5], val[7], val[3])
2402
2595
  end
2403
2596
  .,.,
2404
2597
 
2405
- module_eval(<<'.,.,', 'parser.ry', 206)
2406
- def _reduce_114(val, _values)
2598
+ module_eval(<<'.,.,', 'parser.ry', 203)
2599
+ def _reduce_113(val, _values)
2407
2600
  @d.define_home(val[1], nil, val[5], nil, val[3])
2408
2601
  end
2409
2602
  .,.,
2410
2603
 
2411
- module_eval(<<'.,.,', 'parser.ry', 208)
2412
- def _reduce_115(val, _values)
2604
+ module_eval(<<'.,.,', 'parser.ry', 205)
2605
+ def _reduce_114(val, _values)
2413
2606
  @d.define_home(val[1], val[3], val[5], nil, nil)
2414
2607
  end
2415
2608
  .,.,
2416
2609
 
2417
- module_eval(<<'.,.,', 'parser.ry', 210)
2418
- def _reduce_116(val, _values)
2610
+ module_eval(<<'.,.,', 'parser.ry', 207)
2611
+ def _reduce_115(val, _values)
2419
2612
  @d.define_home(val[1], nil, val[3], val[5], nil)
2420
2613
  end
2421
2614
  .,.,
2422
2615
 
2423
- module_eval(<<'.,.,', 'parser.ry', 212)
2424
- def _reduce_117(val, _values)
2616
+ module_eval(<<'.,.,', 'parser.ry', 209)
2617
+ def _reduce_116(val, _values)
2425
2618
  @d.define_home(val[1], nil, val[3], nil, nil)
2426
2619
  end
2427
2620
  .,.,
2428
2621
 
2622
+ # reduce 117 omitted
2623
+
2429
2624
  # reduce 118 omitted
2430
2625
 
2431
2626
  # reduce 119 omitted
@@ -2440,20 +2635,20 @@ module_eval(<<'.,.,', 'parser.ry', 212)
2440
2635
 
2441
2636
  # reduce 124 omitted
2442
2637
 
2443
- # reduce 125 omitted
2444
-
2445
- module_eval(<<'.,.,', 'parser.ry', 228)
2446
- def _reduce_126(val, _values)
2638
+ module_eval(<<'.,.,', 'parser.ry', 225)
2639
+ def _reduce_125(val, _values)
2447
2640
  @d.end_porttype(val[0])
2448
2641
  end
2449
2642
  .,.,
2450
2643
 
2451
- module_eval(<<'.,.,', 'parser.ry', 231)
2452
- def _reduce_127(val, _values)
2644
+ module_eval(<<'.,.,', 'parser.ry', 228)
2645
+ def _reduce_126(val, _values)
2453
2646
  @d.define_porttype(val[1])
2454
2647
  end
2455
2648
  .,.,
2456
2649
 
2650
+ # reduce 127 omitted
2651
+
2457
2652
  # reduce 128 omitted
2458
2653
 
2459
2654
  # reduce 129 omitted
@@ -2466,44 +2661,44 @@ module_eval(<<'.,.,', 'parser.ry', 231)
2466
2661
 
2467
2662
  # reduce 133 omitted
2468
2663
 
2469
- # reduce 134 omitted
2470
-
2471
- module_eval(<<'.,.,', 'parser.ry', 244)
2472
- def _reduce_135(val, _values)
2664
+ module_eval(<<'.,.,', 'parser.ry', 241)
2665
+ def _reduce_134(val, _values)
2473
2666
  @d.declare_component(val[1])
2474
2667
  end
2475
2668
  .,.,
2476
2669
 
2477
- module_eval(<<'.,.,', 'parser.ry', 247)
2478
- def _reduce_136(val, _values)
2670
+ module_eval(<<'.,.,', 'parser.ry', 244)
2671
+ def _reduce_135(val, _values)
2479
2672
  @d.end_component(val[0])
2480
2673
  end
2481
2674
  .,.,
2482
2675
 
2483
- module_eval(<<'.,.,', 'parser.ry', 250)
2484
- def _reduce_137(val, _values)
2676
+ module_eval(<<'.,.,', 'parser.ry', 247)
2677
+ def _reduce_136(val, _values)
2485
2678
  @d.define_component(val[1], val[3], val[5])
2486
2679
  end
2487
2680
  .,.,
2488
2681
 
2489
- module_eval(<<'.,.,', 'parser.ry', 252)
2490
- def _reduce_138(val, _values)
2682
+ module_eval(<<'.,.,', 'parser.ry', 249)
2683
+ def _reduce_137(val, _values)
2491
2684
  @d.define_component(val[1], val[3], nil)
2492
2685
  end
2493
2686
  .,.,
2494
2687
 
2495
- module_eval(<<'.,.,', 'parser.ry', 254)
2496
- def _reduce_139(val, _values)
2688
+ module_eval(<<'.,.,', 'parser.ry', 251)
2689
+ def _reduce_138(val, _values)
2497
2690
  @d.define_component(val[1], nil, val[3])
2498
2691
  end
2499
2692
  .,.,
2500
2693
 
2501
- module_eval(<<'.,.,', 'parser.ry', 256)
2502
- def _reduce_140(val, _values)
2694
+ module_eval(<<'.,.,', 'parser.ry', 253)
2695
+ def _reduce_139(val, _values)
2503
2696
  @d.define_component(val[1], nil, nil)
2504
2697
  end
2505
2698
  .,.,
2506
2699
 
2700
+ # reduce 140 omitted
2701
+
2507
2702
  # reduce 141 omitted
2508
2703
 
2509
2704
  # reduce 142 omitted
@@ -2526,26 +2721,26 @@ module_eval(<<'.,.,', 'parser.ry', 256)
2526
2721
 
2527
2722
  # reduce 151 omitted
2528
2723
 
2529
- # reduce 152 omitted
2530
-
2531
- module_eval(<<'.,.,', 'parser.ry', 275)
2532
- def _reduce_153(val, _values)
2724
+ module_eval(<<'.,.,', 'parser.ry', 272)
2725
+ def _reduce_152(val, _values)
2533
2726
  @d.end_connector(val[0])
2534
2727
  end
2535
2728
  .,.,
2536
2729
 
2537
- module_eval(<<'.,.,', 'parser.ry', 278)
2538
- def _reduce_154(val, _values)
2730
+ module_eval(<<'.,.,', 'parser.ry', 275)
2731
+ def _reduce_153(val, _values)
2539
2732
  @d.define_connector(val[1], val[3])
2540
2733
  end
2541
2734
  .,.,
2542
2735
 
2543
- module_eval(<<'.,.,', 'parser.ry', 280)
2544
- def _reduce_155(val, _values)
2736
+ module_eval(<<'.,.,', 'parser.ry', 277)
2737
+ def _reduce_154(val, _values)
2545
2738
  @d.define_connector(val[1], nil)
2546
2739
  end
2547
2740
  .,.,
2548
2741
 
2742
+ # reduce 155 omitted
2743
+
2549
2744
  # reduce 156 omitted
2550
2745
 
2551
2746
  # reduce 157 omitted
@@ -2558,370 +2753,370 @@ module_eval(<<'.,.,', 'parser.ry', 280)
2558
2753
 
2559
2754
  # reduce 161 omitted
2560
2755
 
2561
- # reduce 162 omitted
2756
+ module_eval(<<'.,.,', 'parser.ry', 289)
2757
+ def _reduce_162(val, _values)
2758
+ @d.declare_port(val[2], :facet, val[1])
2759
+ end
2760
+ .,.,
2562
2761
 
2563
2762
  module_eval(<<'.,.,', 'parser.ry', 292)
2564
2763
  def _reduce_163(val, _values)
2565
- @d.declare_port(val[2], :facet, val[1])
2764
+ @d.declare_port(val[3], :receptacle, val[2], true)
2566
2765
  end
2567
2766
  .,.,
2568
2767
 
2569
- module_eval(<<'.,.,', 'parser.ry', 295)
2768
+ module_eval(<<'.,.,', 'parser.ry', 294)
2570
2769
  def _reduce_164(val, _values)
2571
- @d.declare_port(val[3], :receptacle, val[2], true)
2770
+ @d.declare_port(val[2], :receptacle, val[1], false)
2572
2771
  end
2573
2772
  .,.,
2574
2773
 
2575
2774
  module_eval(<<'.,.,', 'parser.ry', 297)
2576
2775
  def _reduce_165(val, _values)
2577
- @d.declare_port(val[2], :receptacle, val[1], false)
2776
+ @d.declare_port(val[2], :publisher, val[1])
2578
2777
  end
2579
2778
  .,.,
2580
2779
 
2581
2780
  module_eval(<<'.,.,', 'parser.ry', 300)
2582
2781
  def _reduce_166(val, _values)
2583
- @d.declare_port(val[2], :publisher, val[1])
2782
+ @d.declare_port(val[2], :emitter, val[1])
2584
2783
  end
2585
2784
  .,.,
2586
2785
 
2587
2786
  module_eval(<<'.,.,', 'parser.ry', 303)
2588
2787
  def _reduce_167(val, _values)
2589
- @d.declare_port(val[2], :emitter, val[1])
2788
+ @d.declare_port(val[2], :consumer, val[1])
2590
2789
  end
2591
2790
  .,.,
2592
2791
 
2593
2792
  module_eval(<<'.,.,', 'parser.ry', 306)
2594
2793
  def _reduce_168(val, _values)
2595
- @d.declare_port(val[2], :consumer, val[1])
2596
- end
2597
- .,.,
2598
-
2599
- module_eval(<<'.,.,', 'parser.ry', 309)
2600
- def _reduce_169(val, _values)
2601
2794
  @d.declare_port(val[2], :port, val[1])
2602
2795
  end
2603
2796
  .,.,
2604
2797
 
2605
- module_eval(<<'.,.,', 'parser.ry', 311)
2606
- def _reduce_170(val, _values)
2798
+ module_eval(<<'.,.,', 'parser.ry', 308)
2799
+ def _reduce_169(val, _values)
2607
2800
  @d.declare_port(val[2], :mirrorport, val[1])
2608
2801
  end
2609
2802
  .,.,
2610
2803
 
2611
- # reduce 171 omitted
2804
+ # reduce 170 omitted
2612
2805
 
2613
- # reduce 172 omitted
2806
+ # reduce 171 omitted
2614
2807
 
2615
- module_eval(<<'.,.,', 'parser.ry', 316)
2616
- def _reduce_173(val, _values)
2808
+ module_eval(<<'.,.,', 'parser.ry', 313)
2809
+ def _reduce_172(val, _values)
2617
2810
  @d.parse_scopedname(*val[0])
2618
2811
  end
2619
2812
  .,.,
2620
2813
 
2621
- module_eval(<<'.,.,', 'parser.ry', 318)
2622
- def _reduce_174(val, _values)
2814
+ module_eval(<<'.,.,', 'parser.ry', 315)
2815
+ def _reduce_173(val, _values)
2623
2816
  [false, [val[0]]]
2624
2817
  end
2625
2818
  .,.,
2626
2819
 
2627
- module_eval(<<'.,.,', 'parser.ry', 319)
2628
- def _reduce_175(val, _values)
2820
+ module_eval(<<'.,.,', 'parser.ry', 316)
2821
+ def _reduce_174(val, _values)
2629
2822
  [true, [val[1]]]
2630
2823
  end
2631
2824
  .,.,
2632
2825
 
2633
- module_eval(<<'.,.,', 'parser.ry', 321)
2634
- def _reduce_176(val, _values)
2826
+ module_eval(<<'.,.,', 'parser.ry', 318)
2827
+ def _reduce_175(val, _values)
2635
2828
  val[0][1] << val[2]; val[0]
2636
2829
  end
2637
2830
  .,.,
2638
2831
 
2639
- # reduce 177 omitted
2832
+ # reduce 176 omitted
2640
2833
 
2641
- # reduce 178 omitted
2834
+ # reduce 177 omitted
2642
2835
 
2643
- module_eval(<<'.,.,', 'parser.ry', 327)
2644
- def _reduce_179(val, _values)
2836
+ module_eval(<<'.,.,', 'parser.ry', 324)
2837
+ def _reduce_178(val, _values)
2645
2838
  @d.declare_eventtype(val[2], :abstract)
2646
2839
  end
2647
2840
  .,.,
2648
2841
 
2649
- module_eval(<<'.,.,', 'parser.ry', 329)
2650
- def _reduce_180(val, _values)
2842
+ module_eval(<<'.,.,', 'parser.ry', 326)
2843
+ def _reduce_179(val, _values)
2651
2844
  @d.declare_eventtype(val[1], :none)
2652
2845
  end
2653
2846
  .,.,
2654
2847
 
2655
- module_eval(<<'.,.,', 'parser.ry', 332)
2656
- def _reduce_181(val, _values)
2848
+ module_eval(<<'.,.,', 'parser.ry', 329)
2849
+ def _reduce_180(val, _values)
2657
2850
  @d.end_eventtype(val[0])
2658
2851
  end
2659
2852
  .,.,
2660
2853
 
2661
- module_eval(<<'.,.,', 'parser.ry', 335)
2662
- def _reduce_182(val, _values)
2854
+ module_eval(<<'.,.,', 'parser.ry', 332)
2855
+ def _reduce_181(val, _values)
2663
2856
  @d.define_eventtype(val[2], :abstract, val[3])
2664
2857
  end
2665
2858
  .,.,
2666
2859
 
2667
- module_eval(<<'.,.,', 'parser.ry', 337)
2668
- def _reduce_183(val, _values)
2860
+ module_eval(<<'.,.,', 'parser.ry', 334)
2861
+ def _reduce_182(val, _values)
2669
2862
  @d.define_eventtype(val[2], :abstract)
2670
2863
  end
2671
2864
  .,.,
2672
2865
 
2673
- module_eval(<<'.,.,', 'parser.ry', 339)
2674
- def _reduce_184(val, _values)
2866
+ module_eval(<<'.,.,', 'parser.ry', 336)
2867
+ def _reduce_183(val, _values)
2675
2868
  @d.define_eventtype(val[2], :custom, val[3])
2676
2869
  end
2677
2870
  .,.,
2678
2871
 
2679
- module_eval(<<'.,.,', 'parser.ry', 341)
2680
- def _reduce_185(val, _values)
2872
+ module_eval(<<'.,.,', 'parser.ry', 338)
2873
+ def _reduce_184(val, _values)
2681
2874
  @d.define_eventtype(val[2], :custom)
2682
2875
  end
2683
2876
  .,.,
2684
2877
 
2685
- module_eval(<<'.,.,', 'parser.ry', 343)
2686
- def _reduce_186(val, _values)
2878
+ module_eval(<<'.,.,', 'parser.ry', 340)
2879
+ def _reduce_185(val, _values)
2687
2880
  @d.define_eventtype(val[1], :none, val[2])
2688
2881
  end
2689
2882
  .,.,
2690
2883
 
2691
- module_eval(<<'.,.,', 'parser.ry', 345)
2692
- def _reduce_187(val, _values)
2884
+ module_eval(<<'.,.,', 'parser.ry', 342)
2885
+ def _reduce_186(val, _values)
2693
2886
  @d.define_eventtype(val[1], :none)
2694
2887
  end
2695
2888
  .,.,
2696
2889
 
2890
+ # reduce 187 omitted
2891
+
2697
2892
  # reduce 188 omitted
2698
2893
 
2699
2894
  # reduce 189 omitted
2700
2895
 
2701
- # reduce 190 omitted
2702
-
2703
- module_eval(<<'.,.,', 'parser.ry', 352)
2704
- def _reduce_191(val, _values)
2896
+ module_eval(<<'.,.,', 'parser.ry', 349)
2897
+ def _reduce_190(val, _values)
2705
2898
  @d.declare_valuetype(val[2], :abstract)
2706
2899
  end
2707
2900
  .,.,
2708
2901
 
2709
- module_eval(<<'.,.,', 'parser.ry', 354)
2710
- def _reduce_192(val, _values)
2902
+ module_eval(<<'.,.,', 'parser.ry', 351)
2903
+ def _reduce_191(val, _values)
2711
2904
  @d.declare_valuetype(val[1], :none)
2712
2905
  end
2713
2906
  .,.,
2714
2907
 
2715
- module_eval(<<'.,.,', 'parser.ry', 357)
2716
- def _reduce_193(val, _values)
2908
+ module_eval(<<'.,.,', 'parser.ry', 354)
2909
+ def _reduce_192(val, _values)
2717
2910
  @d.define_valuebox(val[1], val[2])
2718
2911
  end
2719
2912
  .,.,
2720
2913
 
2721
- module_eval(<<'.,.,', 'parser.ry', 360)
2722
- def _reduce_194(val, _values)
2914
+ module_eval(<<'.,.,', 'parser.ry', 357)
2915
+ def _reduce_193(val, _values)
2723
2916
  @d.end_valuetype(val[0])
2724
2917
  end
2725
2918
  .,.,
2726
2919
 
2727
- module_eval(<<'.,.,', 'parser.ry', 363)
2728
- def _reduce_195(val, _values)
2920
+ module_eval(<<'.,.,', 'parser.ry', 360)
2921
+ def _reduce_194(val, _values)
2729
2922
  @d.define_valuetype(val[2], :abstract, val[3])
2730
2923
  end
2731
2924
  .,.,
2732
2925
 
2733
- module_eval(<<'.,.,', 'parser.ry', 365)
2734
- def _reduce_196(val, _values)
2926
+ module_eval(<<'.,.,', 'parser.ry', 362)
2927
+ def _reduce_195(val, _values)
2735
2928
  @d.define_valuetype(val[2], :abstract)
2736
2929
  end
2737
2930
  .,.,
2738
2931
 
2739
- module_eval(<<'.,.,', 'parser.ry', 367)
2740
- def _reduce_197(val, _values)
2932
+ module_eval(<<'.,.,', 'parser.ry', 364)
2933
+ def _reduce_196(val, _values)
2741
2934
  @d.define_valuetype(val[2], :custom, val[3])
2742
2935
  end
2743
2936
  .,.,
2744
2937
 
2745
- module_eval(<<'.,.,', 'parser.ry', 369)
2746
- def _reduce_198(val, _values)
2938
+ module_eval(<<'.,.,', 'parser.ry', 366)
2939
+ def _reduce_197(val, _values)
2747
2940
  @d.define_valuetype(val[2], :custom)
2748
2941
  end
2749
2942
  .,.,
2750
2943
 
2751
- module_eval(<<'.,.,', 'parser.ry', 371)
2752
- def _reduce_199(val, _values)
2944
+ module_eval(<<'.,.,', 'parser.ry', 368)
2945
+ def _reduce_198(val, _values)
2753
2946
  @d.define_valuetype(val[1], :none, val[2])
2754
2947
  end
2755
2948
  .,.,
2756
2949
 
2757
- module_eval(<<'.,.,', 'parser.ry', 373)
2758
- def _reduce_200(val, _values)
2950
+ module_eval(<<'.,.,', 'parser.ry', 370)
2951
+ def _reduce_199(val, _values)
2759
2952
  @d.define_valuetype(val[1], :none)
2760
2953
  end
2761
2954
  .,.,
2762
2955
 
2763
- # reduce 201 omitted
2956
+ # reduce 200 omitted
2764
2957
 
2765
- # reduce 202 omitted
2958
+ # reduce 201 omitted
2766
2959
 
2767
- module_eval(<<'.,.,', 'parser.ry', 379)
2768
- def _reduce_203(val, _values)
2960
+ module_eval(<<'.,.,', 'parser.ry', 376)
2961
+ def _reduce_202(val, _values)
2769
2962
  Hash[ :base => val[0], :supports => val[1] ]
2770
2963
  end
2771
2964
  .,.,
2772
2965
 
2773
- module_eval(<<'.,.,', 'parser.ry', 381)
2774
- def _reduce_204(val, _values)
2966
+ module_eval(<<'.,.,', 'parser.ry', 378)
2967
+ def _reduce_203(val, _values)
2775
2968
  Hash[ :base => val[0] ]
2776
2969
  end
2777
2970
  .,.,
2778
2971
 
2779
- module_eval(<<'.,.,', 'parser.ry', 383)
2780
- def _reduce_205(val, _values)
2972
+ module_eval(<<'.,.,', 'parser.ry', 380)
2973
+ def _reduce_204(val, _values)
2781
2974
  Hash[ :supports => val[0] ]
2782
2975
  end
2783
2976
  .,.,
2784
2977
 
2785
- module_eval(<<'.,.,', 'parser.ry', 386)
2786
- def _reduce_206(val, _values)
2978
+ module_eval(<<'.,.,', 'parser.ry', 383)
2979
+ def _reduce_205(val, _values)
2787
2980
  Hash[ :truncatable => true, :list => val[2] ]
2788
2981
  end
2789
2982
  .,.,
2790
2983
 
2791
- module_eval(<<'.,.,', 'parser.ry', 388)
2792
- def _reduce_207(val, _values)
2984
+ module_eval(<<'.,.,', 'parser.ry', 385)
2985
+ def _reduce_206(val, _values)
2793
2986
  Hash[ :truncatable => false, :list => val[1] ]
2794
2987
  end
2795
2988
  .,.,
2796
2989
 
2797
- module_eval(<<'.,.,', 'parser.ry', 391)
2798
- def _reduce_208(val, _values)
2990
+ module_eval(<<'.,.,', 'parser.ry', 388)
2991
+ def _reduce_207(val, _values)
2799
2992
  val[1]
2800
2993
  end
2801
2994
  .,.,
2802
2995
 
2803
- module_eval(<<'.,.,', 'parser.ry', 393)
2804
- def _reduce_209(val, _values)
2996
+ module_eval(<<'.,.,', 'parser.ry', 390)
2997
+ def _reduce_208(val, _values)
2805
2998
  val
2806
2999
  end
2807
3000
  .,.,
2808
3001
 
2809
- module_eval(<<'.,.,', 'parser.ry', 394)
2810
- def _reduce_210(val, _values)
3002
+ module_eval(<<'.,.,', 'parser.ry', 391)
3003
+ def _reduce_209(val, _values)
2811
3004
  val[0] << val[2]; val[0]
2812
3005
  end
2813
3006
  .,.,
2814
3007
 
3008
+ # reduce 210 omitted
3009
+
2815
3010
  # reduce 211 omitted
2816
3011
 
2817
3012
  # reduce 212 omitted
2818
3013
 
2819
3014
  # reduce 213 omitted
2820
3015
 
2821
- # reduce 214 omitted
2822
-
2823
- module_eval(<<'.,.,', 'parser.ry', 404)
2824
- def _reduce_215(val, _values)
3016
+ module_eval(<<'.,.,', 'parser.ry', 401)
3017
+ def _reduce_214(val, _values)
2825
3018
  dcls = parse_type_declarator(val[1], val[2])
2826
3019
  dcls.each { |d| @d.declare_state_member(d[0], d[1], true) }
2827
3020
 
2828
3021
  end
2829
3022
  .,.,
2830
3023
 
2831
- module_eval(<<'.,.,', 'parser.ry', 409)
2832
- def _reduce_216(val, _values)
3024
+ module_eval(<<'.,.,', 'parser.ry', 406)
3025
+ def _reduce_215(val, _values)
2833
3026
  dcls = parse_type_declarator(val[1], val[2])
2834
3027
  dcls.each { |d| @d.declare_state_member(d[0], d[1], false) }
2835
3028
 
2836
3029
  end
2837
3030
  .,.,
2838
3031
 
2839
- module_eval(<<'.,.,', 'parser.ry', 414)
2840
- def _reduce_217(val, _values)
3032
+ module_eval(<<'.,.,', 'parser.ry', 411)
3033
+ def _reduce_216(val, _values)
2841
3034
  @d.declare_initializer(val[1], [], [])
2842
3035
  end
2843
3036
  .,.,
2844
3037
 
2845
- module_eval(<<'.,.,', 'parser.ry', 416)
2846
- def _reduce_218(val, _values)
3038
+ module_eval(<<'.,.,', 'parser.ry', 413)
3039
+ def _reduce_217(val, _values)
2847
3040
  @d.declare_initializer(val[1], val[3], [])
2848
3041
  end
2849
3042
  .,.,
2850
3043
 
2851
- module_eval(<<'.,.,', 'parser.ry', 418)
2852
- def _reduce_219(val, _values)
3044
+ module_eval(<<'.,.,', 'parser.ry', 415)
3045
+ def _reduce_218(val, _values)
2853
3046
  @d.declare_initializer(val[1], [], val[4])
2854
3047
  end
2855
3048
  .,.,
2856
3049
 
2857
- module_eval(<<'.,.,', 'parser.ry', 420)
2858
- def _reduce_220(val, _values)
3050
+ module_eval(<<'.,.,', 'parser.ry', 417)
3051
+ def _reduce_219(val, _values)
2859
3052
  @d.declare_initializer(val[1], val[3], val[5])
2860
3053
  end
2861
3054
  .,.,
2862
3055
 
2863
- module_eval(<<'.,.,', 'parser.ry', 423)
2864
- def _reduce_221(val, _values)
3056
+ module_eval(<<'.,.,', 'parser.ry', 420)
3057
+ def _reduce_220(val, _values)
2865
3058
  @d.declare_finder(val[1], [], [])
2866
3059
  end
2867
3060
  .,.,
2868
3061
 
2869
- module_eval(<<'.,.,', 'parser.ry', 425)
2870
- def _reduce_222(val, _values)
3062
+ module_eval(<<'.,.,', 'parser.ry', 422)
3063
+ def _reduce_221(val, _values)
2871
3064
  @d.declare_finder(val[1], val[3], [])
2872
3065
  end
2873
3066
  .,.,
2874
3067
 
2875
- module_eval(<<'.,.,', 'parser.ry', 427)
2876
- def _reduce_223(val, _values)
3068
+ module_eval(<<'.,.,', 'parser.ry', 424)
3069
+ def _reduce_222(val, _values)
2877
3070
  @d.declare_finder(val[1], [], val[4])
2878
3071
  end
2879
3072
  .,.,
2880
3073
 
2881
- module_eval(<<'.,.,', 'parser.ry', 429)
2882
- def _reduce_224(val, _values)
3074
+ module_eval(<<'.,.,', 'parser.ry', 426)
3075
+ def _reduce_223(val, _values)
2883
3076
  @d.declare_finder(val[1], val[3], val[5])
2884
3077
  end
2885
3078
  .,.,
2886
3079
 
2887
- module_eval(<<'.,.,', 'parser.ry', 431)
2888
- def _reduce_225(val, _values)
3080
+ module_eval(<<'.,.,', 'parser.ry', 428)
3081
+ def _reduce_224(val, _values)
2889
3082
  val
2890
3083
  end
2891
3084
  .,.,
2892
3085
 
2893
- module_eval(<<'.,.,', 'parser.ry', 432)
2894
- def _reduce_226(val, _values)
3086
+ module_eval(<<'.,.,', 'parser.ry', 429)
3087
+ def _reduce_225(val, _values)
2895
3088
  val[0] << val[2]; val[0]
2896
3089
  end
2897
3090
  .,.,
2898
3091
 
2899
- module_eval(<<'.,.,', 'parser.ry', 435)
2900
- def _reduce_227(val, _values)
3092
+ module_eval(<<'.,.,', 'parser.ry', 432)
3093
+ def _reduce_226(val, _values)
2901
3094
  [val[1], val[2]]
2902
3095
  end
2903
3096
  .,.,
2904
3097
 
2905
- # reduce 228 omitted
3098
+ # reduce 227 omitted
2906
3099
 
2907
- module_eval(<<'.,.,', 'parser.ry', 440)
2908
- def _reduce_229(val, _values)
3100
+ module_eval(<<'.,.,', 'parser.ry', 437)
3101
+ def _reduce_228(val, _values)
2909
3102
  @d.define_typeprefix(val[1], val[2])
2910
3103
  end
2911
3104
  .,.,
2912
3105
 
2913
- module_eval(<<'.,.,', 'parser.ry', 443)
2914
- def _reduce_230(val, _values)
3106
+ module_eval(<<'.,.,', 'parser.ry', 440)
3107
+ def _reduce_229(val, _values)
2915
3108
  @d.define_typeid(val[1], val[2])
2916
3109
  end
2917
3110
  .,.,
2918
3111
 
2919
- module_eval(<<'.,.,', 'parser.ry', 446)
2920
- def _reduce_231(val, _values)
3112
+ module_eval(<<'.,.,', 'parser.ry', 443)
3113
+ def _reduce_230(val, _values)
2921
3114
  @d.define_const(val[1], val[2], val[4])
2922
3115
  end
2923
3116
  .,.,
2924
3117
 
3118
+ # reduce 231 omitted
3119
+
2925
3120
  # reduce 232 omitted
2926
3121
 
2927
3122
  # reduce 233 omitted
@@ -2944,180 +3139,180 @@ module_eval(<<'.,.,', 'parser.ry', 446)
2944
3139
 
2945
3140
  # reduce 242 omitted
2946
3141
 
2947
- # reduce 243 omitted
2948
-
2949
- module_eval(<<'.,.,', 'parser.ry', 463)
2950
- def _reduce_244(val, _values)
3142
+ module_eval(<<'.,.,', 'parser.ry', 460)
3143
+ def _reduce_243(val, _values)
2951
3144
  Expression::Operation::Or.new(val[0], val[2])
2952
3145
  end
2953
3146
  .,.,
2954
3147
 
2955
- # reduce 245 omitted
3148
+ # reduce 244 omitted
2956
3149
 
2957
- module_eval(<<'.,.,', 'parser.ry', 467)
2958
- def _reduce_246(val, _values)
3150
+ module_eval(<<'.,.,', 'parser.ry', 464)
3151
+ def _reduce_245(val, _values)
2959
3152
  Expression::Operation::Xor.new(val[0], val[2])
2960
3153
  end
2961
3154
  .,.,
2962
3155
 
2963
- # reduce 247 omitted
3156
+ # reduce 246 omitted
2964
3157
 
2965
- module_eval(<<'.,.,', 'parser.ry', 471)
2966
- def _reduce_248(val, _values)
3158
+ module_eval(<<'.,.,', 'parser.ry', 468)
3159
+ def _reduce_247(val, _values)
2967
3160
  Expression::Operation::And.new(val[0], val[2])
2968
3161
  end
2969
3162
  .,.,
2970
3163
 
2971
- # reduce 249 omitted
3164
+ # reduce 248 omitted
2972
3165
 
2973
- module_eval(<<'.,.,', 'parser.ry', 475)
2974
- def _reduce_250(val, _values)
3166
+ module_eval(<<'.,.,', 'parser.ry', 472)
3167
+ def _reduce_249(val, _values)
2975
3168
  Expression::Operation::RShift.new(val[0], val[2])
2976
3169
  end
2977
3170
  .,.,
2978
3171
 
2979
- module_eval(<<'.,.,', 'parser.ry', 477)
2980
- def _reduce_251(val, _values)
3172
+ module_eval(<<'.,.,', 'parser.ry', 474)
3173
+ def _reduce_250(val, _values)
2981
3174
  Expression::Operation::LShift.new(val[0], val[2])
2982
3175
  end
2983
3176
  .,.,
2984
3177
 
2985
- # reduce 252 omitted
3178
+ # reduce 251 omitted
2986
3179
 
2987
- module_eval(<<'.,.,', 'parser.ry', 481)
2988
- def _reduce_253(val, _values)
3180
+ module_eval(<<'.,.,', 'parser.ry', 478)
3181
+ def _reduce_252(val, _values)
2989
3182
  Expression::Operation::Add.new(val[0], val[2])
2990
3183
  end
2991
3184
  .,.,
2992
3185
 
2993
- module_eval(<<'.,.,', 'parser.ry', 483)
2994
- def _reduce_254(val, _values)
3186
+ module_eval(<<'.,.,', 'parser.ry', 480)
3187
+ def _reduce_253(val, _values)
2995
3188
  Expression::Operation::Minus.new(val[0], val[2])
2996
3189
  end
2997
3190
  .,.,
2998
3191
 
2999
- # reduce 255 omitted
3192
+ # reduce 254 omitted
3000
3193
 
3001
- module_eval(<<'.,.,', 'parser.ry', 487)
3002
- def _reduce_256(val, _values)
3194
+ module_eval(<<'.,.,', 'parser.ry', 484)
3195
+ def _reduce_255(val, _values)
3003
3196
  Expression::Operation::Mult.new(val[0], val[2])
3004
3197
  end
3005
3198
  .,.,
3006
3199
 
3007
- module_eval(<<'.,.,', 'parser.ry', 489)
3008
- def _reduce_257(val, _values)
3200
+ module_eval(<<'.,.,', 'parser.ry', 486)
3201
+ def _reduce_256(val, _values)
3009
3202
  Expression::Operation::Div.new(val[0], val[2])
3010
3203
  end
3011
3204
  .,.,
3012
3205
 
3013
- module_eval(<<'.,.,', 'parser.ry', 491)
3014
- def _reduce_258(val, _values)
3206
+ module_eval(<<'.,.,', 'parser.ry', 488)
3207
+ def _reduce_257(val, _values)
3015
3208
  Expression::Operation::Mod.new(val[0], val[2])
3016
3209
  end
3017
3210
  .,.,
3018
3211
 
3019
- module_eval(<<'.,.,', 'parser.ry', 493)
3020
- def _reduce_259(val, _values)
3212
+ module_eval(<<'.,.,', 'parser.ry', 490)
3213
+ def _reduce_258(val, _values)
3021
3214
  val[0].new(val[1])
3022
3215
  end
3023
3216
  .,.,
3024
3217
 
3025
- # reduce 260 omitted
3218
+ # reduce 259 omitted
3026
3219
 
3027
- module_eval(<<'.,.,', 'parser.ry', 496)
3028
- def _reduce_261(val, _values)
3220
+ module_eval(<<'.,.,', 'parser.ry', 493)
3221
+ def _reduce_260(val, _values)
3029
3222
  Expression::Operation::UnaryMinus
3030
3223
  end
3031
3224
  .,.,
3032
3225
 
3033
- module_eval(<<'.,.,', 'parser.ry', 497)
3034
- def _reduce_262(val, _values)
3226
+ module_eval(<<'.,.,', 'parser.ry', 494)
3227
+ def _reduce_261(val, _values)
3035
3228
  Expression::Operation::UnaryPlus
3036
3229
  end
3037
3230
  .,.,
3038
3231
 
3039
- module_eval(<<'.,.,', 'parser.ry', 498)
3040
- def _reduce_263(val, _values)
3232
+ module_eval(<<'.,.,', 'parser.ry', 495)
3233
+ def _reduce_262(val, _values)
3041
3234
  Expression::Operation::UnaryNot
3042
3235
  end
3043
3236
  .,.,
3044
3237
 
3045
- # reduce 264 omitted
3238
+ # reduce 263 omitted
3046
3239
 
3047
- # reduce 265 omitted
3240
+ # reduce 264 omitted
3048
3241
 
3049
- module_eval(<<'.,.,', 'parser.ry', 503)
3050
- def _reduce_266(val, _values)
3242
+ module_eval(<<'.,.,', 'parser.ry', 500)
3243
+ def _reduce_265(val, _values)
3051
3244
  val[1]
3052
3245
  end
3053
3246
  .,.,
3054
3247
 
3055
- module_eval(<<'.,.,', 'parser.ry', 505)
3056
- def _reduce_267(val, _values)
3248
+ module_eval(<<'.,.,', 'parser.ry', 502)
3249
+ def _reduce_266(val, _values)
3057
3250
  @d.parse_literal(:integer, val[0])
3058
3251
  end
3059
3252
  .,.,
3060
3253
 
3061
- module_eval(<<'.,.,', 'parser.ry', 506)
3062
- def _reduce_268(val, _values)
3254
+ module_eval(<<'.,.,', 'parser.ry', 503)
3255
+ def _reduce_267(val, _values)
3063
3256
  @d.parse_literal(:string, val[0])
3064
3257
  end
3065
3258
  .,.,
3066
3259
 
3067
- module_eval(<<'.,.,', 'parser.ry', 507)
3068
- def _reduce_269(val, _values)
3260
+ module_eval(<<'.,.,', 'parser.ry', 504)
3261
+ def _reduce_268(val, _values)
3069
3262
  @d.parse_literal(:wstring, val[0])
3070
3263
  end
3071
3264
  .,.,
3072
3265
 
3073
- module_eval(<<'.,.,', 'parser.ry', 508)
3074
- def _reduce_270(val, _values)
3266
+ module_eval(<<'.,.,', 'parser.ry', 505)
3267
+ def _reduce_269(val, _values)
3075
3268
  @d.parse_literal(:char, val[0])
3076
3269
  end
3077
3270
  .,.,
3078
3271
 
3079
- module_eval(<<'.,.,', 'parser.ry', 509)
3080
- def _reduce_271(val, _values)
3272
+ module_eval(<<'.,.,', 'parser.ry', 506)
3273
+ def _reduce_270(val, _values)
3081
3274
  @d.parse_literal(:wchar, val[0])
3082
3275
  end
3083
3276
  .,.,
3084
3277
 
3085
- module_eval(<<'.,.,', 'parser.ry', 510)
3086
- def _reduce_272(val, _values)
3278
+ module_eval(<<'.,.,', 'parser.ry', 507)
3279
+ def _reduce_271(val, _values)
3087
3280
  @d.parse_literal(:fixed, val[0])
3088
3281
  end
3089
3282
  .,.,
3090
3283
 
3091
- module_eval(<<'.,.,', 'parser.ry', 511)
3092
- def _reduce_273(val, _values)
3284
+ module_eval(<<'.,.,', 'parser.ry', 508)
3285
+ def _reduce_272(val, _values)
3093
3286
  @d.parse_literal(:float, val[0])
3094
3287
  end
3095
3288
  .,.,
3096
3289
 
3097
- module_eval(<<'.,.,', 'parser.ry', 512)
3098
- def _reduce_274(val, _values)
3290
+ module_eval(<<'.,.,', 'parser.ry', 509)
3291
+ def _reduce_273(val, _values)
3099
3292
  @d.parse_literal(:boolean, val[0])
3100
3293
  end
3101
3294
  .,.,
3102
3295
 
3103
- module_eval(<<'.,.,', 'parser.ry', 514)
3104
- def _reduce_275(val, _values)
3296
+ module_eval(<<'.,.,', 'parser.ry', 511)
3297
+ def _reduce_274(val, _values)
3105
3298
  true
3106
3299
  end
3107
3300
  .,.,
3108
3301
 
3109
- module_eval(<<'.,.,', 'parser.ry', 515)
3110
- def _reduce_276(val, _values)
3302
+ module_eval(<<'.,.,', 'parser.ry', 512)
3303
+ def _reduce_275(val, _values)
3111
3304
  false
3112
3305
  end
3113
3306
  .,.,
3114
3307
 
3115
- module_eval(<<'.,.,', 'parser.ry', 517)
3116
- def _reduce_277(val, _values)
3308
+ module_eval(<<'.,.,', 'parser.ry', 514)
3309
+ def _reduce_276(val, _values)
3117
3310
  @d.parse_positive_int(val[0])
3118
3311
  end
3119
3312
  .,.,
3120
3313
 
3314
+ # reduce 277 omitted
3315
+
3121
3316
  # reduce 278 omitted
3122
3317
 
3123
3318
  # reduce 279 omitted
@@ -3130,10 +3325,8 @@ module_eval(<<'.,.,', 'parser.ry', 517)
3130
3325
 
3131
3326
  # reduce 283 omitted
3132
3327
 
3133
- # reduce 284 omitted
3134
-
3135
- module_eval(<<'.,.,', 'parser.ry', 529)
3136
- def _reduce_285(val, _values)
3328
+ module_eval(<<'.,.,', 'parser.ry', 526)
3329
+ def _reduce_284(val, _values)
3137
3330
  dcls = parse_type_declarator(val[0], val[1])
3138
3331
  dcls.each do |d|
3139
3332
  @d.declare_typedef(d[0], d[1])
@@ -3142,6 +3335,8 @@ module_eval(<<'.,.,', 'parser.ry', 529)
3142
3335
  end
3143
3336
  .,.,
3144
3337
 
3338
+ # reduce 285 omitted
3339
+
3145
3340
  # reduce 286 omitted
3146
3341
 
3147
3342
  # reduce 287 omitted
@@ -3182,52 +3377,52 @@ module_eval(<<'.,.,', 'parser.ry', 529)
3182
3377
 
3183
3378
  # reduce 305 omitted
3184
3379
 
3185
- # reduce 306 omitted
3186
-
3187
- module_eval(<<'.,.,', 'parser.ry', 561)
3188
- def _reduce_307(val, _values)
3380
+ module_eval(<<'.,.,', 'parser.ry', 558)
3381
+ def _reduce_306(val, _values)
3189
3382
  [val[0]]
3190
3383
  end
3191
3384
  .,.,
3192
3385
 
3193
- module_eval(<<'.,.,', 'parser.ry', 562)
3194
- def _reduce_308(val, _values)
3386
+ module_eval(<<'.,.,', 'parser.ry', 559)
3387
+ def _reduce_307(val, _values)
3195
3388
  val[0] << val[2]
3196
3389
  end
3197
3390
  .,.,
3198
3391
 
3199
- # reduce 309 omitted
3392
+ # reduce 308 omitted
3200
3393
 
3201
- # reduce 310 omitted
3394
+ # reduce 309 omitted
3202
3395
 
3203
- module_eval(<<'.,.,', 'parser.ry', 567)
3204
- def _reduce_311(val, _values)
3396
+ module_eval(<<'.,.,', 'parser.ry', 564)
3397
+ def _reduce_310(val, _values)
3205
3398
  @d.declare_typedef(::IDL::Type::Native.new, val[0])
3206
3399
  end
3207
3400
  .,.,
3208
3401
 
3209
- # reduce 312 omitted
3402
+ # reduce 311 omitted
3210
3403
 
3211
- # reduce 313 omitted
3404
+ # reduce 312 omitted
3212
3405
 
3213
- module_eval(<<'.,.,', 'parser.ry', 573)
3214
- def _reduce_314(val, _values)
3406
+ module_eval(<<'.,.,', 'parser.ry', 570)
3407
+ def _reduce_313(val, _values)
3215
3408
  ::IDL::Type::Float.new
3216
3409
  end
3217
3410
  .,.,
3218
3411
 
3219
- module_eval(<<'.,.,', 'parser.ry', 574)
3220
- def _reduce_315(val, _values)
3412
+ module_eval(<<'.,.,', 'parser.ry', 571)
3413
+ def _reduce_314(val, _values)
3221
3414
  ::IDL::Type::Double.new
3222
3415
  end
3223
3416
  .,.,
3224
3417
 
3225
- module_eval(<<'.,.,', 'parser.ry', 575)
3226
- def _reduce_316(val, _values)
3418
+ module_eval(<<'.,.,', 'parser.ry', 572)
3419
+ def _reduce_315(val, _values)
3227
3420
  ::IDL::Type::LongDouble.new
3228
3421
  end
3229
3422
  .,.,
3230
3423
 
3424
+ # reduce 316 omitted
3425
+
3231
3426
  # reduce 317 omitted
3232
3427
 
3233
3428
  # reduce 318 omitted
@@ -3236,116 +3431,114 @@ module_eval(<<'.,.,', 'parser.ry', 575)
3236
3431
 
3237
3432
  # reduce 320 omitted
3238
3433
 
3239
- # reduce 321 omitted
3240
-
3241
- module_eval(<<'.,.,', 'parser.ry', 584)
3242
- def _reduce_322(val, _values)
3434
+ module_eval(<<'.,.,', 'parser.ry', 581)
3435
+ def _reduce_321(val, _values)
3243
3436
  ::IDL::Type::Short.new
3244
3437
  end
3245
3438
  .,.,
3246
3439
 
3247
- module_eval(<<'.,.,', 'parser.ry', 586)
3248
- def _reduce_323(val, _values)
3440
+ module_eval(<<'.,.,', 'parser.ry', 583)
3441
+ def _reduce_322(val, _values)
3249
3442
  ::IDL::Type::Long.new
3250
3443
  end
3251
3444
  .,.,
3252
3445
 
3253
- module_eval(<<'.,.,', 'parser.ry', 588)
3254
- def _reduce_324(val, _values)
3446
+ module_eval(<<'.,.,', 'parser.ry', 585)
3447
+ def _reduce_323(val, _values)
3255
3448
  ::IDL::Type::LongLong.new
3256
3449
  end
3257
3450
  .,.,
3258
3451
 
3452
+ # reduce 324 omitted
3453
+
3259
3454
  # reduce 325 omitted
3260
3455
 
3261
3456
  # reduce 326 omitted
3262
3457
 
3263
- # reduce 327 omitted
3264
-
3265
- module_eval(<<'.,.,', 'parser.ry', 594)
3266
- def _reduce_328(val, _values)
3458
+ module_eval(<<'.,.,', 'parser.ry', 591)
3459
+ def _reduce_327(val, _values)
3267
3460
  ::IDL::Type::UShort.new
3268
3461
  end
3269
3462
  .,.,
3270
3463
 
3271
- module_eval(<<'.,.,', 'parser.ry', 596)
3272
- def _reduce_329(val, _values)
3464
+ module_eval(<<'.,.,', 'parser.ry', 593)
3465
+ def _reduce_328(val, _values)
3273
3466
  ::IDL::Type::ULong.new
3274
3467
  end
3275
3468
  .,.,
3276
3469
 
3277
- module_eval(<<'.,.,', 'parser.ry', 599)
3278
- def _reduce_330(val, _values)
3470
+ module_eval(<<'.,.,', 'parser.ry', 596)
3471
+ def _reduce_329(val, _values)
3279
3472
  ::IDL::Type::ULongLong.new
3280
3473
  end
3281
3474
  .,.,
3282
3475
 
3283
- module_eval(<<'.,.,', 'parser.ry', 601)
3284
- def _reduce_331(val, _values)
3476
+ module_eval(<<'.,.,', 'parser.ry', 598)
3477
+ def _reduce_330(val, _values)
3285
3478
  ::IDL::Type::Char.new
3286
3479
  end
3287
3480
  .,.,
3288
3481
 
3289
- module_eval(<<'.,.,', 'parser.ry', 603)
3290
- def _reduce_332(val, _values)
3482
+ module_eval(<<'.,.,', 'parser.ry', 600)
3483
+ def _reduce_331(val, _values)
3291
3484
  ::IDL::Type::WChar.new
3292
3485
  end
3293
3486
  .,.,
3294
3487
 
3295
- module_eval(<<'.,.,', 'parser.ry', 605)
3296
- def _reduce_333(val, _values)
3488
+ module_eval(<<'.,.,', 'parser.ry', 602)
3489
+ def _reduce_332(val, _values)
3297
3490
  ::IDL::Type::Boolean.new
3298
3491
  end
3299
3492
  .,.,
3300
3493
 
3301
- module_eval(<<'.,.,', 'parser.ry', 607)
3302
- def _reduce_334(val, _values)
3494
+ module_eval(<<'.,.,', 'parser.ry', 604)
3495
+ def _reduce_333(val, _values)
3303
3496
  ::IDL::Type::Octet.new
3304
3497
  end
3305
3498
  .,.,
3306
3499
 
3307
- module_eval(<<'.,.,', 'parser.ry', 609)
3308
- def _reduce_335(val, _values)
3500
+ module_eval(<<'.,.,', 'parser.ry', 606)
3501
+ def _reduce_334(val, _values)
3309
3502
  ::IDL::Type::Any.new
3310
3503
  end
3311
3504
  .,.,
3312
3505
 
3313
- module_eval(<<'.,.,', 'parser.ry', 611)
3314
- def _reduce_336(val, _values)
3506
+ module_eval(<<'.,.,', 'parser.ry', 608)
3507
+ def _reduce_335(val, _values)
3315
3508
  ::IDL::Type::Object.new
3316
3509
  end
3317
3510
  .,.,
3318
3511
 
3319
- module_eval(<<'.,.,', 'parser.ry', 613)
3320
- def _reduce_337(val, _values)
3512
+ module_eval(<<'.,.,', 'parser.ry', 610)
3513
+ def _reduce_336(val, _values)
3321
3514
  @d.declare_struct(val[1])
3322
3515
  end
3323
3516
  .,.,
3324
3517
 
3325
- module_eval(<<'.,.,', 'parser.ry', 616)
3326
- def _reduce_338(val, _values)
3518
+ module_eval(<<'.,.,', 'parser.ry', 613)
3519
+ def _reduce_337(val, _values)
3327
3520
  @d.end_struct(val[0])
3328
3521
  end
3329
3522
  .,.,
3330
3523
 
3331
- module_eval(<<'.,.,', 'parser.ry', 618)
3332
- def _reduce_339(val, _values)
3524
+ module_eval(<<'.,.,', 'parser.ry', 615)
3525
+ def _reduce_338(val, _values)
3333
3526
  @d.define_struct(val[1])
3334
3527
  end
3335
3528
  .,.,
3336
3529
 
3337
- module_eval(<<'.,.,', 'parser.ry', 620)
3338
- def _reduce_340(val, _values)
3530
+ module_eval(<<'.,.,', 'parser.ry', 617)
3531
+ def _reduce_339(val, _values)
3339
3532
  nil
3340
3533
  end
3341
3534
  .,.,
3342
3535
 
3343
- # reduce 341 omitted
3536
+ # reduce 340 omitted
3344
3537
 
3345
- # reduce 342 omitted
3538
+ # reduce 341 omitted
3346
3539
 
3347
- module_eval(<<'.,.,', 'parser.ry', 628)
3348
- def _reduce_343(val, _values)
3540
+ module_eval(<<'.,.,', 'parser.ry', 625)
3541
+ def _reduce_342(val, _values)
3349
3542
  dcls = parse_type_declarator(val[0], val[1])
3350
3543
  dcls.each do |d|
3351
3544
  @d.declare_member(d[0], d[1])
@@ -3354,42 +3547,44 @@ module_eval(<<'.,.,', 'parser.ry', 628)
3354
3547
  end
3355
3548
  .,.,
3356
3549
 
3550
+ module_eval(<<'.,.,', 'parser.ry', 632)
3551
+ def _reduce_343(val, _values)
3552
+ @d.declare_union(val[1])
3553
+ end
3554
+ .,.,
3555
+
3357
3556
  module_eval(<<'.,.,', 'parser.ry', 635)
3358
3557
  def _reduce_344(val, _values)
3359
- @d.declare_union(val[1])
3558
+ @d.end_union(val[0])
3360
3559
  end
3361
3560
  .,.,
3362
3561
 
3363
3562
  module_eval(<<'.,.,', 'parser.ry', 638)
3364
3563
  def _reduce_345(val, _values)
3365
- @d.end_union(val[0])
3564
+ @d.define_union_switchtype(val[0], val[1])
3366
3565
  end
3367
3566
  .,.,
3368
3567
 
3369
3568
  module_eval(<<'.,.,', 'parser.ry', 641)
3370
3569
  def _reduce_346(val, _values)
3371
- @d.define_union_switchtype(val[0], val[1])
3570
+ @d.define_union(val[1])
3372
3571
  end
3373
3572
  .,.,
3374
3573
 
3375
- module_eval(<<'.,.,', 'parser.ry', 644)
3574
+ module_eval(<<'.,.,', 'parser.ry', 643)
3376
3575
  def _reduce_347(val, _values)
3377
- @d.define_union(val[1])
3576
+ nil
3378
3577
  end
3379
3578
  .,.,
3380
3579
 
3381
3580
  module_eval(<<'.,.,', 'parser.ry', 646)
3382
3581
  def _reduce_348(val, _values)
3383
- nil
3384
- end
3385
- .,.,
3386
-
3387
- module_eval(<<'.,.,', 'parser.ry', 649)
3388
- def _reduce_349(val, _values)
3389
3582
  val[2]
3390
3583
  end
3391
3584
  .,.,
3392
3585
 
3586
+ # reduce 349 omitted
3587
+
3393
3588
  # reduce 350 omitted
3394
3589
 
3395
3590
  # reduce 351 omitted
@@ -3402,10 +3597,8 @@ module_eval(<<'.,.,', 'parser.ry', 649)
3402
3597
 
3403
3598
  # reduce 355 omitted
3404
3599
 
3405
- # reduce 356 omitted
3406
-
3407
- module_eval(<<'.,.,', 'parser.ry', 662)
3408
- def _reduce_357(val, _values)
3600
+ module_eval(<<'.,.,', 'parser.ry', 659)
3601
+ def _reduce_356(val, _values)
3409
3602
  dcls = parse_type_declarator(val[1][0], [val[1][1]])
3410
3603
  dcls.each do |d|
3411
3604
  @d.define_case(val[0], d[0], d[1])
@@ -3414,123 +3607,123 @@ module_eval(<<'.,.,', 'parser.ry', 662)
3414
3607
  end
3415
3608
  .,.,
3416
3609
 
3417
- module_eval(<<'.,.,', 'parser.ry', 668)
3418
- def _reduce_358(val, _values)
3610
+ module_eval(<<'.,.,', 'parser.ry', 665)
3611
+ def _reduce_357(val, _values)
3419
3612
  [val[0]]
3420
3613
  end
3421
3614
  .,.,
3422
3615
 
3423
- module_eval(<<'.,.,', 'parser.ry', 669)
3424
- def _reduce_359(val, _values)
3616
+ module_eval(<<'.,.,', 'parser.ry', 666)
3617
+ def _reduce_358(val, _values)
3425
3618
  val[0] << val[1]
3426
3619
  end
3427
3620
  .,.,
3428
3621
 
3429
- module_eval(<<'.,.,', 'parser.ry', 671)
3430
- def _reduce_360(val, _values)
3622
+ module_eval(<<'.,.,', 'parser.ry', 668)
3623
+ def _reduce_359(val, _values)
3431
3624
  val[1]
3432
3625
  end
3433
3626
  .,.,
3434
3627
 
3435
- module_eval(<<'.,.,', 'parser.ry', 672)
3436
- def _reduce_361(val, _values)
3628
+ module_eval(<<'.,.,', 'parser.ry', 669)
3629
+ def _reduce_360(val, _values)
3437
3630
  :default
3438
3631
  end
3439
3632
  .,.,
3440
3633
 
3441
- module_eval(<<'.,.,', 'parser.ry', 675)
3442
- def _reduce_362(val, _values)
3634
+ module_eval(<<'.,.,', 'parser.ry', 672)
3635
+ def _reduce_361(val, _values)
3443
3636
  val
3444
3637
  end
3445
3638
  .,.,
3446
3639
 
3447
- module_eval(<<'.,.,', 'parser.ry', 678)
3448
- def _reduce_363(val, _values)
3640
+ module_eval(<<'.,.,', 'parser.ry', 675)
3641
+ def _reduce_362(val, _values)
3449
3642
  @d.end_enum(val[0])
3450
3643
  end
3451
3644
  .,.,
3452
3645
 
3453
- module_eval(<<'.,.,', 'parser.ry', 680)
3454
- def _reduce_364(val, _values)
3646
+ module_eval(<<'.,.,', 'parser.ry', 677)
3647
+ def _reduce_363(val, _values)
3455
3648
  @d.define_enum(val[1])
3456
3649
  end
3457
3650
  .,.,
3458
3651
 
3652
+ # reduce 364 omitted
3653
+
3459
3654
  # reduce 365 omitted
3460
3655
 
3461
3656
  # reduce 366 omitted
3462
3657
 
3463
- # reduce 367 omitted
3464
-
3465
- module_eval(<<'.,.,', 'parser.ry', 688)
3466
- def _reduce_368(val, _values)
3658
+ module_eval(<<'.,.,', 'parser.ry', 685)
3659
+ def _reduce_367(val, _values)
3467
3660
  @d.declare_enumerator(val[0])
3468
3661
 
3469
3662
  end
3470
3663
  .,.,
3471
3664
 
3472
- module_eval(<<'.,.,', 'parser.ry', 692)
3473
- def _reduce_369(val, _values)
3665
+ module_eval(<<'.,.,', 'parser.ry', 689)
3666
+ def _reduce_368(val, _values)
3474
3667
  ::IDL::Type::Sequence.new(val[2], val[4])
3475
3668
  end
3476
3669
  .,.,
3477
3670
 
3478
- module_eval(<<'.,.,', 'parser.ry', 694)
3479
- def _reduce_370(val, _values)
3671
+ module_eval(<<'.,.,', 'parser.ry', 691)
3672
+ def _reduce_369(val, _values)
3480
3673
  ::IDL::Type::Sequence.new(val[2], nil)
3481
3674
  end
3482
3675
  .,.,
3483
3676
 
3484
- module_eval(<<'.,.,', 'parser.ry', 697)
3485
- def _reduce_371(val, _values)
3677
+ module_eval(<<'.,.,', 'parser.ry', 694)
3678
+ def _reduce_370(val, _values)
3486
3679
  ::IDL::Type::String.new(val[2])
3487
3680
  end
3488
3681
  .,.,
3489
3682
 
3490
- module_eval(<<'.,.,', 'parser.ry', 699)
3491
- def _reduce_372(val, _values)
3683
+ module_eval(<<'.,.,', 'parser.ry', 696)
3684
+ def _reduce_371(val, _values)
3492
3685
  ::IDL::Type::String.new()
3493
3686
  end
3494
3687
  .,.,
3495
3688
 
3496
- module_eval(<<'.,.,', 'parser.ry', 702)
3497
- def _reduce_373(val, _values)
3689
+ module_eval(<<'.,.,', 'parser.ry', 699)
3690
+ def _reduce_372(val, _values)
3498
3691
  ::IDL::Type::WString.new(val[2])
3499
3692
  end
3500
3693
  .,.,
3501
3694
 
3502
- module_eval(<<'.,.,', 'parser.ry', 704)
3503
- def _reduce_374(val, _values)
3695
+ module_eval(<<'.,.,', 'parser.ry', 701)
3696
+ def _reduce_373(val, _values)
3504
3697
  ::IDL::Type::WString.new()
3505
3698
  end
3506
3699
  .,.,
3507
3700
 
3508
- module_eval(<<'.,.,', 'parser.ry', 706)
3509
- def _reduce_375(val, _values)
3701
+ module_eval(<<'.,.,', 'parser.ry', 703)
3702
+ def _reduce_374(val, _values)
3510
3703
  val
3511
3704
  end
3512
3705
  .,.,
3513
3706
 
3514
- module_eval(<<'.,.,', 'parser.ry', 708)
3515
- def _reduce_376(val, _values)
3707
+ module_eval(<<'.,.,', 'parser.ry', 705)
3708
+ def _reduce_375(val, _values)
3516
3709
  [val[0]]
3517
3710
  end
3518
3711
  .,.,
3519
3712
 
3520
- module_eval(<<'.,.,', 'parser.ry', 709)
3521
- def _reduce_377(val, _values)
3713
+ module_eval(<<'.,.,', 'parser.ry', 706)
3714
+ def _reduce_376(val, _values)
3522
3715
  val[0] << val[1]
3523
3716
  end
3524
3717
  .,.,
3525
3718
 
3526
- module_eval(<<'.,.,', 'parser.ry', 711)
3527
- def _reduce_378(val, _values)
3719
+ module_eval(<<'.,.,', 'parser.ry', 708)
3720
+ def _reduce_377(val, _values)
3528
3721
  val[1]
3529
3722
  end
3530
3723
  .,.,
3531
3724
 
3532
- module_eval(<<'.,.,', 'parser.ry', 714)
3533
- def _reduce_379(val, _values)
3725
+ module_eval(<<'.,.,', 'parser.ry', 711)
3726
+ def _reduce_378(val, _values)
3534
3727
  dcls = parse_type_declarator(val[2], val[3][0])
3535
3728
  dcls.each do |d|
3536
3729
  @d.declare_attribute(d[0], d[1], true).get_raises = val[3][1]
@@ -3539,8 +3732,8 @@ module_eval(<<'.,.,', 'parser.ry', 714)
3539
3732
  end
3540
3733
  .,.,
3541
3734
 
3542
- module_eval(<<'.,.,', 'parser.ry', 720)
3543
- def _reduce_380(val, _values)
3735
+ module_eval(<<'.,.,', 'parser.ry', 717)
3736
+ def _reduce_379(val, _values)
3544
3737
  att = @d.declare_attribute(val[1], val[2])
3545
3738
  att.get_raises = val[3][0] unless val[3][0].empty?
3546
3739
  att.set_raises = val[3][1] unless val[3][1].empty?
@@ -3548,8 +3741,8 @@ module_eval(<<'.,.,', 'parser.ry', 720)
3548
3741
  end
3549
3742
  .,.,
3550
3743
 
3551
- module_eval(<<'.,.,', 'parser.ry', 725)
3552
- def _reduce_381(val, _values)
3744
+ module_eval(<<'.,.,', 'parser.ry', 722)
3745
+ def _reduce_380(val, _values)
3553
3746
  dcls = parse_type_declarator(val[1], val[2])
3554
3747
  dcls.each do |d|
3555
3748
  att = @d.declare_attribute(d[0], d[1])
@@ -3558,6 +3751,8 @@ module_eval(<<'.,.,', 'parser.ry', 725)
3558
3751
  end
3559
3752
  .,.,
3560
3753
 
3754
+ # reduce 381 omitted
3755
+
3561
3756
  # reduce 382 omitted
3562
3757
 
3563
3758
  # reduce 383 omitted
@@ -3566,262 +3761,260 @@ module_eval(<<'.,.,', 'parser.ry', 725)
3566
3761
 
3567
3762
  # reduce 385 omitted
3568
3763
 
3569
- # reduce 386 omitted
3764
+ module_eval(<<'.,.,', 'parser.ry', 734)
3765
+ def _reduce_386(val, _values)
3766
+ [val[0], val[1]]
3767
+ end
3768
+ .,.,
3570
3769
 
3571
- module_eval(<<'.,.,', 'parser.ry', 737)
3770
+ module_eval(<<'.,.,', 'parser.ry', 736)
3572
3771
  def _reduce_387(val, _values)
3573
- [val[0], val[1]]
3772
+ [val[1], val[0]]
3574
3773
  end
3575
3774
  .,.,
3576
3775
 
3577
- module_eval(<<'.,.,', 'parser.ry', 739)
3776
+ module_eval(<<'.,.,', 'parser.ry', 738)
3578
3777
  def _reduce_388(val, _values)
3579
- [val[1], val[0]]
3778
+ [val[0], []]
3580
3779
  end
3581
3780
  .,.,
3582
3781
 
3583
- module_eval(<<'.,.,', 'parser.ry', 741)
3782
+ module_eval(<<'.,.,', 'parser.ry', 740)
3584
3783
  def _reduce_389(val, _values)
3585
- [val[0], []]
3784
+ [[], val[0]]
3586
3785
  end
3587
3786
  .,.,
3588
3787
 
3589
- module_eval(<<'.,.,', 'parser.ry', 743)
3788
+ module_eval(<<'.,.,', 'parser.ry', 742)
3590
3789
  def _reduce_390(val, _values)
3591
- [[], val[0]]
3790
+ [[], []]
3592
3791
  end
3593
3792
  .,.,
3594
3793
 
3595
3794
  module_eval(<<'.,.,', 'parser.ry', 745)
3596
3795
  def _reduce_391(val, _values)
3597
- [[], []]
3796
+ [val[0]].concat(val[2])
3598
3797
  end
3599
3798
  .,.,
3600
3799
 
3601
3800
  module_eval(<<'.,.,', 'parser.ry', 748)
3602
3801
  def _reduce_392(val, _values)
3603
- [val[0]].concat(val[2])
3802
+ [[val[0]], val[1]]
3604
3803
  end
3605
3804
  .,.,
3606
3805
 
3607
- module_eval(<<'.,.,', 'parser.ry', 751)
3806
+ module_eval(<<'.,.,', 'parser.ry', 749)
3608
3807
  def _reduce_393(val, _values)
3609
- [[val[0]], val[1]]
3808
+ [val[0], []]
3610
3809
  end
3611
3810
  .,.,
3612
3811
 
3613
- module_eval(<<'.,.,', 'parser.ry', 752)
3812
+ module_eval(<<'.,.,', 'parser.ry', 751)
3614
3813
  def _reduce_394(val, _values)
3615
- [val[0], []]
3814
+ [val[0]]
3616
3815
  end
3617
3816
  .,.,
3618
3817
 
3619
- module_eval(<<'.,.,', 'parser.ry', 754)
3818
+ module_eval(<<'.,.,', 'parser.ry', 752)
3620
3819
  def _reduce_395(val, _values)
3621
- [val[0]]
3820
+ val[0] << val[2]
3622
3821
  end
3623
3822
  .,.,
3624
3823
 
3625
3824
  module_eval(<<'.,.,', 'parser.ry', 755)
3626
3825
  def _reduce_396(val, _values)
3627
- val[0] << val[2]
3628
- end
3629
- .,.,
3630
-
3631
- module_eval(<<'.,.,', 'parser.ry', 758)
3632
- def _reduce_397(val, _values)
3633
3826
  @d.end_exception(val[0])
3634
3827
  end
3635
3828
  .,.,
3636
3829
 
3637
- module_eval(<<'.,.,', 'parser.ry', 760)
3638
- def _reduce_398(val, _values)
3830
+ module_eval(<<'.,.,', 'parser.ry', 757)
3831
+ def _reduce_397(val, _values)
3639
3832
  @d.define_exception(val[1])
3640
3833
  end
3641
3834
  .,.,
3642
3835
 
3836
+ # reduce 398 omitted
3837
+
3643
3838
  # reduce 399 omitted
3644
3839
 
3645
3840
  # reduce 400 omitted
3646
3841
 
3647
3842
  # reduce 401 omitted
3648
3843
 
3649
- # reduce 402 omitted
3650
-
3651
- module_eval(<<'.,.,', 'parser.ry', 769)
3652
- def _reduce_403(val, _values)
3844
+ module_eval(<<'.,.,', 'parser.ry', 766)
3845
+ def _reduce_402(val, _values)
3653
3846
  @d.declare_op_header(val[0], val[1], val[2])
3654
3847
  end
3655
3848
  .,.,
3656
3849
 
3657
- module_eval(<<'.,.,', 'parser.ry', 771)
3658
- def _reduce_404(val, _values)
3850
+ module_eval(<<'.,.,', 'parser.ry', 768)
3851
+ def _reduce_403(val, _values)
3659
3852
  @d.declare_op_header(nil, val[0], val[1])
3660
3853
  end
3661
3854
  .,.,
3662
3855
 
3663
- # reduce 405 omitted
3856
+ # reduce 404 omitted
3664
3857
 
3665
- module_eval(<<'.,.,', 'parser.ry', 776)
3666
- def _reduce_406(val, _values)
3858
+ module_eval(<<'.,.,', 'parser.ry', 773)
3859
+ def _reduce_405(val, _values)
3667
3860
  @d.declare_op_footer(val[0], val[1])
3668
3861
  end
3669
3862
  .,.,
3670
3863
 
3671
- module_eval(<<'.,.,', 'parser.ry', 778)
3672
- def _reduce_407(val, _values)
3864
+ module_eval(<<'.,.,', 'parser.ry', 775)
3865
+ def _reduce_406(val, _values)
3673
3866
  @d.declare_op_footer(val[0], nil)
3674
3867
  end
3675
3868
  .,.,
3676
3869
 
3677
- module_eval(<<'.,.,', 'parser.ry', 780)
3678
- def _reduce_408(val, _values)
3870
+ module_eval(<<'.,.,', 'parser.ry', 777)
3871
+ def _reduce_407(val, _values)
3679
3872
  @d.declare_op_footer(nil, val[0])
3680
3873
  end
3681
3874
  .,.,
3682
3875
 
3683
- module_eval(<<'.,.,', 'parser.ry', 782)
3684
- def _reduce_409(val, _values)
3876
+ module_eval(<<'.,.,', 'parser.ry', 779)
3877
+ def _reduce_408(val, _values)
3685
3878
  @d.declare_op_footer(nil,nil)
3686
3879
  end
3687
3880
  .,.,
3688
3881
 
3689
- module_eval(<<'.,.,', 'parser.ry', 784)
3690
- def _reduce_410(val, _values)
3882
+ module_eval(<<'.,.,', 'parser.ry', 781)
3883
+ def _reduce_409(val, _values)
3691
3884
  :oneway
3692
3885
  end
3693
3886
  .,.,
3694
3887
 
3695
- module_eval(<<'.,.,', 'parser.ry', 786)
3696
- def _reduce_411(val, _values)
3888
+ module_eval(<<'.,.,', 'parser.ry', 783)
3889
+ def _reduce_410(val, _values)
3697
3890
  val[0]
3698
3891
  end
3699
3892
  .,.,
3700
3893
 
3701
- module_eval(<<'.,.,', 'parser.ry', 787)
3702
- def _reduce_412(val, _values)
3894
+ module_eval(<<'.,.,', 'parser.ry', 784)
3895
+ def _reduce_411(val, _values)
3703
3896
  ::IDL::Type::Void.new
3704
3897
  end
3705
3898
  .,.,
3706
3899
 
3900
+ # reduce 412 omitted
3901
+
3707
3902
  # reduce 413 omitted
3708
3903
 
3709
3904
  # reduce 414 omitted
3710
3905
 
3711
3906
  # reduce 415 omitted
3712
3907
 
3713
- # reduce 416 omitted
3908
+ module_eval(<<'.,.,', 'parser.ry', 793)
3909
+ def _reduce_416(val, _values)
3910
+ @d.declare_op_parameter(val[0], val[1], val[2])
3911
+ end
3912
+ .,.,
3714
3913
 
3715
- module_eval(<<'.,.,', 'parser.ry', 796)
3914
+ module_eval(<<'.,.,', 'parser.ry', 795)
3716
3915
  def _reduce_417(val, _values)
3717
- @d.declare_op_parameter(val[0], val[1], val[2])
3916
+ :in
3718
3917
  end
3719
3918
  .,.,
3720
3919
 
3721
- module_eval(<<'.,.,', 'parser.ry', 798)
3920
+ module_eval(<<'.,.,', 'parser.ry', 796)
3722
3921
  def _reduce_418(val, _values)
3723
- :in
3922
+ :out
3724
3923
  end
3725
3924
  .,.,
3726
3925
 
3727
- module_eval(<<'.,.,', 'parser.ry', 799)
3926
+ module_eval(<<'.,.,', 'parser.ry', 797)
3728
3927
  def _reduce_419(val, _values)
3729
- :out
3928
+ :inout
3730
3929
  end
3731
3930
  .,.,
3732
3931
 
3733
- module_eval(<<'.,.,', 'parser.ry', 800)
3932
+ module_eval(<<'.,.,', 'parser.ry', 799)
3734
3933
  def _reduce_420(val, _values)
3735
- :inout
3934
+ val[2]
3736
3935
  end
3737
3936
  .,.,
3738
3937
 
3739
- module_eval(<<'.,.,', 'parser.ry', 802)
3938
+ module_eval(<<'.,.,', 'parser.ry', 801)
3740
3939
  def _reduce_421(val, _values)
3741
3940
  val[2]
3742
3941
  end
3743
3942
  .,.,
3744
3943
 
3745
- module_eval(<<'.,.,', 'parser.ry', 804)
3944
+ module_eval(<<'.,.,', 'parser.ry', 803)
3746
3945
  def _reduce_422(val, _values)
3747
3946
  val[2]
3748
3947
  end
3749
3948
  .,.,
3750
3949
 
3751
- module_eval(<<'.,.,', 'parser.ry', 806)
3950
+ module_eval(<<'.,.,', 'parser.ry', 805)
3752
3951
  def _reduce_423(val, _values)
3753
- val[2]
3952
+ val
3754
3953
  end
3755
3954
  .,.,
3756
3955
 
3757
- module_eval(<<'.,.,', 'parser.ry', 808)
3956
+ module_eval(<<'.,.,', 'parser.ry', 806)
3758
3957
  def _reduce_424(val, _values)
3759
- val
3958
+ val[0] << val[2]
3760
3959
  end
3761
3960
  .,.,
3762
3961
 
3763
- module_eval(<<'.,.,', 'parser.ry', 809)
3962
+ module_eval(<<'.,.,', 'parser.ry', 808)
3764
3963
  def _reduce_425(val, _values)
3765
- val[0] << val[2]
3964
+ val[2]
3766
3965
  end
3767
3966
  .,.,
3768
3967
 
3769
- module_eval(<<'.,.,', 'parser.ry', 811)
3968
+ module_eval(<<'.,.,', 'parser.ry', 810)
3770
3969
  def _reduce_426(val, _values)
3771
- val[2]
3970
+ val
3772
3971
  end
3773
3972
  .,.,
3774
3973
 
3775
- module_eval(<<'.,.,', 'parser.ry', 813)
3974
+ module_eval(<<'.,.,', 'parser.ry', 811)
3776
3975
  def _reduce_427(val, _values)
3777
- val
3976
+ val[0] << val[2]
3778
3977
  end
3779
3978
  .,.,
3780
3979
 
3781
- module_eval(<<'.,.,', 'parser.ry', 814)
3980
+ module_eval(<<'.,.,', 'parser.ry', 813)
3782
3981
  def _reduce_428(val, _values)
3783
- val[0] << val[2]
3982
+ val[0]
3784
3983
  end
3785
3984
  .,.,
3786
3985
 
3787
- module_eval(<<'.,.,', 'parser.ry', 816)
3986
+ module_eval(<<'.,.,', 'parser.ry', 814)
3788
3987
  def _reduce_429(val, _values)
3789
3988
  val[0]
3790
3989
  end
3791
3990
  .,.,
3792
3991
 
3793
- module_eval(<<'.,.,', 'parser.ry', 817)
3992
+ module_eval(<<'.,.,', 'parser.ry', 815)
3794
3993
  def _reduce_430(val, _values)
3795
3994
  val[0]
3796
3995
  end
3797
3996
  .,.,
3798
3997
 
3799
- module_eval(<<'.,.,', 'parser.ry', 818)
3998
+ module_eval(<<'.,.,', 'parser.ry', 816)
3800
3999
  def _reduce_431(val, _values)
3801
4000
  val[0]
3802
4001
  end
3803
4002
  .,.,
3804
4003
 
3805
- module_eval(<<'.,.,', 'parser.ry', 819)
4004
+ module_eval(<<'.,.,', 'parser.ry', 820)
3806
4005
  def _reduce_432(val, _values)
3807
- val[0]
3808
- end
3809
- .,.,
3810
-
3811
- module_eval(<<'.,.,', 'parser.ry', 823)
3812
- def _reduce_433(val, _values)
3813
4006
  IDL::Type::Fixed.new(val[2], val[4])
3814
4007
  end
3815
4008
  .,.,
3816
4009
 
3817
- module_eval(<<'.,.,', 'parser.ry', 825)
3818
- def _reduce_434(val, _values)
4010
+ module_eval(<<'.,.,', 'parser.ry', 822)
4011
+ def _reduce_433(val, _values)
3819
4012
  ::IDL::Type::Fixed.new
3820
4013
  end
3821
4014
  .,.,
3822
4015
 
3823
- module_eval(<<'.,.,', 'parser.ry', 827)
3824
- def _reduce_435(val, _values)
4016
+ module_eval(<<'.,.,', 'parser.ry', 824)
4017
+ def _reduce_434(val, _values)
3825
4018
  ::IDL::Type::ValueBase.new
3826
4019
  end
3827
4020
  .,.,