Class: Parser::AST::Node

Inherits:
Object
  • Object
show all
Defined in:
lib/synvert/core/node_ext.rb

Overview

Parser::AST::Node monkey patch.

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *args, &block) ⇒ Object

Respond key value for hash node, e.g.

Current node is s(:hash, s(:pair, s(:sym, :number), s(:int, 10))) node.number_value is 10



264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# File 'lib/synvert/core/node_ext.rb', line 264

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.include?('_value')
    key = method_name.to_s.sub('_value', '')
    return hash_value(key.to_sym)&.to_value if key?(key.to_sym)
    return hash_value(key.to_s)&.to_value if key?(key.to_s)

    return nil
  elsif :hash == type && method_name.to_s.include?('_source')
    key = method_name.to_s.sub('_source', '')
    return hash_value(key.to_sym)&.to_source if key?(key.to_sym)
    return hash_value(key.to_s)&.to_source if key?(key.to_s)

    return nil
  end

  super
end

Instance Method Details

#argumentsArray<Parser::AST::Node>

Get arguments node of :send, :block or :defined? node.

Returns:

Raises:



78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/synvert/core/node_ext.rb', line 78

def arguments
  case type
  when :def, :block
    children[1]
  when :defs
    children[2]
  when :send
    children[2..-1]
  when :defined?
    children
  else
    raise Synvert::Core::MethodNotSupported, "arguments is not handled for #{debug_info}"
  end
end

#bodyArray<Parser::AST::Node>

Get body node of :begin or :block node.

Returns:

Raises:



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/synvert/core/node_ext.rb', line 109

def body
  case type
  when :begin
    children
  when :def, :block, :class
    return [] if children[2].nil?

    :begin == children[2].type ? children[2].body : children[2..-1]
  when :defs
    return [] if children[3].nil?

    :begin == children[3].type ? children[3].body : children[3..-1]
  else
    raise Synvert::Core::MethodNotSupported, "body is not handled for #{debug_info}"
  end
end

#callerParser::AST::Node

Get caller node of :block node.

Returns:

Raises:



97
98
99
100
101
102
103
# File 'lib/synvert/core/node_ext.rb', line 97

def caller
  if :block == type
    children[0]
  else
    raise Synvert::Core::MethodNotSupported, "caller is not handled for #{debug_info}"
  end
end

#child_node_range(child_name) ⇒ Parser::Source::Range

Get the source range of child node.

Parameters:

  • name (String)

    of child node.

Returns:

  • (Parser::Source::Range)

    source range of child node.



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
# File 'lib/synvert/core/node_ext.rb', line 339

def child_node_range(child_name)
  case [type, child_name]
  when %i[block pipes], %i[def parentheses], %i[defs parentheses]
    Parser::Source::Range.new('(string)', arguments.loc.expression.begin_pos, arguments.loc.expression.end_pos)
  when %i[block arguments], %i[def arguments], %i[defs arguments]
    Parser::Source::Range.new(
      '(string)',
      arguments.first.loc.expression.begin_pos,
      arguments.last.loc.expression.end_pos
    )
  when %i[class name], %i[def name], %i[defs name]
    loc.name
  when %i[defs dot]
    loc.operator
  when %i[defs self]
    Parser::Source::Range.new('(string)', loc.operator.begin_pos - 'self'.length, loc.operator.begin_pos)
  when %i[send dot]
    loc.dot
  when %i[send message]
    if loc.operator
      Parser::Source::Range.new('(string)', loc.selector.begin_pos, loc.operator.end_pos)
    else
      loc.selector
    end
  else
    if respond_to?(child_name)
      child_node = send(child_name)
      return nil if child_node.nil?

      if child_node.is_a?(Parser::AST::Node)
        return(
          Parser::Source::Range.new(
            '(string)',
            child_node.loc.expression.begin_pos,
            child_node.loc.expression.end_pos
          )
        )
      end

      # arguments
      return nil if child_node.empty?

      return(
        Parser::Source::Range.new(
          '(string)',
          child_node.first.loc.expression.begin_pos,
          child_node.last.loc.expression.end_pos
        )
      )
    end

    raise Synvert::Core::MethodNotSupported,
          "child_node_range is not handled for #{evaluated.inspect}, child_name: #{child_name}"
  end
end

#conditionParser::AST::Node

Get condition node of :if node.

Returns:

Raises:



130
131
132
133
134
135
136
# File 'lib/synvert/core/node_ext.rb', line 130

def condition
  if :if == type
    children[0]
  else
    raise Synvert::Core::MethodNotSupported, "condition is not handled for #{debug_info}"
  end
end

#debug_infoObject



304
305
306
307
308
309
310
311
312
# File 'lib/synvert/core/node_ext.rb', line 304

def debug_info
  "\n" +
    [
      "file: #{loc.expression.source_buffer.name}",
      "line: #{loc.expression.line}",
      "source: #{to_source}",
      "node: #{inspect}"
    ].join("\n")
end

#hash_value(key) ⇒ Parser::AST::Node

Get hash value node according to specified key.

Parameters:

  • key (Object)

    value.

Returns:

Raises:



