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.



15612
15613
15614
15615
15616
15617
15618
15619
# File 'lib/prism/node.rb', line 15612

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



15660
15661
15662
# File 'lib/prism/node.rb', line 15660

def name
  @name
end

Class Method Details

.typeObject

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



15686
15687
15688
# File 'lib/prism/node.rb', line 15686

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.



15692
15693
15694
15695
15696
15697
# File 'lib/prism/node.rb', line 15692

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



15622
15623
15624
# File 'lib/prism/node.rb', line 15622

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



15627
15628
15629
# File 'lib/prism/node.rb', line 15627

def child_nodes
  []
end

#comment_targetsObject

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



15637
15638
15639
# File 'lib/prism/node.rb', line 15637

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



15632
15633
15634
# File 'lib/prism/node.rb', line 15632

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



15642
15643
15644
# File 'lib/prism/node.rb', line 15642

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 }



15650
15651
15652
# File 'lib/prism/node.rb', line 15650

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

#inspectObject

def inspect -> String



15676
15677
15678
# File 'lib/prism/node.rb', line 15676

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



15663
15664
15665
15666
15667
# File 'lib/prism/node.rb', line 15663

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)


15655
15656
15657
# File 'lib/prism/node.rb', line 15655

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

#save_name_loc(repository) ⇒ Object

Save the name_loc location using the given saved source so that it can be retrieved later.



15671
15672
15673
# File 'lib/prism/node.rb', line 15671

def save_name_loc(repository)
  repository.enter(node_id, :name_loc)
end

#typeObject

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



15681
15682
15683
# File 'lib/prism/node.rb', line 15681

def type
  :required_keyword_parameter_node
end