class Prism::RequiredKeywordParameterNode
Represents a required keyword parameter to a method, block, or lambda definition.
def a(b: ) ^^ end
Attributes
attr_reader name: Symbol
Public Class Methods
Initialize a new RequiredKeywordParameterNode
node.
# File prism/node.rb, line 13960 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
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 14028 def self.type :required_keyword_parameter_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File prism/node.rb, line 14034 def ===(other) other.is_a?(RequiredKeywordParameterNode) && (flags === other.flags) && (name === other.name) && (name_loc.nil? == other.name_loc.nil?) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 13970 def accept(visitor) visitor.visit_required_keyword_parameter_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 13975 def child_nodes [] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 13985 def comment_targets [name_loc] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 13980 def compact_child_nodes [] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?name: Symbol, ?name_loc: Location
) -> RequiredKeywordParameterNode
# File prism/node.rb, line 13990 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
: (Array keys) -> { node_id: Integer, location: Location
, name: Symbol, name_loc
: Location
}
# File prism/node.rb, line 13998 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name, name_loc: name_loc } end
def inspect -> String
# File prism/node.rb, line 14018 def inspect InspectVisitor.compose(self) end
def repeated_parameter?: () -> bool
# File prism/node.rb, line 14003 def repeated_parameter? flags.anybits?(ParameterFlags::REPEATED_PARAMETER) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 14023 def type :required_keyword_parameter_node end