class Protobuf::Field::BaseFieldObjectDefinitions::RepeatedPackedSetMethod

def call(message_instance, bytes)

def call(message_instance, bytes)
  array = message_instance[@name]
  stream = ::StringIO.new(bytes)
  if @wire_type == ::Protobuf::WireType::VARINT
    array << @selph.decode(Varint.decode(stream)) until stream.eof?
  elsif @wire_type == ::Protobuf::WireType::FIXED64
    array << @selph.decode(stream.read(8)) until stream.eof?
  elsif @wire_type == ::Protobuf::WireType::FIXED32
    array << @selph.decode(stream.read(4)) until stream.eof?
  end
end

def initialize(selph)

def initialize(selph)
  @selph = selph
  @name = selph.name
  @wire_type = selph.wire_type
end