Class: Prism::InterpolatedXStringNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::InterpolatedXStringNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents an xstring literal that contains interpolation.
`foo #{bar} baz`
^^^^^^^^^^^^^^^^
Instance Attribute Summary collapse
-
#closing_loc ⇒ Object
readonly
attr_reader closing_loc: Location.
-
#opening_loc ⇒ Object
readonly
attr_reader opening_loc: Location.
-
#parts ⇒ Object
readonly
attr_reader parts: Array.
Instance Method Summary collapse
-
#accept(visitor) ⇒ Object
def accept: (visitor: Visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#closing ⇒ Object
def closing: () -> String.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(**params) ⇒ Object
def copy: (**params) -> InterpolatedXStringNode.
- #deconstruct_keys(keys) ⇒ Object
-
#initialize(opening_loc, parts, closing_loc, location) ⇒ InterpolatedXStringNode
constructor
def initialize: (opening_loc: Location, parts: Array, closing_loc: Location, location: Location) -> void.
- #inspect(inspector = NodeInspector.new) ⇒ Object
-
#opening ⇒ Object
def opening: () -> String.
- #set_newline_flag(newline_marked) ⇒ Object
-
#type ⇒ Object
Sometimes you want to check an instance of a node against a list of classes to see what kind of behavior to perform.
Constructor Details
#initialize(opening_loc, parts, closing_loc, location) ⇒ InterpolatedXStringNode
def initialize: (opening_loc: Location, parts: Array, closing_loc: Location, location: Location) -> void
8311 8312 8313 8314 8315 8316 |
# File 'lib/prism/node.rb', line 8311 def initialize(opening_loc, parts, closing_loc, location) @opening_loc = opening_loc @parts = parts @closing_loc = closing_loc @location = location end |
Instance Attribute Details
#closing_loc ⇒ Object (readonly)
attr_reader closing_loc: Location
8308 8309 8310 |
# File 'lib/prism/node.rb', line 8308 def closing_loc @closing_loc end |
#opening_loc ⇒ Object (readonly)
attr_reader opening_loc: Location
8302 8303 8304 |
# File 'lib/prism/node.rb', line 8302 def opening_loc @opening_loc end |
#parts ⇒ Object (readonly)
attr_reader parts: Array
8305 8306 8307 |
# File 'lib/prism/node.rb', line 8305 def parts @parts end |
Instance Method Details
#accept(visitor) ⇒ Object
def accept: (visitor: Visitor) -> void
8319 8320 8321 |
# File 'lib/prism/node.rb', line 8319 def accept(visitor) visitor.visit_interpolated_x_string_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
8329 8330 8331 |
# File 'lib/prism/node.rb', line 8329 def child_nodes [*parts] end |
#closing ⇒ Object
def closing: () -> String
8367 8368 8369 |
# File 'lib/prism/node.rb', line 8367 def closing closing_loc.slice end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
8339 8340 8341 |
# File 'lib/prism/node.rb', line 8339 def comment_targets [opening_loc, *parts, closing_loc] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
8334 8335 8336 |
# File 'lib/prism/node.rb', line 8334 def compact_child_nodes [*parts] end |
#copy(**params) ⇒ Object
def copy: (**params) -> InterpolatedXStringNode
8344 8345 8346 8347 8348 8349 8350 8351 |
# File 'lib/prism/node.rb', line 8344 def copy(**params) InterpolatedXStringNode.new( params.fetch(:opening_loc) { opening_loc }, params.fetch(:parts) { parts }, params.fetch(:closing_loc) { closing_loc }, params.fetch(:location) { location }, ) end |
#deconstruct_keys(keys) ⇒ Object
8357 8358 8359 |
# File 'lib/prism/node.rb', line 8357 def deconstruct_keys(keys) { opening_loc: opening_loc, parts: parts, closing_loc: closing_loc, location: location } end |
#inspect(inspector = NodeInspector.new) ⇒ Object
8371 8372 8373 8374 8375 8376 8377 |
# File 'lib/prism/node.rb', line 8371 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── opening_loc: #{inspector.location(opening_loc)}\n" inspector << "├── parts: #{inspector.list("#{inspector.prefix}│ ", parts)}" inspector << "└── closing_loc: #{inspector.location(closing_loc)}\n" inspector.to_str end |
#opening ⇒ Object
def opening: () -> String
8362 8363 8364 |
# File 'lib/prism/node.rb', line 8362 def opening opening_loc.slice end |
#set_newline_flag(newline_marked) ⇒ Object
8323 8324 8325 8326 |
# File 'lib/prism/node.rb', line 8323 def set_newline_flag(newline_marked) first = parts.first first.set_newline_flag(newline_marked) if first end |
#type ⇒ Object
Sometimes you want to check an instance of a node against a list of classes to see what kind of behavior to perform. Usually this is done by calling ‘[cls1, cls2].include?(node.class)` or putting the node into a case statement and doing `case node; when cls1; when cls2; end`. Both of these approaches are relatively slow because of the constant lookups, method calls, and/or array allocations.
Instead, you can call #type, which will return to you a symbol that you can use for comparison. This is faster than the other approaches because it uses a single integer comparison, but also because if you’re on CRuby you can take advantage of the fact that case statements with all symbol keys will use a jump table.
def type: () -> Symbol
8393 8394 8395 |
# File 'lib/prism/node.rb', line 8393 def type :interpolated_x_string_node end |