class YARP::AssocNode

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/yarp/node.rbs

class YARP::AssocNode < YARP::Node
  def accept: (Analyzer::Visitor visitor) -> untyped
  def child_nodes: () -> untyped
  
  type YARP__AssocNode_initialize_value = YARP::CallNode | YARP::StringNode | YARP::SymbolNode | YARP::LocalVariableReadNode
  
  def initialize: (YARP::SymbolNode key, YARP__AssocNode_initialize_value value, nil operator_loc, YARP::Location location) -> void
end

^^^^^^
{ a => b }
Represents a hash key/value pair.

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 9 samples from 1 application.

def accept: (visitor: Visitor) -> void
def accept(visitor)
  visitor.visit_assoc_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 5 samples from 1 application.

def child_nodes: () -> Array[nil | Node]
def child_nodes
  [key, value]
end

def deconstruct_keys(keys)

def deconstruct_keys: (keys: Array[Symbol]) -> Hash[Symbol, nil | Node | Array[Node] | String | Token | Array[Token] | Location]
def deconstruct_keys(keys)
  { key: key, value: value, operator_loc: operator_loc, location: location }
end

def initialize(key, value, operator_loc, location)

Experimental RBS support (using type sampling data from the type_fusion project).

type YARP__AssocNode_initialize_value = YARP::CallNode | YARP::StringNode | YARP::SymbolNode | YARP::LocalVariableReadNode

def initialize: (YARP::SymbolNode key, YARP__AssocNode_initialize_value value, nil operator_loc, YARP::Location location) -> void

This signature was generated using 8 samples from 1 application.

def initialize: (key: Node, value: Node?, operator_loc: Location?, location: Location) -> void
def initialize(key, value, operator_loc, location)
  @key = key
  @value = value
  @operator_loc = operator_loc
  @location = location
end

def operator

def operator: () -> String?
def operator
  operator_loc&.slice
end