ridl 2.7.1 → 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.rdoc +1 -1
- data/lib/ridl/delegate.rb +62 -66
- data/lib/ridl/expression.rb +5 -5
- data/lib/ridl/node.rb +172 -212
- data/lib/ridl/parser.rb +1500 -1307
- data/lib/ridl/parser.ry +1 -3
- data/lib/ridl/runner.rb +82 -50
- data/lib/ridl/type.rb +20 -15
- data/lib/ridl/version.rb +2 -2
- metadata +3 -3
data/lib/ridl/parser.rb
CHANGED
@@ -1,16 +1,15 @@
|
|
1
1
|
#
|
2
2
|
# DO NOT MODIFY!!!!
|
3
|
-
# This file is automatically generated by Racc 1.4.
|
4
|
-
# from Racc
|
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
|
-
|
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.
|
44
|
-
Racc_Runtime_Revision = '$Id:
|
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.
|
47
|
-
Racc_Runtime_Core_Revision_R = '$Id:
|
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
|
-
|
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
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
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',
|
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
|
-
'-
|
557
|
-
'
|
558
|
-
'
|
559
|
-
'543,94,
|
560
|
-
'
|
561
|
-
'261,
|
562
|
-
'
|
563
|
-
'
|
564
|
-
'94,
|
565
|
-
'
|
566
|
-
'
|
567
|
-
'
|
568
|
-
'
|
569
|
-
'94,94,
|
570
|
-
'94,
|
571
|
-
'
|
572
|
-
'
|
573
|
-
'
|
574
|
-
'
|
575
|
-
'
|
576
|
-
'
|
577
|
-
'
|
578
|
-
'
|
579
|
-
'
|
580
|
-
'
|
581
|
-
'
|
582
|
-
'
|
583
|
-
'
|
584
|
-
'
|
585
|
-
'
|
586
|
-
'
|
587
|
-
'
|
588
|
-
'
|
589
|
-
'
|
590
|
-
'
|
591
|
-
'
|
592
|
-
'
|
593
|
-
'
|
594
|
-
'
|
595
|
-
'
|
596
|
-
'
|
597
|
-
'
|
598
|
-
'
|
599
|
-
'
|
600
|
-
'
|
601
|
-
'
|
602
|
-
'
|
603
|
-
'
|
604
|
-
'
|
605
|
-
'153,154,
|
606
|
-
'
|
607
|
-
'148,149,150,151,152,179,180,94,
|
608
|
-
'
|
609
|
-
'
|
610
|
-
'
|
611
|
-
'
|
612
|
-
'
|
613
|
-
'
|
614
|
-
'
|
615
|
-
'
|
616
|
-
'
|
617
|
-
'
|
618
|
-
'
|
619
|
-
'
|
620
|
-
'
|
621
|
-
',,,53,,54
|
622
|
-
'
|
623
|
-
'
|
624
|
-
'
|
625
|
-
'
|
626
|
-
'
|
627
|
-
',
|
628
|
-
'
|
629
|
-
'
|
630
|
-
'
|
631
|
-
'
|
632
|
-
'
|
633
|
-
'
|
634
|
-
',
|
635
|
-
'
|
636
|
-
'246,
|
637
|
-
'243,
|
638
|
-
'241,242,243,
|
639
|
-
'
|
640
|
-
'232,,,,
|
641
|
-
'
|
642
|
-
'
|
643
|
-
'
|
644
|
-
',
|
645
|
-
'
|
646
|
-
'242,243,
|
647
|
-
'
|
648
|
-
'
|
649
|
-
'
|
650
|
-
|
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,
|
662
|
-
'
|
663
|
-
'
|
664
|
-
'
|
665
|
-
'
|
666
|
-
'
|
667
|
-
'
|
668
|
-
'
|
669
|
-
'
|
670
|
-
'
|
671
|
-
'
|
672
|
-
'
|
673
|
-
'
|
674
|
-
'
|
675
|
-
'
|
676
|
-
'
|
677
|
-
'
|
678
|
-
'
|
679
|
-
'
|
680
|
-
'
|
681
|
-
'
|
682
|
-
'
|
683
|
-
'
|
684
|
-
'
|
685
|
-
'
|
686
|
-
'
|
687
|
-
'
|
688
|
-
'
|
689
|
-
'
|
690
|
-
'
|
691
|
-
'
|
692
|
-
'
|
693
|
-
'
|
694
|
-
'
|
695
|
-
'
|
696
|
-
'
|
697
|
-
'
|
698
|
-
'
|
699
|
-
'
|
700
|
-
'
|
701
|
-
'
|
702
|
-
'
|
703
|
-
'
|
704
|
-
'
|
705
|
-
'
|
706
|
-
'
|
707
|
-
'
|
708
|
-
'
|
709
|
-
'
|
710
|
-
'
|
711
|
-
'
|
712
|
-
'
|
713
|
-
'
|
714
|
-
'
|
715
|
-
'
|
716
|
-
'
|
717
|
-
'
|
718
|
-
'
|
719
|
-
'
|
720
|
-
'
|
721
|
-
'
|
722
|
-
'
|
723
|
-
'
|
724
|
-
'
|
725
|
-
'1,,,,,1,,,,,
|
726
|
-
',,,1,,1
|
727
|
-
',
|
728
|
-
'
|
729
|
-
',,,
|
730
|
-
'201,201
|
731
|
-
'
|
732
|
-
'
|
733
|
-
',
|
734
|
-
'
|
735
|
-
',,91
|
736
|
-
'
|
737
|
-
'510
|
738
|
-
',510,
|
739
|
-
'
|
740
|
-
'
|
741
|
-
'
|
742
|
-
'
|
743
|
-
'
|
744
|
-
'
|
745
|
-
'
|
746
|
-
'
|
747
|
-
'
|
748
|
-
',
|
749
|
-
'
|
750
|
-
'
|
751
|
-
'
|
752
|
-
'
|
753
|
-
'
|
754
|
-
'
|
755
|
-
'
|
756
|
-
|
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
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
nil,
|
773
|
-
nil, nil,
|
774
|
-
|
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,
|
777
|
-
|
778
|
-
nil,
|
779
|
-
|
780
|
-
nil, nil, nil, nil, nil, nil, nil, nil,
|
781
|
-
nil, nil, nil, nil, nil, nil, nil, nil,
|
782
|
-
nil, 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,
|
786
|
-
|
787
|
-
nil,
|
788
|
-
|
789
|
-
nil, nil,
|
790
|
-
|
791
|
-
nil, nil, nil, nil, nil, nil, nil, nil,
|
792
|
-
nil,
|
793
|
-
|
794
|
-
nil, nil, nil,
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
nil,
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
nil, nil, nil, nil, nil, nil, nil, nil,
|
808
|
-
|
809
|
-
nil,
|
810
|
-
nil, nil, nil,
|
811
|
-
|
812
|
-
nil,
|
813
|
-
nil, nil, nil, nil,
|
814
|
-
nil, nil, nil,
|
815
|
-
nil,
|
816
|
-
nil,
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
nil, nil, 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,
|
833
|
-
|
834
|
-
nil,
|
835
|
-
nil,
|
836
|
-
|
837
|
-
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,
|
840
|
-
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, -
|
844
|
-
-
|
845
|
-
-
|
846
|
-
-
|
847
|
-
-
|
848
|
-
-
|
849
|
-
-
|
850
|
-
-
|
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, -
|
853
|
-
-
|
854
|
-
-
|
855
|
-
-
|
856
|
-
-236, -237, -238, -239, -240, -
|
857
|
-
-318, -319, -320, -321, -
|
858
|
-
-332, -333, -
|
859
|
-
-288, -289, -290, -291, -292, -293, -294, -295, -296,
|
860
|
-
-298, -299, -300, -301, -302, -303, -304, -305, -
|
861
|
-
-
|
862
|
-
-
|
863
|
-
735, -
|
864
|
-
-
|
865
|
-
-73, -74,
|
866
|
-
-
|
867
|
-
-269, -270, -271, -272, -273, -274, -275, -
|
868
|
-
-
|
869
|
-
-
|
870
|
-
-430, -431,
|
871
|
-
-
|
872
|
-
-
|
873
|
-
-
|
874
|
-
-
|
875
|
-
-
|
876
|
-
-
|
877
|
-
-
|
878
|
-
-
|
879
|
-
-
|
880
|
-
|
881
|
-
|
882
|
-
-
|
883
|
-
-96, -97, -98, -99, -100, -101, -102, -
|
884
|
-
-
|
885
|
-
-
|
886
|
-
-130, -131, -
|
887
|
-
-
|
888
|
-
-
|
889
|
-
-
|
890
|
-
-
|
891
|
-
-
|
892
|
-
-
|
893
|
-
-
|
894
|
-
-
|
895
|
-
-
|
896
|
-
-
|
897
|
-
-
|
898
|
-
-
|
899
|
-
-
|
900
|
-
-
|
901
|
-
-
|
902
|
-
-
|
903
|
-
-
|
904
|
-
-
|
905
|
-
-
|
906
|
-
-
|
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, -
|
909
|
-
-
|
910
|
-
-
|
911
|
-
-
|
912
|
-
-
|
913
|
-
-
|
914
|
-
-
|
915
|
-
-64, -65, -66, -67, -68, -69, -
|
916
|
-
-
|
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,
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
162,
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
162,
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
632,
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
nil,
|
959
|
-
|
960
|
-
|
961
|
-
nil,
|
962
|
-
|
963
|
-
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
|
-
|
971
|
-
nil, nil, nil, nil, 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,
|
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
|
-
|
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,
|
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,
|
985
|
-
|
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,
|
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,
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
111,
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
111,
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
111,
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
nil, nil,
|
1034
|
-
nil,
|
1035
|
-
|
1036
|
-
|
1037
|
-
nil,
|
1038
|
-
|
1039
|
-
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
|
-
|
1047
|
-
nil, nil, nil, nil, 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,
|
1050
|
-
|
1051
|
-
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
|
-
|
1054
|
-
nil, nil, nil, nil, nil, nil, nil, 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,
|
1057
|
-
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,
|
1061
|
-
|
1062
|
-
nil, nil, nil, nil, nil, nil, nil,
|
1063
|
-
nil,
|
1064
|
-
nil, nil, nil, nil, nil, nil, nil,
|
1065
|
-
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,
|
1268
|
+
nil, nil, 36 ]
|
1069
1269
|
|
1070
1270
|
racc_goto_pointer = [
|
1071
|
-
nil,
|
1072
|
-
-
|
1073
|
-
nil,
|
1074
|
-
-
|
1075
|
-
nil, nil, nil, nil,
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
-
|
1082
|
-
|
1083
|
-
-
|
1084
|
-
|
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
|
-
|
1087
|
-
-
|
1088
|
-
-
|
1089
|
-
-
|
1090
|
-
-
|
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,
|
1094
|
-
10, 11, 12, 13, 14, 15,
|
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,
|
1097
|
-
|
1098
|
-
257,
|
1099
|
-
|
1100
|
-
nil, nil, nil,
|
1101
|
-
nil,
|
1102
|
-
|
1103
|
-
nil,
|
1104
|
-
|
1105
|
-
228, 229, 230,
|
1106
|
-
|
1107
|
-
|
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,
|
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,
|
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
|
-
|
1191
|
-
6, 134, :_reduce_76,
|
1390
|
+
6, 134, :_reduce_75,
|
1192
1391
|
1, 111, :_reduce_none,
|
1193
1392
|
1, 111, :_reduce_none,
|
1194
|
-
2,
|
1195
|
-
2,
|
1196
|
-
2,
|
1197
|
-
4,
|
1198
|
-
3,
|
1199
|
-
3,
|
1200
|
-
2,
|
1201
|
-
3,
|
1202
|
-
2,
|
1203
|
-
3,
|
1204
|
-
2,
|
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,
|
1207
|
-
2,
|
1208
|
-
|
1209
|
-
1,
|
1210
|
-
|
1211
|
-
2,
|
1212
|
-
2,
|
1213
|
-
2,
|
1214
|
-
2,
|
1215
|
-
2,
|
1216
|
-
2,
|
1217
|
-
2,
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
8,
|
1227
|
-
8,
|
1228
|
-
|
1229
|
-
6,
|
1230
|
-
6,
|
1231
|
-
|
1232
|
-
|
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
|
-
|
1237
|
-
2,
|
1238
|
-
|
1239
|
-
2,
|
1240
|
-
|
1241
|
-
|
1242
|
-
2,
|
1243
|
-
|
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,
|
1251
|
-
4,
|
1252
|
-
6,
|
1253
|
-
4,
|
1254
|
-
4,
|
1255
|
-
2,
|
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
|
-
|
1260
|
-
|
1261
|
-
2,
|
1262
|
-
2,
|
1263
|
-
2,
|
1264
|
-
2,
|
1265
|
-
2,
|
1266
|
-
2,
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
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,
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1277
|
-
|
1278
|
-
3,
|
1279
|
-
|
1280
|
-
3,
|
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,
|
1285
|
-
|
1286
|
-
1,
|
1287
|
-
1,
|
1288
|
-
1,
|
1289
|
-
|
1290
|
-
|
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,
|
1295
|
-
2,
|
1296
|
-
4,
|
1297
|
-
4,
|
1298
|
-
3,
|
1299
|
-
4,
|
1300
|
-
3,
|
1301
|
-
3,
|
1302
|
-
2,
|
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,
|
1307
|
-
2,
|
1308
|
-
3,
|
1309
|
-
4,
|
1310
|
-
4,
|
1311
|
-
3,
|
1312
|
-
4,
|
1313
|
-
3,
|
1314
|
-
3,
|
1315
|
-
2,
|
1316
|
-
1,
|
1317
|
-
2,
|
1318
|
-
2,
|
1319
|
-
1,
|
1320
|
-
1,
|
1321
|
-
3,
|
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
|
-
|
1324
|
-
|
1325
|
-
|
1326
|
-
1,
|
1327
|
-
|
1328
|
-
2,
|
1329
|
-
|
1330
|
-
3,
|
1331
|
-
|
1332
|
-
|
1333
|
-
5,
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
5,
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
3,
|
1342
|
-
|
1343
|
-
|
1344
|
-
3,
|
1345
|
-
|
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,
|
1556
|
+
1, 140, :_reduce_none,
|
1557
|
+
1, 219, :_reduce_none,
|
1558
|
+
3, 219, :_reduce_243,
|
1358
1559
|
1, 220, :_reduce_none,
|
1359
|
-
3, 220, :
|
1560
|
+
3, 220, :_reduce_245,
|
1360
1561
|
1, 221, :_reduce_none,
|
1361
|
-
3, 221, :
|
1562
|
+
3, 221, :_reduce_247,
|
1362
1563
|
1, 222, :_reduce_none,
|
1363
|
-
3, 222, :
|
1564
|
+
3, 222, :_reduce_249,
|
1565
|
+
3, 222, :_reduce_250,
|
1364
1566
|
1, 223, :_reduce_none,
|
1365
|
-
3, 223, :
|
1366
|
-
3, 223, :
|
1567
|
+
3, 223, :_reduce_252,
|
1568
|
+
3, 223, :_reduce_253,
|
1367
1569
|
1, 224, :_reduce_none,
|
1368
|
-
3, 224, :
|
1369
|
-
3, 224, :
|
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
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
|
1375
|
-
1,
|
1376
|
-
|
1377
|
-
1,
|
1378
|
-
1,
|
1379
|
-
1, 228, :
|
1380
|
-
1, 228, :
|
1381
|
-
|
1382
|
-
1,
|
1383
|
-
1,
|
1384
|
-
1,
|
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,
|
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,
|
1401
|
-
1,
|
1402
|
-
1,
|
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,
|
1413
|
-
1,
|
1414
|
-
1,
|
1415
|
-
1,
|
1416
|
-
1,
|
1417
|
-
1,
|
1418
|
-
1,
|
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,
|
1423
|
-
|
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,
|
1427
|
-
1,
|
1625
|
+
1, 237, :_reduce_310,
|
1626
|
+
1, 209, :_reduce_none,
|
1428
1627
|
1, 245, :_reduce_none,
|
1429
|
-
1,
|
1430
|
-
1,
|
1431
|
-
2,
|
1432
|
-
1,
|
1433
|
-
1,
|
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, :
|
1438
|
-
1, 250, :
|
1439
|
-
2, 251, :
|
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, :
|
1444
|
-
2, 253, :
|
1445
|
-
3, 254, :
|
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,
|
1449
|
-
1,
|
1450
|
-
1,
|
1451
|
-
|
1452
|
-
|
1453
|
-
|
1454
|
-
|
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, :
|
1459
|
-
2,
|
1460
|
-
4,
|
1461
|
-
2, 260, :
|
1462
|
-
2, 262, :
|
1463
|
-
1, 259, :
|
1464
|
-
4, 263, :
|
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, :
|
1473
|
-
1, 266, :
|
1474
|
-
2, 266, :
|
1475
|
-
3, 268, :
|
1476
|
-
2, 268, :
|
1477
|
-
2, 267, :
|
1478
|
-
2,
|
1479
|
-
2, 269, :
|
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, :
|
1484
|
-
6, 131, :
|
1485
|
-
4, 131, :
|
1486
|
-
4,
|
1487
|
-
1,
|
1488
|
-
4,
|
1489
|
-
1,
|
1490
|
-
2, 246, :
|
1491
|
-
1, 273, :
|
1492
|
-
2, 273, :
|
1493
|
-
3, 274, :
|
1494
|
-
4,
|
1495
|
-
4,
|
1496
|
-
3,
|
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, :
|
1503
|
-
2, 279, :
|
1504
|
-
1, 280, :
|
1505
|
-
1, 281, :
|
1506
|
-
0, 282, :
|
1507
|
-
3, 277, :
|
1508
|
-
2, 275, :
|
1509
|
-
1, 275, :
|
1510
|
-
1, 285, :
|
1511
|
-
3, 285, :
|
1512
|
-
2, 110, :
|
1513
|
-
2, 286, :
|
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,
|
1518
|
-
3, 289, :
|
1519
|
-
2, 289, :
|
1716
|
+
3, 155, :_reduce_none,
|
1717
|
+
3, 289, :_reduce_402,
|
1718
|
+
2, 289, :_reduce_403,
|
1520
1719
|
1, 290, :_reduce_none,
|
1521
|
-
2, 291, :
|
1720
|
+
2, 291, :_reduce_405,
|
1721
|
+
1, 291, :_reduce_406,
|
1522
1722
|
1, 291, :_reduce_407,
|
1523
|
-
|
1524
|
-
|
1525
|
-
1,
|
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, :
|
1731
|
+
3, 297, :_reduce_416,
|
1732
|
+
1, 298, :_reduce_417,
|
1533
1733
|
1, 298, :_reduce_418,
|
1534
1734
|
1, 298, :_reduce_419,
|
1535
|
-
|
1536
|
-
4,
|
1537
|
-
4,
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1544
|
-
1,
|
1545
|
-
1,
|
1546
|
-
1,
|
1547
|
-
|
1548
|
-
|
1549
|
-
1,
|
1550
|
-
|
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
|
-
"
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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',
|
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
|
-
|
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',
|
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',
|
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.
|
2452
|
+
@d.end_interface(val[0])
|
2254
2453
|
end
|
2255
2454
|
.,.,
|
2256
2455
|
|
2257
|
-
module_eval(<<'.,.,', 'parser.ry',
|
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.
|
2464
|
+
@d.define_interface(val[1], val[0], val[2])
|
2266
2465
|
end
|
2267
2466
|
.,.,
|
2268
2467
|
|
2269
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2468
|
+
module_eval(<<'.,.,', 'parser.ry', 151)
|
2270
2469
|
def _reduce_84(val, _values)
|
2271
|
-
@d.define_interface(val[1], val[0]
|
2470
|
+
@d.define_interface(val[1], val[0])
|
2272
2471
|
end
|
2273
2472
|
.,.,
|
2274
2473
|
|
2275
|
-
module_eval(<<'.,.,', 'parser.ry',
|
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',
|
2480
|
+
module_eval(<<'.,.,', 'parser.ry', 155)
|
2282
2481
|
def _reduce_86(val, _values)
|
2283
|
-
@d.define_interface(val[1], val[0]
|
2482
|
+
@d.define_interface(val[1], val[0])
|
2284
2483
|
end
|
2285
2484
|
.,.,
|
2286
2485
|
|
2287
|
-
module_eval(<<'.,.,', 'parser.ry',
|
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',
|
2492
|
+
module_eval(<<'.,.,', 'parser.ry', 159)
|
2294
2493
|
def _reduce_88(val, _values)
|
2295
|
-
@d.define_interface(val[1], val[0]
|
2494
|
+
@d.define_interface(val[1], val[0])
|
2296
2495
|
end
|
2297
2496
|
.,.,
|
2298
2497
|
|
2299
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2498
|
+
module_eval(<<'.,.,', 'parser.ry', 161)
|
2300
2499
|
def _reduce_89(val, _values)
|
2301
|
-
|
2500
|
+
:local
|
2302
2501
|
end
|
2303
2502
|
.,.,
|
2304
2503
|
|
2305
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2504
|
+
module_eval(<<'.,.,', 'parser.ry', 163)
|
2306
2505
|
def _reduce_90(val, _values)
|
2307
|
-
:
|
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',
|
2324
|
-
def
|
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',
|
2330
|
-
def
|
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
|
-
|
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',
|
2362
|
-
def
|
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',
|
2368
|
-
def
|
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
|
2566
|
+
# reduce 107 omitted
|
2374
2567
|
|
2375
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2376
|
-
def
|
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',
|
2382
|
-
def
|
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',
|
2388
|
-
def
|
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',
|
2394
|
-
def
|
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',
|
2400
|
-
def
|
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',
|
2406
|
-
def
|
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',
|
2412
|
-
def
|
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',
|
2418
|
-
def
|
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',
|
2424
|
-
def
|
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
|
-
|
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',
|
2452
|
-
def
|
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
|
-
|
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',
|
2478
|
-
def
|
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',
|
2484
|
-
def
|
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',
|
2490
|
-
def
|
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',
|
2496
|
-
def
|
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',
|
2502
|
-
def
|
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
|
-
|
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',
|
2538
|
-
def
|
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',
|
2544
|
-
def
|
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
|
-
|
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[
|
2764
|
+
@d.declare_port(val[3], :receptacle, val[2], true)
|
2566
2765
|
end
|
2567
2766
|
.,.,
|
2568
2767
|
|
2569
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2768
|
+
module_eval(<<'.,.,', 'parser.ry', 294)
|
2570
2769
|
def _reduce_164(val, _values)
|
2571
|
-
@d.declare_port(val[
|
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], :
|
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], :
|
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], :
|
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',
|
2606
|
-
def
|
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
|
2804
|
+
# reduce 170 omitted
|
2612
2805
|
|
2613
|
-
# reduce
|
2806
|
+
# reduce 171 omitted
|
2614
2807
|
|
2615
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2616
|
-
def
|
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',
|
2622
|
-
def
|
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',
|
2628
|
-
def
|
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',
|
2634
|
-
def
|
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
|
2832
|
+
# reduce 176 omitted
|
2640
2833
|
|
2641
|
-
# reduce
|
2834
|
+
# reduce 177 omitted
|
2642
2835
|
|
2643
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2644
|
-
def
|
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',
|
2650
|
-
def
|
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',
|
2656
|
-
def
|
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',
|
2662
|
-
def
|
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',
|
2668
|
-
def
|
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',
|
2674
|
-
def
|
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',
|
2680
|
-
def
|
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',
|
2686
|
-
def
|
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',
|
2692
|
-
def
|
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
|
-
|
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',
|
2710
|
-
def
|
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',
|
2716
|
-
def
|
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',
|
2722
|
-
def
|
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',
|
2728
|
-
def
|
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',
|
2734
|
-
def
|
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',
|
2740
|
-
def
|
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',
|
2746
|
-
def
|
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',
|
2752
|
-
def
|
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',
|
2758
|
-
def
|
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
|
2956
|
+
# reduce 200 omitted
|
2764
2957
|
|
2765
|
-
# reduce
|
2958
|
+
# reduce 201 omitted
|
2766
2959
|
|
2767
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2768
|
-
def
|
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',
|
2774
|
-
def
|
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',
|
2780
|
-
def
|
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',
|
2786
|
-
def
|
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',
|
2792
|
-
def
|
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',
|
2798
|
-
def
|
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',
|
2804
|
-
def
|
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',
|
2810
|
-
def
|
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
|
-
|
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',
|
2832
|
-
def
|
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',
|
2840
|
-
def
|
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',
|
2846
|
-
def
|
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',
|
2852
|
-
def
|
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',
|
2858
|
-
def
|
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',
|
2864
|
-
def
|
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',
|
2870
|
-
def
|
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',
|
2876
|
-
def
|
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',
|
2882
|
-
def
|
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',
|
2888
|
-
def
|
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',
|
2894
|
-
def
|
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',
|
2900
|
-
def
|
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
|
3098
|
+
# reduce 227 omitted
|
2906
3099
|
|
2907
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2908
|
-
def
|
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',
|
2914
|
-
def
|
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',
|
2920
|
-
def
|
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
|
-
|
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
|
3148
|
+
# reduce 244 omitted
|
2956
3149
|
|
2957
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2958
|
-
def
|
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
|
3156
|
+
# reduce 246 omitted
|
2964
3157
|
|
2965
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2966
|
-
def
|
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
|
3164
|
+
# reduce 248 omitted
|
2972
3165
|
|
2973
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2974
|
-
def
|
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',
|
2980
|
-
def
|
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
|
3178
|
+
# reduce 251 omitted
|
2986
3179
|
|
2987
|
-
module_eval(<<'.,.,', 'parser.ry',
|
2988
|
-
def
|
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',
|
2994
|
-
def
|
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
|
3192
|
+
# reduce 254 omitted
|
3000
3193
|
|
3001
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3002
|
-
def
|
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',
|
3008
|
-
def
|
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',
|
3014
|
-
def
|
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',
|
3020
|
-
def
|
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
|
3218
|
+
# reduce 259 omitted
|
3026
3219
|
|
3027
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3028
|
-
def
|
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',
|
3034
|
-
def
|
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',
|
3040
|
-
def
|
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
|
3238
|
+
# reduce 263 omitted
|
3046
3239
|
|
3047
|
-
# reduce
|
3240
|
+
# reduce 264 omitted
|
3048
3241
|
|
3049
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3050
|
-
def
|
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',
|
3056
|
-
def
|
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',
|
3062
|
-
def
|
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',
|
3068
|
-
def
|
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',
|
3074
|
-
def
|
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',
|
3080
|
-
def
|
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',
|
3086
|
-
def
|
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',
|
3092
|
-
def
|
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',
|
3098
|
-
def
|
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',
|
3104
|
-
def
|
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',
|
3110
|
-
def
|
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',
|
3116
|
-
def
|
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
|
-
|
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
|
-
|
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',
|
3194
|
-
def
|
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
|
3392
|
+
# reduce 308 omitted
|
3200
3393
|
|
3201
|
-
# reduce
|
3394
|
+
# reduce 309 omitted
|
3202
3395
|
|
3203
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3204
|
-
def
|
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
|
3402
|
+
# reduce 311 omitted
|
3210
3403
|
|
3211
|
-
# reduce
|
3404
|
+
# reduce 312 omitted
|
3212
3405
|
|
3213
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3214
|
-
def
|
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',
|
3220
|
-
def
|
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',
|
3226
|
-
def
|
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
|
-
|
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',
|
3248
|
-
def
|
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',
|
3254
|
-
def
|
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
|
-
|
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',
|
3272
|
-
def
|
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',
|
3278
|
-
def
|
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',
|
3284
|
-
def
|
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',
|
3290
|
-
def
|
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',
|
3296
|
-
def
|
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',
|
3302
|
-
def
|
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',
|
3308
|
-
def
|
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',
|
3314
|
-
def
|
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',
|
3320
|
-
def
|
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',
|
3326
|
-
def
|
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',
|
3332
|
-
def
|
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',
|
3338
|
-
def
|
3530
|
+
module_eval(<<'.,.,', 'parser.ry', 617)
|
3531
|
+
def _reduce_339(val, _values)
|
3339
3532
|
nil
|
3340
3533
|
end
|
3341
3534
|
.,.,
|
3342
3535
|
|
3343
|
-
# reduce
|
3536
|
+
# reduce 340 omitted
|
3344
3537
|
|
3345
|
-
# reduce
|
3538
|
+
# reduce 341 omitted
|
3346
3539
|
|
3347
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3348
|
-
def
|
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.
|
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.
|
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.
|
3570
|
+
@d.define_union(val[1])
|
3372
3571
|
end
|
3373
3572
|
.,.,
|
3374
3573
|
|
3375
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3574
|
+
module_eval(<<'.,.,', 'parser.ry', 643)
|
3376
3575
|
def _reduce_347(val, _values)
|
3377
|
-
|
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
|
-
|
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',
|
3418
|
-
def
|
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',
|
3424
|
-
def
|
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',
|
3430
|
-
def
|
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',
|
3436
|
-
def
|
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',
|
3442
|
-
def
|
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',
|
3448
|
-
def
|
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',
|
3454
|
-
def
|
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
|
-
|
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',
|
3473
|
-
def
|
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',
|
3479
|
-
def
|
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',
|
3485
|
-
def
|
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',
|
3491
|
-
def
|
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',
|
3497
|
-
def
|
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',
|
3503
|
-
def
|
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',
|
3509
|
-
def
|
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',
|
3515
|
-
def
|
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',
|
3521
|
-
def
|
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',
|
3527
|
-
def
|
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',
|
3533
|
-
def
|
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',
|
3543
|
-
def
|
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',
|
3552
|
-
def
|
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
|
-
|
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',
|
3770
|
+
module_eval(<<'.,.,', 'parser.ry', 736)
|
3572
3771
|
def _reduce_387(val, _values)
|
3573
|
-
[val[
|
3772
|
+
[val[1], val[0]]
|
3574
3773
|
end
|
3575
3774
|
.,.,
|
3576
3775
|
|
3577
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3776
|
+
module_eval(<<'.,.,', 'parser.ry', 738)
|
3578
3777
|
def _reduce_388(val, _values)
|
3579
|
-
[val[
|
3778
|
+
[val[0], []]
|
3580
3779
|
end
|
3581
3780
|
.,.,
|
3582
3781
|
|
3583
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3782
|
+
module_eval(<<'.,.,', 'parser.ry', 740)
|
3584
3783
|
def _reduce_389(val, _values)
|
3585
|
-
[
|
3784
|
+
[[], val[0]]
|
3586
3785
|
end
|
3587
3786
|
.,.,
|
3588
3787
|
|
3589
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3788
|
+
module_eval(<<'.,.,', 'parser.ry', 742)
|
3590
3789
|
def _reduce_390(val, _values)
|
3591
|
-
[[],
|
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
|
-
|
3802
|
+
[[val[0]], val[1]]
|
3604
3803
|
end
|
3605
3804
|
.,.,
|
3606
3805
|
|
3607
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3806
|
+
module_eval(<<'.,.,', 'parser.ry', 749)
|
3608
3807
|
def _reduce_393(val, _values)
|
3609
|
-
|
3808
|
+
[val[0], []]
|
3610
3809
|
end
|
3611
3810
|
.,.,
|
3612
3811
|
|
3613
|
-
module_eval(<<'.,.,', 'parser.ry',
|
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',
|
3818
|
+
module_eval(<<'.,.,', 'parser.ry', 752)
|
3620
3819
|
def _reduce_395(val, _values)
|
3621
|
-
|
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',
|
3638
|
-
def
|
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
|
-
|
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',
|
3658
|
-
def
|
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
|
3856
|
+
# reduce 404 omitted
|
3664
3857
|
|
3665
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3666
|
-
def
|
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',
|
3672
|
-
def
|
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',
|
3678
|
-
def
|
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',
|
3684
|
-
def
|
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',
|
3690
|
-
def
|
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',
|
3696
|
-
def
|
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',
|
3702
|
-
def
|
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
|
-
|
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',
|
3914
|
+
module_eval(<<'.,.,', 'parser.ry', 795)
|
3716
3915
|
def _reduce_417(val, _values)
|
3717
|
-
|
3916
|
+
:in
|
3718
3917
|
end
|
3719
3918
|
.,.,
|
3720
3919
|
|
3721
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3920
|
+
module_eval(<<'.,.,', 'parser.ry', 796)
|
3722
3921
|
def _reduce_418(val, _values)
|
3723
|
-
:
|
3922
|
+
:out
|
3724
3923
|
end
|
3725
3924
|
.,.,
|
3726
3925
|
|
3727
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3926
|
+
module_eval(<<'.,.,', 'parser.ry', 797)
|
3728
3927
|
def _reduce_419(val, _values)
|
3729
|
-
:
|
3928
|
+
:inout
|
3730
3929
|
end
|
3731
3930
|
.,.,
|
3732
3931
|
|
3733
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3932
|
+
module_eval(<<'.,.,', 'parser.ry', 799)
|
3734
3933
|
def _reduce_420(val, _values)
|
3735
|
-
|
3934
|
+
val[2]
|
3736
3935
|
end
|
3737
3936
|
.,.,
|
3738
3937
|
|
3739
|
-
module_eval(<<'.,.,', 'parser.ry',
|
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',
|
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',
|
3950
|
+
module_eval(<<'.,.,', 'parser.ry', 805)
|
3752
3951
|
def _reduce_423(val, _values)
|
3753
|
-
val
|
3952
|
+
val
|
3754
3953
|
end
|
3755
3954
|
.,.,
|
3756
3955
|
|
3757
|
-
module_eval(<<'.,.,', 'parser.ry',
|
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',
|
3962
|
+
module_eval(<<'.,.,', 'parser.ry', 808)
|
3764
3963
|
def _reduce_425(val, _values)
|
3765
|
-
val[
|
3964
|
+
val[2]
|
3766
3965
|
end
|
3767
3966
|
.,.,
|
3768
3967
|
|
3769
|
-
module_eval(<<'.,.,', 'parser.ry',
|
3968
|
+
module_eval(<<'.,.,', 'parser.ry', 810)
|
3770
3969
|
def _reduce_426(val, _values)
|
3771
|
-
val
|
3970
|
+
val
|
3772
3971
|
end
|
3773
3972
|
.,.,
|
3774
3973
|
|
3775
|
-
module_eval(<<'.,.,', 'parser.ry',
|
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',
|
3980
|
+
module_eval(<<'.,.,', 'parser.ry', 813)
|
3782
3981
|
def _reduce_428(val, _values)
|
3783
|
-
val[0]
|
3982
|
+
val[0]
|
3784
3983
|
end
|
3785
3984
|
.,.,
|
3786
3985
|
|
3787
|
-
module_eval(<<'.,.,', 'parser.ry',
|
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',
|
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',
|
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',
|
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',
|
3818
|
-
def
|
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',
|
3824
|
-
def
|
4016
|
+
module_eval(<<'.,.,', 'parser.ry', 824)
|
4017
|
+
def _reduce_434(val, _values)
|
3825
4018
|
::IDL::Type::ValueBase.new
|
3826
4019
|
end
|
3827
4020
|
.,.,
|