class YARP::NoKeywordsParameterNode
end
^^^^^
def a(**nil)
Represents the use of ‘**nil` inside method arguments.
def accept(visitor)
def accept(visitor) visitor.visit_no_keywords_parameter_node(self) end
def child_nodes
def child_nodes [] end
def deconstruct_keys(keys)
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, keyword_loc, location) @operator_loc = operator_loc @keyword_loc = keyword_loc @location = location end
def keyword
def keyword keyword_loc.slice end
def operator
def operator operator_loc.slice end