Class: Internal::ByteDecoder::Expression::Self

Inherits:
Internal::ByteDecoder::Expression show all
Defined in:
lib/decompiler/vm/bytedecoder.rb

Instance Attribute Summary

Attributes inherited from Internal::ByteDecoder::Expression

#pc

Instance Method Summary collapse

Methods inherited from Internal::ByteDecoder::Expression

#<=>, #fmt

Constructor Details

#initialize(pc) ⇒ Self

Returns a new instance of Self.



217
218
219
# File 'lib/decompiler/vm/bytedecoder.rb', line 217

def initialize(pc)
  super(pc)
end

Instance Method Details

#precedenceObject



225
226
227
# File 'lib/decompiler/vm/bytedecoder.rb', line 225

def precedence
  return 1
end

#to_sObject



221
222
223
# File 'lib/decompiler/vm/bytedecoder.rb', line 221

def to_s
  return "self"
end