class Prism::RequiredKeywordParameterNode

end
^^
def a(b: )
Represents a required keyword parameter to a method, block, or lambda definition.

def self.type

Return a symbol representation of this node type. See `Node::type`.
def self.type
  :required_keyword_parameter_node
end

def ===(other)

comparing the value of locations. Locations are checked only for presence.
Implements case-equality for the node. This is effectively == but without
def ===(other)
  other.is_a?(RequiredKeywordParameterNode) &&
    (flags === other.flags) &&
    (name === other.name) &&
    (name_loc.nil? == other.name_loc.nil?)
end

def accept(visitor)

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

def child_nodes

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

def comment_targets

def comment_targets: () -> Array[Node | Location]
def comment_targets
  [name_loc] #: Array[Prism::node | Location]
end

def compact_child_nodes

def compact_child_nodes: () -> Array[Node]
def compact_child_nodes
  []
end

def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc)

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location) -> RequiredKeywordParameterNode
def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc)
  RequiredKeywordParameterNode.new(source, node_id, location, flags, name, name_loc)
end

def deconstruct_keys(keys)

def deconstruct_keys: (Array[Symbol] keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location }
def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name, name_loc: name_loc }
end

def initialize(source, node_id, location, flags, name, name_loc)

Initialize a new RequiredKeywordParameterNode node.
def initialize(source, node_id, location, flags, name, name_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
  @name_loc = name_loc
end

def inspect

def inspect -> String
def inspect
  InspectVisitor.compose(self)
end

def name_loc

attr_reader name_loc: Location
def name_loc
  location = @name_loc
  return location if location.is_a?(Location)
  @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

def repeated_parameter?

def repeated_parameter?: () -> bool
def repeated_parameter?
  flags.anybits?(ParameterFlags::REPEATED_PARAMETER)
end

def save_name_loc(repository)

it can be retrieved later.
Save the name_loc location using the given saved source so that
def save_name_loc(repository)
  repository.enter(node_id, :name_loc)
end

def type

Return a symbol representation of this node type. See `Node#type`.
def type
  :required_keyword_parameter_node
end