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 initialize: (YARP::Location opening_loc, Array[] elements, YARP::Location closing_loc, YARP::Location location) -> void
end

^^^^^^^^^^
{ a => b }
Represents a hash literal.

def accept(visitor)

def accept: (visitor: Visitor) -> void
def accept(visitor)
  visitor.visit_hash_node(self)
end

def child_nodes

def child_nodes: () -> Array[nil | Node]
def child_nodes
  [*elements]
end

def closing

def closing: () -> String
def closing
  closing_loc.slice
end

def comment_targets

def comment_targets: () -> Array[Node | Location]
def comment_targets
  [opening_loc, *elements, closing_loc]
end

def copy(**params)

def copy: (**params) -> HashNode
def copy(**params)
  HashNode.new(
    params.fetch(:opening_loc) { opening_loc },
    params.fetch(:elements) { elements },
    params.fetch(:closing_loc) { closing_loc },
    params.fetch(:location) { location },
  )
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)
  { 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,  elements, YARP::Location closing_loc, YARP::Location location) -> void

This signature was generated using 1 sample from 1 application.

def initialize: (opening_loc: Location, elements: Array[Node], closing_loc: Location, location: Location) -> void
def initialize(opening_loc, elements, closing_loc, location)
  @opening_loc = opening_loc
  @elements = elements
  @closing_loc = closing_loc
  @location = location
end

def inspect(inspector = NodeInspector.new)

def inspect(inspector = NodeInspector.new)
  inspector << inspector.header(self)
  inspector << "├── opening_loc: #{inspector.location(opening_loc)}\n"
  inspector << "├── elements: #{inspector.list("#{inspector.prefix}│   ", elements)}"
  inspector << "└── closing_loc: #{inspector.location(closing_loc)}\n"
  inspector.to_str
end

def opening

def opening: () -> String
def opening
  opening_loc.slice
end