Class: YTLJit::AsmType::TypeCommon
Direct Known Subclasses
Instance Attribute Summary collapse
-
#alignment ⇒ Object
readonly
Returns the value of attribute alignment.
-
#size ⇒ Object
readonly
Returns the value of attribute size.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize ⇒ TypeCommon
constructor
A new instance of TypeCommon.
Constructor Details
#initialize ⇒ TypeCommon
Returns a new instance of TypeCommon.
5 6 7 8 9 |
# File 'lib/ytljit/type.rb', line 5 def initialize @type = nil @size = nil @alignment = nil end |
Instance Attribute Details
#alignment ⇒ Object (readonly)
Returns the value of attribute alignment.
13 14 15 |
# File 'lib/ytljit/type.rb', line 13 def alignment @alignment end |
#size ⇒ Object (readonly)
Returns the value of attribute size.
12 13 14 |
# File 'lib/ytljit/type.rb', line 12 def size @size end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
11 12 13 |
# File 'lib/ytljit/type.rb', line 11 def type @type end |