Class: MarshalParser::Parser::ObjectExtendedNode
- Defined in:
- lib/marshal-parser/parser.rb
Instance Method Summary collapse
- #child_entities ⇒ Object
-
#initialize(prefix, module_name_node, object_node) ⇒ ObjectExtendedNode
constructor
A new instance of ObjectExtendedNode.
Methods inherited from Node
#always_leaf?, #attributes, #children, #decoded_value, #literal_token, #tokens
Methods included from Assertable
Constructor Details
#initialize(prefix, module_name_node, object_node) ⇒ ObjectExtendedNode
Returns a new instance of ObjectExtendedNode.
867 868 869 870 871 872 |
# File 'lib/marshal-parser/parser.rb', line 867 def initialize(prefix, module_name_node, object_node) super() @prefix = prefix @module_name_node = module_name_node @object_node = object_node end |
Instance Method Details
#child_entities ⇒ Object
874 875 876 |
# File 'lib/marshal-parser/parser.rb', line 874 def child_entities [@prefix, @module_name_node, @object_node] end |