121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
|
# File 'lib/parser_node_ext.rb', line 121
def self.included(base)
base.class_eval do
TYPE_CHILDREN.values.flatten.uniq.each do |method_name|
define_method(method_name) do
index = TYPE_CHILDREN[type]&.index(method_name)
return children[index] if index
raise MethodNotSupported, "#{method_name} is not supported for #{self}"
end
end
def full_name
if %i[class module].include?(type)
if parent&.respond_to?(:full_name)
"#{parent.full_name}::#{name.to_source}"
else
name.to_source
end
end
end
def arguments
case type
when :def
children[1].type == :args ? children[1].children : [children[1]]
when :defs
children[2].type == :args ? children[2].children : [children[2]]
when :block
children[1].children
when :send, :csend
children[2..-1]
when :defined?, :yield
children
else
raise MethodNotSupported, "arguments is not supported for #{self}"
end
end
def body
case type
when :begin, :kwbegin
children
when :rescue, :ensure, :preexe, :postexe
return [] if children[0].nil?
[:begin, :kwbegin].include?(children[0].type) ? children[0].body : [children[0]]
when :when, :module, :sclass, :until, :until_post, :while, :while_post
return [] if children[1].nil?
[:begin, :kwbegin].include?(children[1].type) ? children[1].body : children[1..-1]
when :def, :block, :class, :for, :in_pattern, :numblock, :resbody
return [] if children[2].nil?
[:begin, :kwbegin].include?(children[2].type) ? children[2].body : children[2..-1]
when :defs
return [] if children[3].nil?
[:begin, :kwbegin].include?(children[3].type) ? children[3].body : children[3..-1]
else
raise MethodNotSupported, "body is not supported for #{self}"
end
end
def when_statements
if :case == type
children[1...-1]
else
raise MethodNotSupported, "when_statements is not supported for #{self}"
end
end
def rescue_bodies
if :rescue == type
children[1...-1]
else
raise MethodNotSupported, "rescue_bodies is not supported for #{self}"
end
end
def ensure_body
if :ensure == type
children[1..-1]
else
raise MethodNotSupported, "ensure_body is not supported for #{self}"
end
end
def in_statements
if :case_match == type
children[1...-1]
else
raise MethodNotSupported, "in_statements is not supported for #{self}"
end
end
def else_statement
children[-1]
end
def elements
if %i[array array_pattern array_pattern_with_tail find_pattern dstr dsym xstr regopt mlhs undef].include?(type)
children
elsif type == :regexp
children[0...-1]
else
raise MethodNotSupported, "elements is not supported for #{self}"
end
end
def options
if :regexp == type
children[-1]
else
raise MethodNotSupported, "options is not supported for #{self}"
end
end
def exceptions
if :resbody == type
children[0]
else
raise MethodNotSupported, "exceptions is not supported for #{self}"
end
end
def pairs
if %i[hash hash_pattern].include?(type)
children.select { |child| child.type == :pair }
else
raise MethodNotSupported, "pairs is not supported for #{self}"
end
end
def keys
if %i[hash hash_pattern].include?(type)
pairs.map(&:key)
else
raise MethodNotSupported, "keys is not supported for #{self}"
end
end
def values
if %i[hash hash_pattern].include?(type)
pairs.map(&:value)
else
raise MethodNotSupported, "keys is not supported for #{self}"
end
end
def kwsplats
if %i[hash hash_pattern].include?(type)
children.select { |child| child.type == :kwsplat }
else
raise MethodNotSupported, "kwsplats is not supported for #{self}"
end
end
def to_value
case type
when :int, :float, :str, :sym
children.last
when :true
true
when :false
false
when :nil
nil
when :array
children.map(&:to_value)
when :begin, :kwbegin
children.first.to_value
else
self
end
end
def to_source
loc.expression&.source
end
def method_missing(method_name, *args, &block)
if :args == type && children.respond_to?(method_name)
return children.send(method_name, *args, &block)
elsif :hash == type && method_name.to_s.end_with?('_pair')
key = method_name.to_s[0..-6]
return pairs.find { |pair| pair.key.to_value.to_s == key }
elsif :hash == type && method_name.to_s.end_with?('_value')
key = method_name.to_s[0..-7]
return pairs.find { |pair| pair.key.to_value.to_s == key }&.value
elsif :hash == type && method_name.to_s.end_with?('_source')
key = method_name.to_s[0..-8]
return pairs.find { |pair| pair.key.to_value.to_s == key }&.value&.to_source || ''
end
super
end
def respond_to_missing?(method_name, *args)
if :args == type && children.respond_to?(method_name)
return true
elsif :hash == type && method_name.to_s.end_with?('_pair')
key = method_name.to_s[0..-6]
return !!pairs.find { |pair| pair.key.to_value.to_s == key }
elsif :hash == type && method_name.to_s.end_with?('_value')
key = method_name.to_s[0..-7]
return !!pairs.find { |pair| pair.key.to_value.to_s == key }
elsif :hash == type && method_name.to_s.end_with?('_source')
key = method_name.to_s[0..-8]
return !!pairs.find { |pair| pair.key.to_value.to_s == key }
end
super
end
end
end
|