123456789_123456789_123456789_123456789_123456789_

Class: Prism::XStringNode

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Node
Instance Chain:
Inherits: Prism::Node
Defined in: lib/prism/node_ext.rb

Instance Attribute Summary

HeredocQuery - Included

#heredoc?

Returns true if this node was represented as a heredoc in the source code.

Node - Inherited

Instance Method Summary

  • #to_interpolated

    Occasionally it’s helpful to treat a string as if it were interpolated so that there’s a consistent interface for working with strings.

Node - Inherited

Instance Method Details

#to_interpolated

Occasionally it’s helpful to treat a string as if it were interpolated so that there’s a consistent interface for working with strings.

[ GitHub ]

  
# File 'lib/prism/node_ext.rb', line 90

def to_interpolated
  InterpolatedXStringNode.new(
    source,
    -1,
    location,
    flags,
    opening_loc,
    [StringNode.new(source, node_id, content_loc, 0, nil, content_loc, nil, unescaped)],
    closing_loc
  )
end