Class: Protobuf::Node::GroupNode

Inherits:
Base
  • Object
show all
Defined in:
lib/protobuf/compiler/nodes.rb

Instance Method Summary collapse

Methods inherited from Base

#accept_rpc_visitor, #define_in_the_file

Constructor Details

#initialize(label, name, value, children) ⇒ GroupNode

Returns a new instance of GroupNode.



230
231
232
# File 'lib/protobuf/compiler/nodes.rb', line 230

def initialize(label, name, value, children)
  @label, @name, @value, @children = label, name, value, children
end

Instance Method Details

#accept_descriptor_visitor(visitor) ⇒ Object

Raises:

  • (NotImplementedError)


238
239
240
# File 'lib/protobuf/compiler/nodes.rb', line 238

def accept_descriptor_visitor(visitor)
  raise NotImplementedError
end

#accept_message_visitor(visitor) ⇒ Object

Raises:

  • (NotImplementedError)


234
235
236
# File 'lib/protobuf/compiler/nodes.rb', line 234

def accept_message_visitor(visitor)
  raise NotImplementedError
end