Method: RBS::Types::Proc#initialize

Defined in:
lib/rbs/types.rb

#initialize(location:, type:, block:, self_type: nil) ⇒ Proc

Returns a new instance of Proc.



1403
1404
1405
1406
1407
1408
# File 'lib/rbs/types.rb', line 1403

def initialize(location:, type:, block:, self_type: nil)
  @type = type
  @block = block
  @location = location
  @self_type = self_type
end