123456789_123456789_123456789_123456789_123456789_

Class: RBS::Types::Bases::Any

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Base
Instance Chain:
Inherits: RBS::Types::Bases::Base
Defined in: lib/rbs/types.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(location:, todo: false) ⇒ Any

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 110

def initialize(location:, todo: false)
  super(location: location)
  if todo
    @string = "__todo__"
  end
end

Instance Method Details

#to_s(level = 0)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 117

def to_s(level=0)
  @string || "untyped"
end