Method: Prism::CallNode#initialize
- Defined in:
- lib/prism/node.rb
#initialize(source, node_id, location, flags, receiver, call_operator_loc, name, message_loc, opening_loc, arguments, closing_loc, block) ⇒ CallNode
Initialize a new CallNode node.
2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 |
# File 'lib/prism/node.rb', line 2596 def initialize(source, node_id, location, flags, receiver, call_operator_loc, name, , opening_loc, arguments, closing_loc, block) @source = source @node_id = node_id @location = location @flags = flags @receiver = receiver @call_operator_loc = call_operator_loc @name = name @message_loc = @opening_loc = opening_loc @arguments = arguments @closing_loc = closing_loc @block = block end |