Method: Prism::InterpolatedStringNode#initialize
- Defined in:
- lib/prism/node.rb
#initialize(source, node_id, location, flags, opening_loc, parts, closing_loc) ⇒ InterpolatedStringNode
Initialize a new InterpolatedStringNode node.
10822 10823 10824 10825 10826 10827 10828 10829 10830 |
# File 'lib/prism/node.rb', line 10822 def initialize(source, node_id, location, flags, opening_loc, parts, closing_loc) @source = source @node_id = node_id @location = location @flags = flags @opening_loc = opening_loc @parts = parts @closing_loc = closing_loc end |