Class: Prism::InterpolatedXStringNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::InterpolatedXStringNode
- Defined in:
- lib/prism/node.rb,
lib/prism/node_ext.rb,
lib/prism/parse_result/newlines.rb,
ext/prism/api_node.c
Overview
Represents an xstring literal that contains interpolation.
`foo #{bar} baz`
^^^^^^^^^^^^^^^^
Instance Attribute Summary collapse
-
#parts ⇒ Object
readonly
attr_reader parts: Array[StringNode | EmbeddedStatementsNode | EmbeddedVariableNode].
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#closing ⇒ Object
def closing: () -> String.
-
#closing_loc ⇒ Object
attr_reader closing_loc: Location.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(node_id: self.node_id, location: self.location, flags: self.flags, opening_loc: self.opening_loc, parts: self.parts, closing_loc: self.closing_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?opening_loc: Location, ?parts: Array[StringNode | EmbeddedStatementsNode | EmbeddedVariableNode], ?closing_loc: Location) -> InterpolatedXStringNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, opening_loc: Location, parts: Array[StringNode | EmbeddedStatementsNode | EmbeddedVariableNode], closing_loc: Location }.
-
#initialize(source, node_id, location, flags, opening_loc, parts, closing_loc) ⇒ InterpolatedXStringNode
constructor
Initialize a new InterpolatedXStringNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#newline_flag!(lines) ⇒ Object
:nodoc:.
-
#opening ⇒ Object
def opening: () -> String.
-
#opening_loc ⇒ Object
attr_reader opening_loc: Location.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, opening_loc, parts, closing_loc) ⇒ InterpolatedXStringNode
Initialize a new InterpolatedXStringNode node.
9910 9911 9912 9913 9914 9915 9916 9917 9918 |
# File 'lib/prism/node.rb', line 9910 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 |
Instance Attribute Details
#parts ⇒ Object (readonly)
attr_reader parts: Array[StringNode | EmbeddedStatementsNode | EmbeddedVariableNode]
9961 9962 9963 |
# File 'lib/prism/node.rb', line 9961 def parts @parts end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
9991 9992 9993 |
# File 'lib/prism/node.rb', line 9991 def self.type :interpolated_x_string_node end |
Instance Method Details
#===(other) ⇒ Object
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
9997 9998 9999 10000 10001 10002 10003 |
# File 'lib/prism/node.rb', line 9997 def ===(other) other.is_a?(InterpolatedXStringNode) && (opening_loc.nil? == other.opening_loc.nil?) && (parts.length == other.parts.length) && parts.zip(other.parts).all? { |left, right| left === right } && (closing_loc.nil? == other.closing_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
9921 9922 9923 |
# File 'lib/prism/node.rb', line 9921 def accept(visitor) visitor.visit_interpolated_x_string_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
9926 9927 9928 |
# File 'lib/prism/node.rb', line 9926 def child_nodes [*parts] end |
#closing ⇒ Object
def closing: () -> String
9976 9977 9978 |
# File 'lib/prism/node.rb', line 9976 def closing closing_loc.slice end |
#closing_loc ⇒ Object
attr_reader closing_loc: Location
9964 9965 9966 9967 9968 |
# File 'lib/prism/node.rb', line 9964 def closing_loc location = @closing_loc return location if location.is_a?(Location) @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
9936 9937 9938 |
# File 'lib/prism/node.rb', line 9936 def comment_targets [opening_loc, *parts, closing_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
9931 9932 9933 |
# File 'lib/prism/node.rb', line 9931 def compact_child_nodes [*parts] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, opening_loc: self.opening_loc, parts: self.parts, closing_loc: self.closing_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?opening_loc: Location, ?parts: Array[StringNode | EmbeddedStatementsNode | EmbeddedVariableNode], ?closing_loc: Location) -> InterpolatedXStringNode
9941 9942 9943 |
# File 'lib/prism/node.rb', line 9941 def copy(node_id: self.node_id, location: self.location, flags: self.flags, opening_loc: self.opening_loc, parts: self.parts, closing_loc: self.closing_loc) InterpolatedXStringNode.new(source, node_id, location, flags, opening_loc, parts, closing_loc) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, opening_loc: Location, parts: Array[StringNode | EmbeddedStatementsNode | EmbeddedVariableNode], closing_loc: Location }
9949 9950 9951 |
# File 'lib/prism/node.rb', line 9949 def deconstruct_keys(keys) { node_id: node_id, location: location, opening_loc: opening_loc, parts: parts, closing_loc: closing_loc } end |
#inspect ⇒ Object
def inspect -> String
9981 9982 9983 |
# File 'lib/prism/node.rb', line 9981 def inspect InspectVisitor.compose(self) end |
#newline_flag!(lines) ⇒ Object
:nodoc:
149 150 151 152 |
# File 'lib/prism/parse_result/newlines.rb', line 149 def newline_flag!(lines) # :nodoc: first = parts.first first.newline_flag!(lines) if first end |
#opening ⇒ Object
def opening: () -> String
9971 9972 9973 |
# File 'lib/prism/node.rb', line 9971 def opening opening_loc.slice end |
#opening_loc ⇒ Object
attr_reader opening_loc: Location
9954 9955 9956 9957 9958 |
# File 'lib/prism/node.rb', line 9954 def opening_loc location = @opening_loc return location if location.is_a?(Location) @opening_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
9986 9987 9988 |
# File 'lib/prism/node.rb', line 9986 def type :interpolated_x_string_node end |