180
181
182
183
184
185
186
187
# File 'lib/synvert/core/node_ext.rb', line 180

def hash_value(key)
  if :hash == type
    value_node = children.find { |pair_node| pair_node.key.to_value == key }
    value_node&.value
  else
    raise Synvert::Core::MethodNotSupported, "hash_value is not handled for #{debug_info}"
  end
end

#indentInteger

Get the indent of current node.

Returns:

  • (Integer)

    indent.



324
325
326
# File 'lib/synvert/core/node_ext.rb', line 324

def indent
  loc.expression.column
end

#keyParser::AST::Node

Get key node of hash :pair node.

Returns:

Raises:



193
194
195
196
197
198
199
# File 'lib/synvert/core/node_ext.rb', line 193

def key
  if :pair == type
    children.first
  else
    raise Synvert::Core::MethodNotSupported, "key is not handled for #{debug_info}"
  end
end

#key?(key) ⇒ Boolean

Test if hash node contains specified key.

Parameters:

  • key (Object)

    value.

Returns:

  • (Boolean)

    true if specified key exists.

Raises:



167
168
169
170
171
172
173
# File 'lib/synvert/core/node_ext.rb', line 167

def key?(key)
  if :hash == type
    children.any? { |pair_node| pair_node.key.to_value == key }
  else
    raise Synvert::Core::MethodNotSupported, "key? is not handled for #{debug_info}"
  end
end

#keysArray<Parser::AST::Node>

Get keys node of :hash node.

Returns:

Raises:



142
143
144
145
146
147
148
# File 'lib/synvert/core/node_ext.rb', line 142

def keys
  if :hash == type
    children.map { |child| child.children[0] }
  else
    raise Synvert::Core::MethodNotSupported, "keys is not handled for #{debug_info}"
  end
end

#left_valueParser::AST::Node

Return the left value.

Returns:

Raises:



217
218
219
220
221
222
223
# File 'lib/synvert/core/node_ext.rb', line 217

def left_value
  if %i[masgn lvasgn ivasgn].include? type
    children[0]
  else
    raise Synvert::Core::MethodNotSupported, "left_value is not handled for #{debug_info}"
  end
end

#lineInteger

Get the line of current node.

Returns:

  • (Integer)

    line.



331
332
333
# File 'lib/synvert/core/node_ext.rb', line 331

def line
  loc.expression.line
end

#match?(rules) ⇒ Boolean

Match current node with rules.

Parameters:

  • rules (Hash)

    rules to match.

Returns:

  • (Boolean)

    true if matches.



412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
# File 'lib/synvert/core/node_ext.rb', line 412

def match?(rules)
  flat_hash(rules).keys.all? do |multi_keys|
    case multi_keys.last
    when :any, :contain
      actual_values = actual_value(self, multi_keys[0...-1])
      expected = expected_value(rules, multi_keys)
      actual_values.any? { |actual| match_value?(actual, expected) }
    when :not
      actual = actual_value(self, multi_keys[0...-1])
      expected = expected_value(rules, multi_keys)
      !match_value?(actual, expected)
    when :in
      actual = actual_value(self, multi_keys[0...-1])
      expected_values = expected_value(rules, multi_keys)
      expected_values.any? { |expected| match_value?(actual, expected) }
    when :not_in
      actual = actual_value(self, multi_keys[0...-1])
      expected_values = expected_value(rules, multi_keys)
      expected_values.all? { |expected| !match_value?(actual, expected) }
    else
      actual = actual_value(self, multi_keys)
      expected = expected_value(rules, multi_keys)
      match_value?(actual, expected)
    end
  end
end

#messageParser::AST::Node

Get message node of :super or :send node.

Returns:

Raises:



63
64
65
66
67
68
69
70
71
72
# File 'lib/synvert/core/node_ext.rb', line 63

def message
  case type
  when :super, :zsuper
    :super
  when :send
    children[1]
  else
    raise Synvert::Core::MethodNotSupported, "message is not handled for #{debug_info}"
  end
end

#nameParser::AST::Node

Get name node of :class, :module, :const, :mlhs, :def and :defs node.

Returns:

Raises:



10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/synvert/core/node_ext.rb', line 10

def name
  case type
  when :class, :module, :def, :arg, :blockarg, :restarg
    children[0]
  when :defs, :const
    children[1]
  when :mlhs
    self
  else
    raise Synvert::Core::MethodNotSupported, "name is not handled for #{debug_info}"
  end
end

#parent_classParser::AST::Node

Get parent_class node of :class node.

Returns:

Raises:



27
28
29
30
31
32
33
# File 'lib/synvert/core/node_ext.rb', line 27

def parent_class
  if :class == type
    children[1]
  else
    raise Synvert::Core::MethodNotSupported, "parent_class is not handled for #{debug_info}"
  end
end

#parent_constParser::AST::Node

Get parent constant node of :const node.

Returns:

Raises:



39
40
41
42
43
44
45
# File 'lib/synvert/core/node_ext.rb', line 39

def parent_const
  if :const == type
    children[0]
  else
    raise Synvert::Core::MethodNotSupported, "parent_const is not handled for #{debug_info}"
  end
