class YARP::HashNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::HashNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> untyped def child_nodes: () -> untyped def initialize: (YARP::Location opening_loc, (Array[YARP::AssocNode] | Array[]) elements, YARP::Location closing_loc, YARP::Location location) -> void end
^^^^^^^^^^
{ a => b }
Represents a hash literal.
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 5 samples from 1 application.
def accept(visitor) visitor.visit_hash_node(self) end
def child_nodes
Experimental RBS support (using type sampling data from the type_fusion
project).
def child_nodes: () -> untyped
This signature was generated using 1 sample from 1 application.
def child_nodes [*elements] end
def closing
def closing closing_loc.slice end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { opening_loc: opening_loc, elements: elements, closing_loc: closing_loc, location: location } end
def initialize(opening_loc, elements, closing_loc, location)
Experimental RBS support (using type sampling data from the type_fusion
project).
def initialize: (YARP::Location opening_loc, (YARP::AssocNode | YARP::AssocNode | YARP::AssocNode | YARP::AssocNode | YARP::AssocNode | YARP::AssocNode | | YARP::AssocNode) elements, YARP::Location closing_loc, YARP::Location location) -> void
This signature was generated using 8 samples from 1 application.
def initialize(opening_loc, elements, closing_loc, location) @opening_loc = opening_loc @elements = elements @closing_loc = closing_loc @location = location end
def opening
def opening opening_loc.slice end