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.



228
229
230
# File 'lib/protobuf/compiler/nodes.rb', line 228

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)


236
237
238
# File 'lib/protobuf/compiler/nodes.rb', line 236

def accept_descriptor_visitor(visitor)
  raise NotImplementedError
end

#accept_message_visitor(visitor) ⇒ Object

Raises:

  • (NotImplementedError)


232
233
234
# File 'lib/protobuf/compiler/nodes.rb', line 232

def accept_message_visitor(visitor)
  raise NotImplementedError
end