46 lines
1.4 KiB
Ruby
Raw Normal View History

# typed: strict
# frozen_string_literal: true
module Homebrew
module Tapioca
module Utils
2024-10-14 21:38:59 -07:00
sig { params(klass: T::Class[T.anything]).returns(Module) }
def self.named_object_for(klass)
return klass if klass.name
attached_object = klass.attached_object
case attached_object
when Module then attached_object
else raise "Unsupported attached object for: #{klass}"
end
end
# @param class_methods [Boolean] whether to get class methods or instance methods
# @return the `module` methods that are defined in the given file
sig {
params(mod: Module, file_name: String,
class_methods: T::Boolean).returns(T::Array[T.any(Method, UnboundMethod)])
}
def self.methods_from_file(mod, file_name, class_methods: false)
methods = if class_methods
mod.methods(false).map { mod.method(_1) }
else
mod.instance_methods(false).map { mod.instance_method(_1) }
end
methods.select { _1.source_location&.first&.end_with?(file_name) }
end
2024-10-14 21:38:59 -07:00
sig { params(mod: Module).returns(T::Array[Module]) }
def self.named_objects_with_module(mod)
ObjectSpace.each_object(mod).map do |obj|
case obj
when Class then named_object_for(obj)
when Module then obj
else raise "Unsupported object: #{obj}"
end
end.uniq
end
end
end
end