brew/Library/Homebrew/dependencies.rbi
Douglas Eichelberger 8a71570a6b brew style --fix
2024-02-18 15:47:56 -08:00

14 lines
340 B
Ruby

# typed: strict
class Dependencies < SimpleDelegator
include Kernel
# This is a workaround to enable `alias eql? ==`
# @see https://github.com/sorbet/sorbet/issues/2378#issuecomment-569474238
sig { params(other: BasicObject).returns(T::Boolean) }
def ==(other); end
end
class Requirements < SimpleDelegator
include Kernel
end