Class: GirFFI::Builders::InitializerReturnValueBuilder

Inherits:
BaseReturnValueBuilder show all
Defined in:
lib/gir_ffi/builders/initializer_return_value_builder.rb

Overview

Implements post-conversion for initializer functions

Constant Summary

Constants inherited from BaseArgumentBuilder

BaseArgumentBuilder::KEYWORDS

Instance Attribute Summary

Attributes inherited from BaseArgumentBuilder

#arginfo, #array_arg, #length_arg, #related_callback_builder

Instance Method Summary collapse

Methods inherited from BaseReturnValueBuilder

#capture_variable_name, #has_return_value_name?, #post_converted_name, #relevant?, #return_value_name, #void_return_value?

Methods inherited from BaseArgumentBuilder

#argument_class_name, #array_length_idx, #array_length_parameter?, #call_argument_name, #closure_idx, #destroy_idx, #destroy_notifier?, #direction, #helper_argument?, #initialize, #mark_as_destroy_notifier, #mark_as_user_data, #name, #new_variable, #ownership_transfer, #safe, #specialized_type_tag, #type_info, #user_data?

Constructor Details

This class inherits a constructor from GirFFI::Builders::BaseArgumentBuilder

Instance Method Details

#post_conversionObject



9
10
11
12
13
14
# File 'lib/gir_ffi/builders/initializer_return_value_builder.rb', line 9

def post_conversion
  result = []
  result << "store_pointer(#{capture_variable_name})"
  result << "@struct.owned = true" if specialized_type_tag == :struct
  result
end