class YARP::StringNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::StringNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> Array[] def child_nodes: () -> Array[] def initialize: (YARP::Location? opening_loc, YARP::Location content_loc, YARP::Location? closing_loc, String unescaped, YARP::Location location) -> void end
^^^^ ^^^^
“foo #{bar} baz”
^^^
%w[foo]
^^^^^
“foo”
plain string content within an interpolated string.
Represents a string literal, a string contained within a ‘%w` list, or
def accept(visitor)
Experimental RBS support (using type sampling data from the type_fusion
project).
def accept: (Analyzer::Visitor visitor) ->
This signature was generated using 368 samples from 1 application.
def accept(visitor) visitor.visit_string_node(self) end
def child_nodes
Experimental RBS support (using type sampling data from the type_fusion
project).
def child_nodes: () ->
This signature was generated using 350 samples from 1 application.
def child_nodes [] end
def closing
def closing closing_loc&.slice end
def content
def content content_loc.slice end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { opening_loc: opening_loc, content_loc: content_loc, closing_loc: closing_loc, unescaped: unescaped, location: location } end
def initialize(opening_loc, content_loc, closing_loc, unescaped, location)
Experimental RBS support (using type sampling data from the type_fusion
project).
def initialize: (YARP::Location? opening_loc, YARP::Location content_loc, YARP::Location? closing_loc, String unescaped, YARP::Location location) -> void
This signature was generated using 352 samples from 1 application.
def initialize(opening_loc, content_loc, closing_loc, unescaped, location) @opening_loc = opening_loc @content_loc = content_loc @closing_loc = closing_loc @unescaped = unescaped @location = location end
def opening
def opening opening_loc&.slice end