class YARP::InterpolatedSymbolNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::InterpolatedSymbolNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> untyped def initialize: (YARP::Location opening_loc, Array[YARP::EmbeddedStatementsNode] parts, YARP::Location closing_loc, YARP::Location location) -> void end
^^^^^^^^^^^^^^^^^
:“foo #{bar} baz”
Represents a symbol literal that contains interpolation.
def accept(visitor)
Experimental RBS support (using type sampling data from the type_fusion
project).
def accept: (Analyzer::Visitor visitor) -> untyped
This signature was generated using 3 samples from 1 application.
def accept(visitor) visitor.visit_interpolated_symbol_node(self) end
def child_nodes
def child_nodes [*parts] end
def closing
def closing closing_loc&.slice end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { opening_loc: opening_loc, parts: parts, closing_loc: closing_loc, location: location } end
def initialize(opening_loc, parts, closing_loc, location)
Experimental RBS support (using type sampling data from the type_fusion
project).
def initialize: (YARP::Location opening_loc, YARP::StringNode parts, YARP::Location closing_loc, YARP::Location location) -> void
This signature was generated using 1 sample from 1 application.
def initialize(opening_loc, parts, closing_loc, location) @opening_loc = opening_loc @parts = parts @closing_loc = closing_loc @location = location end
def opening
def opening opening_loc&.slice end
def set_newline_flag(newline_marked)
def set_newline_flag(newline_marked) first = parts.first first.set_newline_flag(newline_marked) if first end