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.



13960
13961
13962
13963
13964
13965
13966
13967
# File 'lib/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

Instance Attribute Details

#nameObject (readonly)

attr_reader name: Symbol



14008
14009
14010
# File 'lib/prism/node.rb', line 14008

def name
  @name
end

Class Method Details

.typeObject

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



14028
14029
14030
# File 'lib/prism/node.rb', line 14028

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.



14034
14035
14036
14037
14038
14039
# File 'lib/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

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



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

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

#child_nodesObject Also known as: deconstruct

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



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

def child_nodes
  []
end

#comment_targetsObject

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



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

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



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

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



13990
13991
13992
# File 'lib/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

#deconstruct_keys(keys) ⇒ Object

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



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

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

#inspectObject

def inspect -> String



14018
14019
14020
# File 'lib/prism/node.rb', line 14018

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



14011
14012
14013
14014
14015
# File 'lib/prism/node.rb', line 14011

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)


14003
14004
14005
# File 'lib/prism/node.rb', line 14003

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

#typeObject

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



14023
14024
14025
# File 'lib/prism/node.rb', line 14023

def type
  :required_keyword_parameter_node
end