50 lines
1.2 KiB
Ruby
Raw Normal View History

# typed: true
# frozen_string_literal: true
require "sorbet-runtime"
2024-01-10 12:57:40 -08:00
require "extend/module"
# Disable runtime checking unless enabled.
# In the future we should consider not doing this monkey patch,
# if assured that there is no performance hit from removing this.
# There are mechanisms to achieve a middle ground (`default_checked_level`).
2024-11-21 18:10:20 -08:00
if ENV["HOMEBREW_SORBET_RUNTIME"]
T::Configuration.enable_final_checks_on_hooks
else
# Redefine `T.let`, etc. to make the `checked` parameter default to `false` rather than `true`.
# @private
module TNoChecks
def cast(value, type, checked: false)
2024-05-23 17:08:41 +01:00
super
end
def let(value, type, checked: false)
2024-05-23 17:08:41 +01:00
super
end
def bind(value, type, checked: false)
2024-05-23 17:08:41 +01:00
super
end
def assert_type!(value, type, checked: false)
2024-05-23 17:08:41 +01:00
super
end
end
# @private
module T
class << self
prepend TNoChecks
end
# Redefine `T.sig` to be a no-op.
module Sig
def sig(arg0 = nil, &blk); end
end
end
# For any cases the above doesn't handle: make sure we don't let TypeError slip through.
T::Configuration.call_validation_error_handler = ->(signature, opts) {}
T::Configuration.inline_type_error_handler = ->(error, opts) {}
end