Class: Prism::InterpolatedXStringNode

Inherits:
PrismNode
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, opening_loc, parts, closing_loc) ⇒ InterpolatedXStringNode

Initialize a new InterpolatedXStringNode node.



11877
11878
11879
11880
11881
11882
11883
11884
11885
# File 'lib/prism/node.rb', line 11877

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

#partsObject (readonly)

attr_reader parts: Array[StringNode | EmbeddedStatementsNode | EmbeddedVariableNode]



11941
11942
11943
# File 'lib/prism/node.rb', line 11941

def parts
  @parts
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See Node::type.



11977
11978
11979
# File 'lib/prism/node.rb', line 11977

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.



11983
11984
11985
11986
11987
11988
11989
# File 'lib/prism/node.rb', line 11983

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



11888
11889
11890
# File 'lib/prism/node.rb', line 11888

def accept(visitor)
  visitor.visit_interpolated_x_string_node(self)
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



11893
11894
11895
# File 'lib/prism/node.rb', line 11893

def child_nodes
  [*parts]
end

#closingObject

def closing: () -> String



11962
11963
11964
# File 'lib/prism/node.rb', line 11962

def closing
  closing_loc.slice
end

#closing_locObject

attr_reader closing_loc: Location



11944
11945
11946
11947
11948
# File 'lib/prism/node.rb', line 11944

def closing_loc
  location = @closing_loc
  return location if location.is_a?(Location)
  @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



11910
11911
11912
# File 'lib/prism/node.rb', line 11910

def comment_targets
  [opening_loc, *parts, closing_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



11905
11906
11907
# File 'lib/prism/node.rb', line 11905

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



11915
11916
11917
# File 'lib/prism/node.rb', line 11915

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 }



11923
11924
11925
# File 'lib/prism/node.rb', line 11923

def deconstruct_keys(keys)
  { node_id: node_id, location: location, opening_loc: opening_loc, parts: parts, closing_loc: closing_loc }
end

#each_child_nodeObject

def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator



11898
11899
11900
11901
11902
# File 'lib/prism/node.rb', line 11898

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  parts.each { |node| yield node }
end

#inspectObject

def inspect -> String



11967
11968
11969
# File 'lib/prism/node.rb', line 11967

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

#openingObject

def opening: () -> String



11957
11958
11959
# File 'lib/prism/node.rb', line 11957

def opening
  opening_loc.slice
end

#opening_locObject

attr_reader opening_loc: Location



11928
11929
11930
11931
11932
# File 'lib/prism/node.rb', line 11928

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.



11952
11953
11954
# File 'lib/prism/node.rb', line 11952

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.



11936
11937
11938
# File 'lib/prism/node.rb', line 11936

def save_opening_loc(repository)
  repository.enter(node_id, :opening_loc)
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



11972
11973
11974
# File 'lib/prism/node.rb', line 11972

def type
  :interpolated_x_string_node
end