Method: Prism::ConstantPathAndWriteNode#initialize

Defined in:
lib/prism/node.rb

#initialize(source, node_id, location, flags, target, operator_loc, value) ⇒ ConstantPathAndWriteNode

Initialize a new ConstantPathAndWriteNode node.



4947
4948
4949
4950
4951
4952
4953
4954
4955
# File 'lib/prism/node.rb', line 4947

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