Class: Prism::InterpolatedXStringNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::InterpolatedXStringNode
- Defined in:
- lib/prism/node.rb,
lib/prism/node_ext.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.
Class Method Summary collapse
-
.type ⇒ Object
Similar to #type, this method returns a symbol that you can use for splitting on the type of the node without having to do a long === chain.
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
def inspect(inspector: NodeInspector) -> String.
-
#opening ⇒ Object
def opening: () -> String.
-
#set_newline_flag(newline_marked) ⇒ Object
:nodoc:.
-
#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
10301 10302 10303 10304 10305 10306 |
# File 'lib/prism/node.rb', line 10301 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
10298 10299 10300 |
# File 'lib/prism/node.rb', line 10298 def closing_loc @closing_loc end |
#opening_loc ⇒ Object (readonly)
attr_reader opening_loc: Location
10292 10293 10294 |
# File 'lib/prism/node.rb', line 10292 def opening_loc @opening_loc end |
#parts ⇒ Object (readonly)
attr_reader parts: Array
10295 10296 10297 |
# File 'lib/prism/node.rb', line 10295 def parts @parts end |
Class Method Details
.type ⇒ Object
Similar to #type, this method returns a symbol that you can use for splitting on the type of the node without having to do a long === chain. Note that like #type, it will still be slower than using == for a single class, but should be faster in a case statement or an array comparison.
def self.type: () -> Symbol
10394 10395 10396 |
# File 'lib/prism/node.rb', line 10394 def self.type :interpolated_x_string_node end |
Instance Method Details
#accept(visitor) ⇒ Object
def accept: (visitor: Visitor) -> void
10309 10310 10311 |
# File 'lib/prism/node.rb', line 10309 def accept(visitor) visitor.visit_interpolated_x_string_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
10319 10320 10321 |
# File 'lib/prism/node.rb', line 10319 def child_nodes [*parts] end |
#closing ⇒ Object
def closing: () -> String
10357 10358 10359 |
# File 'lib/prism/node.rb', line 10357 def closing closing_loc.slice end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
10329 10330 10331 |
# File 'lib/prism/node.rb', line 10329 def comment_targets [opening_loc, *parts, closing_loc] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
10324 10325 10326 |
# File 'lib/prism/node.rb', line 10324 def compact_child_nodes [*parts] end |
#copy(**params) ⇒ Object
def copy: (**params) -> InterpolatedXStringNode
10334 10335 10336 10337 10338 10339 10340 10341 |
# File 'lib/prism/node.rb', line 10334 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
10347 10348 10349 |
# File 'lib/prism/node.rb', line 10347 def deconstruct_keys(keys) { opening_loc: opening_loc, parts: parts, closing_loc: closing_loc, location: location } end |
#inspect(inspector = NodeInspector.new) ⇒ Object
def inspect(inspector: NodeInspector) -> String
10362 10363 10364 10365 10366 10367 10368 |
# File 'lib/prism/node.rb', line 10362 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
10352 10353 10354 |
# File 'lib/prism/node.rb', line 10352 def opening opening_loc.slice end |
#set_newline_flag(newline_marked) ⇒ Object
:nodoc:
10313 10314 10315 10316 |
# File 'lib/prism/node.rb', line 10313 def set_newline_flag(newline_marked) # :nodoc: 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
10384 10385 10386 |
# File 'lib/prism/node.rb', line 10384 def type :interpolated_x_string_node end |