2024-09-04 02:35:40 +01:00
|
|
|
# typed: true
|
2021-05-12 16:07:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-16 03:32:29 +01:00
|
|
|
require "sorbet-runtime"
|
2024-01-10 12:57:40 -08:00
|
|
|
require "extend/module"
|
2021-05-12 16:07:47 +01:00
|
|
|
|
2022-07-16 03:32:29 +01:00
|
|
|
# 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
|
2024-03-06 01:00:39 +01:00
|
|
|
# Redefine `T.let`, etc. to make the `checked` parameter default to `false` rather than `true`.
|
2022-07-16 03:32:29 +01:00
|
|
|
# @private
|
|
|
|
module TNoChecks
|
|
|
|
def cast(value, type, checked: false)
|
2024-05-23 17:08:41 +01:00
|
|
|
super
|
2022-07-16 03:32:29 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def let(value, type, checked: false)
|
2024-05-23 17:08:41 +01:00
|
|
|
super
|
2022-07-16 03:32:29 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def bind(value, type, checked: false)
|
2024-05-23 17:08:41 +01:00
|
|
|
super
|
2022-07-16 03:32:29 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def assert_type!(value, type, checked: false)
|
2024-05-23 17:08:41 +01:00
|
|
|
super
|
2022-07-16 03:32:29 +01:00
|
|
|
end
|
|
|
|
end
|
2021-05-12 16:07:47 +01:00
|
|
|
|
2022-07-16 03:32:29 +01:00
|
|
|
# @private
|
|
|
|
module T
|
|
|
|
class << self
|
|
|
|
prepend TNoChecks
|
|
|
|
end
|
|
|
|
|
2024-03-06 01:00:39 +01:00
|
|
|
# Redefine `T.sig` to be a no-op.
|
2022-07-16 03:32:29 +01:00
|
|
|
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.
|
2023-12-14 02:52:30 +00:00
|
|
|
T::Configuration.call_validation_error_handler = ->(signature, opts) {}
|
|
|
|
T::Configuration.inline_type_error_handler = ->(error, opts) {}
|
2022-07-16 03:32:29 +01:00
|
|
|
end
|