class Unparser::AST

def self.local_variable_assignments(node)

Other tags:
    Api: - private

Returns:
  • (Set) -

Parameters:
  • node (Parser::AST::Node) --
def self.local_variable_assignments(node)
  Enumerator.new(
    node,
    method(:not_reset_scope?)
  ).types(ASSIGN_NODES)
end