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.
-
#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.
-
#save_closing_loc(repository) ⇒ Object
Save the closing_loc location using the given saved source so that it can be retrieved later.
-
#save_opening_loc(repository) ⇒ Object
Save the opening_loc location using the given saved source so that it can be retrieved later.
-
#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.
11224 11225 11226 11227 11228 11229 11230 11231 11232 |
# File 'lib/prism/node.rb', line 11224 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]
11281 11282 11283 |
# File 'lib/prism/node.rb', line 11281 def parts @parts end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
11317 11318 11319 |
# File 'lib/prism/node.rb', line 11317 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.
11323 11324 11325 11326 11327 11328 11329 |
# File 'lib/prism/node.rb', line 11323 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
11235 11236 11237 |
# File 'lib/prism/node.rb', line 11235 def accept(visitor) visitor.visit_interpolated_x_string_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
11240 11241 11242 |
# File 'lib/prism/node.rb', line 11240 def child_nodes [*parts] end |
#closing ⇒ Object
def closing: () -> String
11302 11303 11304 |
# File 'lib/prism/node.rb', line 11302 def closing closing_loc.slice end |
#closing_loc ⇒ Object
attr_reader closing_loc: Location
11284 11285 11286 11287 11288 |
# File 'lib/prism/node.rb', line 11284 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]
11250 11251 11252 |
# File 'lib/prism/node.rb', line 11250 def comment_targets [opening_loc, *parts, closing_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
11245 11246 11247 |
# File 'lib/prism/node.rb', line 11245 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
11255 11256 11257 |
# File 'lib/prism/node.rb', line 11255 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 }
11263 11264 11265 |
# File 'lib/prism/node.rb', line 11263 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
11307 11308 11309 |
# File 'lib/prism/node.rb', line 11307 def inspect InspectVisitor.compose(self) end |
#newline_flag!(lines) ⇒ Object
:nodoc:
150 151 152 153 |
# File 'lib/prism/parse_result/newlines.rb', line 150 def newline_flag!(lines) # :nodoc: first = parts.first first.newline_flag!(lines) if first end |
#opening ⇒ Object
def opening: () -> String
11297 11298 11299 |
# File 'lib/prism/node.rb', line 11297 def opening opening_loc.slice end |
#opening_loc ⇒ Object
attr_reader opening_loc: Location
11268 11269 11270 11271 11272 |
# File 'lib/prism/node.rb', line 11268 def opening_loc location = @opening_loc return location if location.is_a?(Location) @opening_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#save_closing_loc(repository) ⇒ Object
Save the closing_loc location using the given saved source so that it can be retrieved later.
11292 11293 11294 |
# File 'lib/prism/node.rb', line 11292 def save_closing_loc(repository) repository.enter(node_id, :closing_loc) end |
#save_opening_loc(repository) ⇒ Object
Save the opening_loc location using the given saved source so that it can be retrieved later.
11276 11277 11278 |
# File 'lib/prism/node.rb', line 11276 def save_opening_loc(repository) repository.enter(node_id, :opening_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
11312 11313 11314 |
# File 'lib/prism/node.rb', line 11312 def type :interpolated_x_string_node end |