Class: YTLJit::TypeUtil::KlassTreeNode

Inherits:
Object
  • Object
show all
Defined in:
lib/ytljit/vm_type.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key, value) ⇒ KlassTreeNode

Returns a new instance of KlassTreeNode.



81
82
83
84
85
86
87
# File 'lib/ytljit/vm_type.rb', line 81

def initialize(key, value)
  @same_klass = nil
  @next_klass = nil

  @key = key
  @value = value
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



91
92
93
# File 'lib/ytljit/vm_type.rb', line 91

def key
  @key
end

#next_klassObject

Returns the value of attribute next_klass.



90
91
92
# File 'lib/ytljit/vm_type.rb', line 90

def next_klass
  @next_klass
end

#same_klassObject

Returns the value of attribute same_klass.



89
90
91
# File 'lib/ytljit/vm_type.rb', line 89

def same_klass
  @same_klass
end

#valueObject (readonly)

Returns the value of attribute value.



92
93
94
# File 'lib/ytljit/vm_type.rb', line 92

def value
  @value
end