Class: AdLint::Cc1::FunctionTypeId
- Defined in:
- lib/adlint/cc1/type.rb
Instance Method Summary collapse
-
#initialize(ret_type, param_types, have_va_list) ⇒ FunctionTypeId
constructor
A new instance of FunctionTypeId.
Methods inherited from TypeId
Constructor Details
#initialize(ret_type, param_types, have_va_list) ⇒ FunctionTypeId
Returns a new instance of FunctionTypeId.
2977 2978 2979 |
# File 'lib/adlint/cc1/type.rb', line 2977 def initialize(ret_type, param_types, have_va_list) super(create_value(ret_type, param_types, have_va_list)) end |