Class: Protobuf::Node::GroupNode
- Inherits:
-
Base
- Object
- Base
- Protobuf::Node::GroupNode
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
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
238
239
240
|
# File 'lib/protobuf/compiler/nodes.rb', line 238
def accept_descriptor_visitor(visitor)
raise NotImplementedError
end
|
#accept_message_visitor(visitor) ⇒ Object
234
235
236
|
# File 'lib/protobuf/compiler/nodes.rb', line 234
def accept_message_visitor(visitor)
raise NotImplementedError
end
|