class YARP::SymbolNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::SymbolNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> Array[] def child_nodes: () -> Array[] def initialize: (YARP::Location? opening_loc, YARP::Location value_loc, YARP::Location? closing_loc, String unescaped, YARP::Location location) -> void end
^^^
^^^^
:foo
Represents a symbol literal or a symbol contained within a ‘%i` list.
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 337 samples from 1 application.
def accept(visitor) visitor.visit_symbol_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 352 samples from 1 application.
def child_nodes [] end
def closing
def closing closing_loc&.slice end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { opening_loc: opening_loc, value_loc: value_loc, closing_loc: closing_loc, unescaped: unescaped, location: location } end
def initialize(opening_loc, value_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 value_loc, YARP::Location? closing_loc, String unescaped, YARP::Location location) -> void
This signature was generated using 339 samples from 1 application.
def initialize(opening_loc, value_loc, closing_loc, unescaped, location) @opening_loc = opening_loc @value_loc = value_loc @closing_loc = closing_loc @unescaped = unescaped @location = location end
def opening
def opening opening_loc&.slice end
def value
def value value_loc.slice end