Method: RBI::Type::Proc#initialize

Defined in:
lib/rbi/type.rb

#initializeProc

: -> void



396
397
398
399
400
401
# File 'lib/rbi/type.rb', line 396

def initialize
  super
  @proc_params = T.let({}, T::Hash[Symbol, Type])
  @proc_returns = T.let(Type.void, Type)
  @proc_bind = T.let(nil, T.nilable(Type))
end