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.



15435
15436
15437
15438
15439
15440
15441
15442
# File 'lib/prism/node.rb', line 15435

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



15483
15484
15485
# File 'lib/prism/node.rb', line 15483

def name
  @name
end

Class Method Details

.typeObject

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



15509
15510
15511
# File 'lib/prism/node.rb', line 15509

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.



15515
15516
15517
15518
15519
15520
# File 'lib/prism/node.rb', line 15515

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



15445
15446
15447
# File 'lib/prism/node.rb', line 15445

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

#child_nodesObject Also known as: deconstruct

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



15450
15451
15452
# File 'lib/prism/node.rb', line 15450

def child_nodes
  []
end

#comment_targetsObject

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



15460
15461
15462
# File 'lib/prism/node.rb', line 15460

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



15455
15456
15457
# File 'lib/prism/node.rb', line 15455

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



15465
15466
15467
# File 'lib/prism/node.rb', line 15465

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 }



15473
15474
15475
# File 'lib/prism/node.rb', line 15473

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

#inspectObject

def inspect -> String



15499
15500
15501
# File 'lib/prism/node.rb', line 15499

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



15486
15487
15488
15489
15490
# File 'lib/prism/node.rb', line 15486

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)


15478
15479
15480
# File 'lib/prism/node.rb', line 15478

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.



15494
15495
15496
# File 'lib/prism/node.rb', line 15494

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

#typeObject

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



15504
15505
15506
# File 'lib/prism/node.rb', line 15504

def type
  :required_keyword_parameter_node
end