Module: T::Private::RuntimeLevels

Defined in:
lib/types/private/runtime_levels.rb

Overview

Used in ‘sig.checked(level)` to determine when runtime type checking is enabled on a method.

Constant Summary collapse

LEVELS =
[
  # Validate every call in every environment
  :always,
  # Validate in tests, but not in production
  :tests,
  # Don't even validate in tests, b/c too expensive,
  # or b/c we fully trust the static typing
  :never,
].freeze

Class Method Summary collapse

Class Method Details

._toggle_checking_tests(checked) ⇒ Object



38
39
40
# File 'lib/types/private/runtime_levels.rb', line 38

def self._toggle_checking_tests(checked)
  @check_tests = checked
end

.check_tests?Boolean

Returns:



20
21
22
23
24
25
26
27
# File 'lib/types/private/runtime_levels.rb', line 20

def self.check_tests?
  # Assume that this code path means that some `sig.checked(:tests)`
  # has been wrapped (or not wrapped) already, which is a trapdoor
  # for toggling `@check_tests`.
  @wrapped_tests_with_validation = true

  @check_tests
end

.enable_checking_in_testsObject



29
30
31
32
33
34
35
36
# File 'lib/types/private/runtime_levels.rb', line 29

def self.enable_checking_in_tests
  if !@check_tests && @wrapped_tests_with_validation
    raise "Toggle `:tests`-level runtime type checking earlier. " \
      "There are already some methods wrapped with `sig.checked(:tests)`." \
  end

  _toggle_checking_tests(true)
end