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.



15441
15442
15443
15444
15445
15446
15447
15448
# File 'lib/prism/node.rb', line 15441

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



15489
15490
15491
# File 'lib/prism/node.rb', line 15489

def name
  @name
end

Class Method Details

.typeObject

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



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

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.



15521
15522
15523
15524
15525
15526
# File 'lib/prism/node.rb', line 15521

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



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

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

#child_nodesObject Also known as: deconstruct

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



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

def child_nodes
  []
end

#comment_targetsObject

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



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

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



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

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



15471
15472
15473
# File 'lib/prism/node.rb', line 15471

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 }



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

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

#inspectObject

def inspect -> String



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

def inspect
  InspectVisitor.compose(self)
end

#name_locObject

attr_reader name_loc: Location



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

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)


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

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.



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

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

#typeObject

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



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

def type
  :required_keyword_parameter_node
end