Class: Internal::ByteDecoder::Expression::Self
- Inherits:
-
Internal::ByteDecoder::Expression
- Object
- Internal::ByteDecoder::Expression
- Internal::ByteDecoder::Expression::Self
- Defined in:
- lib/decompiler/vm/bytedecoder.rb
Instance Attribute Summary
Attributes inherited from Internal::ByteDecoder::Expression
Instance Method Summary collapse
-
#initialize(pc) ⇒ Self
constructor
A new instance of Self.
- #precedence ⇒ Object
- #to_s ⇒ Object
Methods inherited from Internal::ByteDecoder::Expression
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
#precedence ⇒ Object
225 226 227 |
# File 'lib/decompiler/vm/bytedecoder.rb', line 225 def precedence return 1 end |
#to_s ⇒ Object
221 222 223 |
# File 'lib/decompiler/vm/bytedecoder.rb', line 221 def to_s return "self" end |