Method: Protobug::Message::InstanceMethods#initialize

Defined in:
lib/protobug/message.rb

#initializeObject



278
279
280
281
282
283
284
# File 'lib/protobug/message.rb', line 278

def initialize
  super
  self.class.fields_by_name.each_value do |field|
    instance_variable_set(field.ivar, UNSET)
  end
  @unknown_fields = []
end