Class: Prism::NoKeywordsParameterNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents the use of ‘**nil` inside method arguments.

def a(**nil)
      ^^^^^
end

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, operator_loc, keyword_loc) ⇒ NoKeywordsParameterNode

Initialize a new NoKeywordsParameterNode node.



12175
12176
12177
12178
12179
12180
12181
12182
# File 'lib/prism/node.rb', line 12175

def initialize(source, node_id, location, flags, operator_loc, keyword_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @operator_loc = operator_loc
  @keyword_loc = keyword_loc
end

Class Method Details

.typeObject

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



12252
12253
12254
# File 'lib/prism/node.rb', line 12252

def self.type
  :no_keywords_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.



12258
12259
12260
12261
12262
# File 'lib/prism/node.rb', line 12258

def ===(other)
  other.is_a?(NoKeywordsParameterNode) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (keyword_loc.nil? == other.keyword_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



12185
12186
12187
# File 'lib/prism/node.rb', line 12185

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

#child_nodesObject Also known as: deconstruct

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



12190
12191
12192
# File 'lib/prism/node.rb', line 12190

def child_nodes
  []
end

#comment_targetsObject

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



12200
12201
12202
# File 'lib/prism/node.rb', line 12200

def comment_targets
  [operator_loc, keyword_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



12195
12196
12197
# File 'lib/prism/node.rb', line 12195

def compact_child_nodes
  []
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, operator_loc: self.operator_loc, keyword_loc: self.keyword_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?operator_loc: Location, ?keyword_loc: Location) -> NoKeywordsParameterNode



12205
12206
12207
# File 'lib/prism/node.rb', line 12205

def copy(node_id: self.node_id, location: self.location, flags: self.flags, operator_loc: self.operator_loc, keyword_loc: self.keyword_loc)
  NoKeywordsParameterNode.new(source, node_id, location, flags, operator_loc, keyword_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, operator_loc: Location, keyword_loc: Location }



12213
12214
12215
# File 'lib/prism/node.rb', line 12213

def deconstruct_keys(keys)
  { node_id: node_id, location: location, operator_loc: operator_loc, keyword_loc: keyword_loc }
end

#inspectObject

def inspect -> String



12242
12243
12244
# File 'lib/prism/node.rb', line 12242

def inspect
  InspectVisitor.compose(self)
end

#keywordObject

def keyword: () -> String



12237
12238
12239
# File 'lib/prism/node.rb', line 12237

def keyword
  keyword_loc.slice
end

#keyword_locObject

attr_reader keyword_loc: Location



12225
12226
12227
12228
12229
# File 'lib/prism/node.rb', line 12225

def keyword_loc
  location = @keyword_loc
  return location if location.is_a?(Location)
  @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#operatorObject

def operator: () -> String



12232
12233
12234
# File 'lib/prism/node.rb', line 12232

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



12218
12219
12220
12221
12222
# File 'lib/prism/node.rb', line 12218

def operator_loc
  location = @operator_loc
  return location if location.is_a?(Location)
  @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#typeObject

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



12247
12248
12249
# File 'lib/prism/node.rb', line 12247

def type
  :no_keywords_parameter_node
end