Class: JavaClass::StackMapFrame
- Inherits:
-
Object
- Object
- JavaClass::StackMapFrame
- Includes:
- Base
- Defined in:
- lib/javaclass/attribute.rb
Overview
スタックマップフレーム
Direct Known Subclasses
AppendFrame, ChopFrame, FullFrame, SameFrame, SameFrameExtended, SameLocals1StackItemFrame, SameLocals1StackItemFrameExtended
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(frame_type) ⇒ StackMapFrame
constructor
コンストラクタ.
- #to_bytes ⇒ Object
Methods included from Base
#==, #===, #dump, #eql?, #hash, #to_byte
Constructor Details
#initialize(frame_type) ⇒ StackMapFrame
コンストラクタ
*frame_type::種別
1103 1104 1105 |
# File 'lib/javaclass/attribute.rb', line 1103 def initialize(frame_type) @frame_type = frame_type end |
Instance Attribute Details
#frame_type ⇒ Object
種別
1110 1111 1112 |
# File 'lib/javaclass/attribute.rb', line 1110 def frame_type @frame_type end |
Instance Method Details
#to_bytes ⇒ Object
1106 1107 1108 |
# File 'lib/javaclass/attribute.rb', line 1106 def to_bytes to_byte( frame_type, 1 ) end |