Class: AdLint::Cc1::SignedShortIntTypeId
- Inherits:
-
StandardTypeId
- Object
- TypeId
- StandardTypeId
- AdLint::Cc1::SignedShortIntTypeId
- Defined in:
- lib/adlint/cc1/type.rb
Instance Method Summary collapse
- #==(rhs_id) ⇒ Object
-
#initialize ⇒ SignedShortIntTypeId
constructor
A new instance of SignedShortIntTypeId.
Methods inherited from TypeId
Constructor Details
#initialize ⇒ SignedShortIntTypeId
Returns a new instance of SignedShortIntTypeId.
4021 4022 4023 |
# File 'lib/adlint/cc1/type.rb', line 4021 def initialize super("signed short int") end |
Instance Method Details
#==(rhs_id) ⇒ Object
4025 4026 4027 4028 4029 4030 4031 4032 |
# File 'lib/adlint/cc1/type.rb', line 4025 def ==(rhs_id) case rhs_id when SignedShortIntTypeId, ShortTypeId, ShortIntTypeId, SignedShortTypeId true else false end end |