Method: Prism::ConstantPathOperatorWriteNode#initialize

Defined in:
lib/prism/node.rb

#initialize(source, node_id, location, flags, target, binary_operator_loc, value, binary_operator) ⇒ ConstantPathOperatorWriteNode

Initialize a new ConstantPathOperatorWriteNode node.



5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
# File 'lib/prism/node.rb', line 5181

def initialize(source, node_id, location, flags, target, binary_operator_loc, value, binary_operator)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @target = target
  @binary_operator_loc = binary_operator_loc
  @value = value
  @binary_operator = binary_operator
end