Class: Prism::RequiredKeywordParameterNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::RequiredKeywordParameterNode
- 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
-
#name ⇒ Object
readonly
attr_reader name: Symbol.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#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.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location }.
-
#each_child_node ⇒ Object
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator.
-
#initialize(source, node_id, location, flags, name, name_loc) ⇒ RequiredKeywordParameterNode
constructor
Initialize a new RequiredKeywordParameterNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#name_loc ⇒ Object
attr_reader name_loc: Location.
-
#repeated_parameter? ⇒ Boolean
def repeated_parameter?: () -> bool.
-
#save_name_loc(repository) ⇒ Object
Save the name_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, name, name_loc) ⇒ RequiredKeywordParameterNode
Initialize a new RequiredKeywordParameterNode node.
16579 16580 16581 16582 16583 16584 16585 16586 |
# File 'lib/prism/node.rb', line 16579 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
#name ⇒ Object (readonly)
attr_reader name: Symbol
16633 16634 16635 |
# File 'lib/prism/node.rb', line 16633 def name @name end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See Node::type.
16659 16660 16661 |
# File 'lib/prism/node.rb', line 16659 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.
16665 16666 16667 16668 16669 16670 |
# File 'lib/prism/node.rb', line 16665 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
16589 16590 16591 |
# File 'lib/prism/node.rb', line 16589 def accept(visitor) visitor.visit_required_keyword_parameter_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
16594 16595 16596 |
# File 'lib/prism/node.rb', line 16594 def child_nodes [] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
16610 16611 16612 |
# File 'lib/prism/node.rb', line 16610 def comment_targets [name_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
16605 16606 16607 |
# File 'lib/prism/node.rb', line 16605 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
16615 16616 16617 |
# File 'lib/prism/node.rb', line 16615 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 }
16623 16624 16625 |
# File 'lib/prism/node.rb', line 16623 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name, name_loc: name_loc } end |
#each_child_node ⇒ Object
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator
16599 16600 16601 16602 |
# File 'lib/prism/node.rb', line 16599 def each_child_node return to_enum(:each_child_node) unless block_given? end |
#inspect ⇒ Object
def inspect -> String
16649 16650 16651 |
# File 'lib/prism/node.rb', line 16649 def inspect InspectVisitor.compose(self) end |
#name_loc ⇒ Object
attr_reader name_loc: Location
16636 16637 16638 16639 16640 |
# File 'lib/prism/node.rb', line 16636 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
16628 16629 16630 |
# File 'lib/prism/node.rb', line 16628 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.
16644 16645 16646 |
# File 'lib/prism/node.rb', line 16644 def save_name_loc(repository) repository.enter(node_id, :name_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
16654 16655 16656 |
# File 'lib/prism/node.rb', line 16654 def type :required_keyword_parameter_node end |