end

#receiverParser::AST::Node

Get receiver node of :send node.

Returns:

Raises:



51
52
53
54
55
56
57
# File 'lib/synvert/core/node_ext.rb', line 51

def receiver
  if :send == type
    children[0]
  else
    raise Synvert::Core::MethodNotSupported, "receiver is not handled for #{debug_info}"
  end
end

#recursive_children {|child| ... } ⇒ Object

Recursively iterate all child nodes of current node.

Yields:

  • (child)

    Gives a child node.

Yield Parameters:



399
400
401
402
403
404
405
406
# File 'lib/synvert/core/node_ext.rb', line 399

def recursive_children(&block)
  children.each do |child|
    if child.is_a?(Parser::AST::Node)
      yield child
      child.recursive_children(&block)
    end
  end
end

#respond_to_missing?(method_name, *args) ⇒ Boolean

Returns:

  • (Boolean)


284
285
286
287
288
289
290
291
292
293
294
295
296
# File 'lib/synvert/core/node_ext.rb', line 284

def respond_to_missing?(method_name, *args)
  if :args == type && children.respond_to?(method_name)
    return true
  elsif :hash == type && method_name.to_s.include?('_value')
    key = method_name.to_s.sub('_value', '')
    return true if key?(key.to_sym) || key?(key.to_s)
  elsif :hash == type && method_name.to_s.include?('_source')
    key = method_name.to_s.sub('_source', '')
    return true if key?(key.to_sym) || key?(key.to_s)
  end

  super
end

#rewritten_source(code) ⇒ String

Get rewritten source code.

Examples:

node.rewritten_source("create({{arguments}})") #=> "create(:post)"

Parameters:

  • code (String)

    raw code.

Returns:

  • (String)

    rewritten code, replace string in block } in raw code.

Raises:



446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
# File 'lib/synvert/core/node_ext.rb', line 446

def rewritten_source(code)
  code.gsub(/{{(.*?)}}/m) do
    old_code = Regexp.last_match(1)
    if respond_to? old_code.split(/\.|\[/).first
      evaluated = instance_eval old_code
      case evaluated
      when Parser::AST::Node
        if evaluated.type == :args
          evaluated.loc.expression.source[1...-1]
        else
          evaluated.loc.expression.source
        end
      when Array
        if evaluated.size > 0
          file_source = evaluated.first.loc.expression.source_buffer.source
          source = file_source[evaluated.first.loc.expression.begin_pos...evaluated.last.loc.expression.end_pos]
          lines = source.split "\n"
          lines_count = lines.length
          if lines_count > 1 && lines_count == evaluated.size
            new_code = []
            lines.each_with_index { |line, index|
              new_code << (index == 0 ? line : line[evaluated.first.indent - 2..-1])
            }
            new_code.join("\n")
          else
            source
          end
        end
      when String, Symbol, Integer, Float
        evaluated
      when NilClass
        'nil'
      else
        raise Synvert::Core::MethodNotSupported, "rewritten_source is not handled for #{evaluated.inspect}"
      end
    else
      "{{#{old_code}}}"
    end
  end
end

#right_valueArray<Parser::AST::Node>

Return the right value.

Returns:

Raises:



229
230
231
232
233
234
235
# File 'lib/synvert/core/node_ext.rb', line 229

def right_value
  if %i[masgn lvasgn ivasgn].include? type
    children[1]
  else
    raise Synvert::Core::MethodNotSupported, "right_value is not handled for #{debug_info}"
  end
end

#to_sObject



298
299
300
301
302
# File 'lib/synvert/core/node_ext.rb', line 298

def to_s
  if :mlhs == type
    "(#{children.map(&:name).join(', ')})"
  end
end

#to_sourceString

Get the source code of current node.

Returns:

  • (String)

    source code.



317
318
319
# File 'lib/synvert/core/node_ext.rb', line 317

def to_source
  loc.expression&.source
end

#to_valueObject

Return the exact value.

Returns:

  • (Object)

    exact value.

Raises:



241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/synvert/core/node_ext.rb', line 241

def to_value
  case type
  when :int, :str, :sym
    children.last
  when :true
    true
  when :false
    false
  when :array
    children.map(&:to_value)
  when :irange
    (children.first.to_value..children.last.to_value)
  when :begin
    children.first.to_value
  else
    raise Synvert::Core::MethodNotSupported, "to_value is not handled for #{debug_info}"
  end
end

#valueParser::AST::Node

Get value node of hash :pair node.

Returns:

Raises:



205
206
207
208
209
210
211
# File 'lib/synvert/core/node_ext.rb', line 205

def value
  if :pair == type
    children.last
  else
    raise Synvert::Core::MethodNotSupported, "value is not handled for #{debug_info}"
  end
end

#valuesArray<Parser::AST::Node>

Get values node of :hash node.

Returns:

Raises:



154
155
156
157
158
159
160
# File 'lib/synvert/core/node_ext.rb', line 154

def values
  if :hash == type
    children.map { |child| child.children[1] }
  else
    raise Synvert::Core::MethodNotSupported, "keys is not handled for #{debug_info}"
  end
end