Class: Nodewrap::ByteDecoder::Expression::Throw
- Inherits:
-
Nodewrap::ByteDecoder::Expression
- Object
- Nodewrap::ByteDecoder::Expression
- Nodewrap::ByteDecoder::Expression::Throw
- Defined in:
- lib/bytedecoder.rb
Instance Attribute Summary
Attributes inherited from Nodewrap::ByteDecoder::Expression
Instance Method Summary collapse
-
#initialize(pc, value) ⇒ Throw
constructor
A new instance of Throw.
- #precedence ⇒ Object
- #to_s ⇒ Object
Methods inherited from Nodewrap::ByteDecoder::Expression
Constructor Details
#initialize(pc, value) ⇒ Throw
Returns a new instance of Throw.
426 427 428 429 |
# File 'lib/bytedecoder.rb', line 426 def initialize(pc, value) super(pc) @value = value end |
Instance Method Details
#precedence ⇒ Object
440 441 442 |
# File 'lib/bytedecoder.rb', line 440 def precedence return 1 end |