1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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
|
# frozen_string_literal: true
module Unparser
# Namespace for AST processing tools
module AST
FIRST_CHILD = ->(node) { node.children.first }.freeze
TAUTOLOGY = ->(_node) { true }.freeze
RESET_NODES = %i[module class sclass def defs].freeze
INHERIT_NODES = [:block].freeze
CLOSE_NODES = (RESET_NODES + INHERIT_NODES).freeze
# Nodes that assign a local variable
ASSIGN_NODES =
%i[
arg
kwarg
kwoptarg
lvasgn
optarg
procarg0
restarg
].to_set.freeze
# Test for local variable inherited scope reset
#
# @param [Parser::AST::Node] node
#
# @return [Boolean]
#
# @api private
#
def self.not_close_scope?(node)
!CLOSE_NODES.include?(node.type)
end
# Test for local variable scope reset
#
# @param [Parser::AST::Node] node
#
# @return [Boolean]
#
# @api private
#
def self.not_reset_scope?(node)
!RESET_NODES.include?(node.type)
end
# Return local variables that get assigned in scope
#
# @param [Parser::AST::Node] node
#
# @return [Set<Symbol>]
#
# @api private
#
def self.local_variable_assignments(node)
Enumerator.new(
node,
method(:not_reset_scope?)
).types(ASSIGN_NODES)
end
# Return local variables read
#
# @param [Parser::AST::Node] node
#
# @return [Set<Symbol>]
#
# @api private
#
def self.local_variable_reads(node)
Enumerator.new(
node,
method(:not_close_scope?)
).type(:lvar).map(&FIRST_CHILD).to_set
end
# AST enumerator
class Enumerator
include Adamantium, Concord.new(:node, :controller), Enumerable
# Return new instance
#
# @param [Parser::AST::Node] node
# @param [#call(node)] controller
#
# @return [Enumerator]
#
# @api private
#
def self.new(node, controller = TAUTOLOGY)
super
end
# Return each node
#
# @return [Enumerator<Parser::AST::Node>]
# if no block given
#
# @return [self]
# otherwise
#
# @api private
#
def each(&block)
Walker.call(node, controller, &block)
end
# Return nodes selected by types
#
# @param [Enumerable<Symbol>] types
#
# @return [Enumerable<Parser::AST::Node>]
#
# @api private
#
def types(types)
select { |node| types.include?(node.type) }
end
# Return nodes selected by type
#
# @param [Symbol] type
#
# @return [Enumerable<Parser::AST::Node>]
#
# @api private
#
def type(type)
select { |node| node.type.equal?(type) }
end
# Return frozne set of objects
#
# @param [Enumerable] enumerable
#
# @return [Set]
#
# @api private
#
def self.set(enumerable)
enumerable.to_set.freeze
end
private_class_method :set
# Return nodes of type
#
# @param [Parser::AST::Node] node
# @param [Symbol] type
#
# @return [Enumerable<Parser::AST::Node]
#
# @api private
#
def self.type(node, type)
new(node).type(type)
end
private_class_method :type
end # Enumerator
# Controlled AST walker walking the AST in deeth first search with pre order
class Walker
include Concord.new(:block, :controller)
# Call ast walker
#
# @param [Parser::AST::Node] node
#
# @return [self]
#
# @api private
#
def self.call(node, controller = TAUTOLOGY, &block)
new(block, controller).call(node)
self
end
# Call walker with node
#
# @param [Parser::AST::Node] node
#
# @return [undefined]
#
# @api private
#
def call(node)
return unless controller.call(node)
block.call(node)
node.children.each do |child|
break unless child.instance_of?(Parser::AST::Node)
call(child)
end
end
end # Walker
end # AST
end # Unparser
|