free_mutant/lib/mutant/ast/named_children.rb
Markus Schirp 13cd04d9be Introduce AST::Meta to externalize semantic analysis
* Add Mutant::AST namespace to hold all AST related data / helpers.
* Mutant::AST will be externalized into an ast-meta gem that can be
  shared with unparser for deduplication.
* Over the time the mutators itself will not need to deal with semantic
  analysis of the AST anymore by themselves.
* Move AST analysis for send nodes to AST::Meta
* Fix #209
2014-06-29 21:26:58 +00:00

98 lines
2 KiB
Ruby

module Mutant
module AST
# Helper methods to define named children
module NamedChildren
# Hook called when module gets included
#
# @param [Class, Module] host
#
# @return [undefined]
#
# @api private
#
def self.included(host)
super
host.class_eval do
include InstanceMethods
extend ClassMethods
end
end
# Methods mixed int ot instance level
module InstanceMethods
private
# Return children
#
# @return [Array<Parser::AST::Node]
#
# @api private
#
def children
node.children
end
end # InstanceMethods
# Methods mixed in at class level
module ClassMethods
private
# Define named child
#
# @param [Symbol] name
# @param [Fixnum] index
#
# @return [undefined]
#
# @api private
#
def define_named_child(name, index)
define_method(name) do
children.at(index)
end
end
# Define remaining children
#
# @param [Array<Symbol>] names
#
# @return [undefined]
#
# @api private
#
def define_remaining_children(names)
define_method(:remaining_children_with_index) do
children.each_with_index.drop(names.length)
end
define_method(:remaining_children_indices) do
children.each_index.drop(names.length)
end
define_method(:remaining_children) do
children.drop(names.length)
end
end
# Create name helpers
#
# @return [undefined]
#
# @api private
#
def children(*names)
names.each_with_index do |name, index|
define_named_child(name, index)
end
define_remaining_children(names)
end
end # ClassMethods
end # NamedChildren
end # AST
end # Mutant