Class: Hiptest::Nodes::UIDCall
- Defined in:
- lib/hiptest-publisher/nodes.rb
Instance Attribute Summary collapse
-
#chunks ⇒ Object
Returns the value of attribute chunks.
-
#extra_inlined_arguments ⇒ Object
Returns the value of attribute extra_inlined_arguments.
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(uid, arguments = [], annotation = nil) ⇒ UIDCall
constructor
A new instance of UIDCall.
Methods inherited from Node
#==, #each_direct_children, #each_sub_nodes, #flat_string, #kind, #pretty_print_instance_variables, #project, #render
Constructor Details
#initialize(uid, arguments = [], annotation = nil) ⇒ UIDCall
Returns a new instance of UIDCall.
242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'lib/hiptest-publisher/nodes.rb', line 242 def initialize(uid, arguments = [], annotation = nil) super() annotation = nil if annotation == "" @children = { uid: uid, arguments: arguments, all_arguments: arguments, annotation: annotation } @chunks = [] @extra_inlined_arguments = [] end |
Instance Attribute Details
#chunks ⇒ Object
Returns the value of attribute chunks.
239 240 241 |
# File 'lib/hiptest-publisher/nodes.rb', line 239 def chunks @chunks end |
#extra_inlined_arguments ⇒ Object
Returns the value of attribute extra_inlined_arguments.
239 240 241 |
# File 'lib/hiptest-publisher/nodes.rb', line 239 def extra_inlined_arguments @extra_inlined_arguments end |