Class: RBI::Type::AttachedClass

Inherits:
RBI::Type show all
Defined in:
lib/rbi/type.rb

Overview

‘T.attached_class`.

Instance Method Summary collapse

Methods inherited from RBI::Type

all, any, anything, attached_class, boolean, class_of, #eql?, generic, #hash, #initialize, #nilable, nilable, #nilable?, #non_nilable, noreturn, parse_node, parse_string, proc, #rbs_string, self_type, shape, simple, t_class, #to_s, tuple, type_parameter, untyped, void

Constructor Details

This class inherits a constructor from RBI::Type

Instance Method Details

#==(other) ⇒ Object

: (BasicObject other) -> bool



81
82
83
# File 'lib/rbi/type.rb', line 81

def ==(other)
  AttachedClass === other
end

#normalizeObject

: -> Type



93
94
95
# File 'lib/rbi/type.rb', line 93

def normalize
  self
end

#simplifyObject

: -> Type



99
100
101
# File 'lib/rbi/type.rb', line 99

def simplify
  self
end

#to_rbiObject

: -> String



87
88
89
# File 'lib/rbi/type.rb', line 87

def to_rbi
  "T.attached_class"
end