class AdLint::Cc1::UnsignedLongLongType

Public Class Methods

new(type_tbl) click to toggle source
Calls superclass method AdLint::Cc1::IntegerType::new
# File lib/adlint/cc1/type.rb, line 4658
def initialize(type_tbl)
  # FIXME: StandardTypesAccessor is not ready until @type_table is
  #        initialized.
  @type_table = type_tbl
  super(type_tbl, "unsigned long long",
        long_long_size, long_long_alignment, false, true)
end

Public Instance Methods

arithmetic_type_with(type) click to toggle source
# File lib/adlint/cc1/type.rb, line 4674
def arithmetic_type_with(type)
  type._arithmetic_type_with_unsigned_long_long(self)
end
corresponding_signed_type() click to toggle source
# File lib/adlint/cc1/type.rb, line 4678
def corresponding_signed_type
  signed_long_long_t
end
corresponding_unsigned_type() click to toggle source
# File lib/adlint/cc1/type.rb, line 4682
def corresponding_unsigned_type
  self
end
id() click to toggle source
# File lib/adlint/cc1/type.rb, line 4666
def id
  @id ||= UnsignedLongLongTypeId.new
end
integer_conversion_rank() click to toggle source
# File lib/adlint/cc1/type.rb, line 4670
def integer_conversion_rank
  5
end