Sha256: 1b36722d994023aa2ee9155178abe8a83c8664f0b8dfa40c80e6644122f0608c
Contents?: true
Size: 522 Bytes
Versions: 17
Compression:
Stored size: 522 Bytes
Contents
# frozen_string_literal: true module GirFFI # Class to represent argument info for the argument of a setter method. # Implements the necessary parts of IArgInfo's interface. # TODO: Rename and add direction argument or subclass class FieldArgumentInfo attr_reader :name, :argument_type def initialize(name, type) @name = name @argument_type = type end def direction :in end def ownership_transfer :everything end def skip? false end end end
Version data entries
17 entries across 17 versions & 1 rubygems