Class: Prism::RequiredKeywordParameterNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents a required keyword parameter to a method, block, or lambda definition.

def a(b: )
      ^^
end

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, name, name_loc) ⇒ RequiredKeywordParameterNode

Initialize a new RequiredKeywordParameterNode node.



13923
13924
13925
13926
13927
13928
13929
13930
# File 'lib/prism/node.rb', line 13923

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

Instance Attribute Details

#nameObject (readonly)

attr_reader name: Symbol



13971
13972
13973
# File 'lib/prism/node.rb', line 13971

def name
  @name
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



13991
13992
13993
# File 'lib/prism/node.rb', line 13991

def self.type
  :required_keyword_parameter_node
end

Instance Method Details

#===(other) ⇒ Object

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.



13997
13998
13999
14000
14001
14002
# File 'lib/prism/node.rb', line 13997

def ===(other)
  other.is_a?(RequiredKeywordParameterNode) &&
    (flags === other.flags) &&
    (name === other.name) &&
    (name_loc.nil? == other.name_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



13933
13934
13935
# File 'lib/prism/node.rb', line 13933

def accept(visitor)
  visitor.visit_required_keyword_parameter_node(self)
end

#child_nodesObject Also known as: deconstruct

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



13938
13939
13940
# File 'lib/prism/node.rb', line 13938

def child_nodes
  []
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



13948
13949
13950
# File 'lib/prism/node.rb', line 13948

def comment_targets
  [name_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



13943
13944
13945
# File 'lib/prism/node.rb', line 13943

def compact_child_nodes
  []
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location) -> RequiredKeywordParameterNode



13953
13954
13955
# File 'lib/prism/node.rb', line 13953

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

#deconstruct_keys(keys) ⇒ Object

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



13961
13962
13963
# File 'lib/prism/node.rb', line 13961

def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name, name_loc: name_loc }
end

#inspectObject

def inspect -> String



13981
13982
13983
# File 'lib/prism/node.rb', line 13981

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



13974
13975
13976
13977
13978
# File 'lib/prism/node.rb', line 13974

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

#repeated_parameter?Boolean

def repeated_parameter?: () -> bool

Returns:

  • (Boolean)


13966
13967
13968
# File 'lib/prism/node.rb', line 13966

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

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



13986
13987
13988
# File 'lib/prism/node.rb', line 13986

def type
  :required_keyword_parameter_node
end