class YARP::NoKeywordsParameterNode

end
^^^^^
def a(**nil)
Represents the use of ‘**nil` inside method arguments.

def accept(visitor)

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

def child_nodes

def child_nodes: () -> Array[nil | Node]
def child_nodes
  []
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)
  { operator_loc: operator_loc, keyword_loc: keyword_loc, location: location }
end

def initialize(operator_loc, keyword_loc, location)

def initialize: (operator_loc: Location, keyword_loc: Location, location: Location) -> void
def initialize(operator_loc, keyword_loc, location)
  @operator_loc = operator_loc
  @keyword_loc = keyword_loc
  @location = location
end

def keyword

def keyword: () -> String
def keyword
  keyword_loc.slice
end

def operator

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