Class: Prism::NextNode

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

Overview

Represents the use of the ‘next` keyword.

next 1
^^^^^^

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arguments, keyword_loc, location) ⇒ NextNode

def initialize: (arguments: ArgumentsNode?, keyword_loc: Location, location: Location) -> void



10226
10227
10228
10229
10230
# File 'lib/prism/node.rb', line 10226

def initialize(arguments, keyword_loc, location)
  @arguments = arguments
  @keyword_loc = keyword_loc
  @location = location
end

Instance Attribute Details

#argumentsObject (readonly)

attr_reader arguments: ArgumentsNode?



10220
10221
10222
# File 'lib/prism/node.rb', line 10220

def arguments
  @arguments
end

#keyword_locObject (readonly)

attr_reader keyword_loc: Location



10223
10224
10225
# File 'lib/prism/node.rb', line 10223

def keyword_loc
  @keyword_loc
end

Instance Method Details

#accept(visitor) ⇒ Object

def accept: (visitor: Visitor) -> void



10233
10234
10235
# File 'lib/prism/node.rb', line 10233

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

#child_nodesObject Also known as: deconstruct

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



10238
10239
10240
# File 'lib/prism/node.rb', line 10238

def child_nodes
  [arguments]
end

#comment_targetsObject

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



10250
10251
10252
# File 'lib/prism/node.rb', line 10250

def comment_targets
  [*arguments, keyword_loc]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



10243
10244
10245
10246
10247
# File 'lib/prism/node.rb', line 10243

def compact_child_nodes
  compact = []
  compact << arguments if arguments
  compact
end

#copy(**params) ⇒ Object

def copy: (**params) -> NextNode



10255
10256
10257
10258
10259
10260
10261
# File 'lib/prism/node.rb', line 10255

def copy(**params)
  NextNode.new(
    params.fetch(:arguments) { arguments },
    params.fetch(:keyword_loc) { keyword_loc },
    params.fetch(:location) { location },
  )
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (keys: Array) -> Hash[Symbol, nil | Node | Array | String | Token | Array | Location]



10267
10268
10269
# File 'lib/prism/node.rb', line 10267

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

#inspect(inspector = NodeInspector.new) ⇒ Object



10276
10277
10278
10279
10280
10281
10282
10283
10284
10285
10286
# File 'lib/prism/node.rb', line 10276

def inspect(inspector = NodeInspector.new)
  inspector << inspector.header(self)
  if (arguments = self.arguments).nil?
    inspector << "├── arguments: ∅\n"
  else
    inspector << "├── arguments:\n"
    inspector << arguments.inspect(inspector.child_inspector("│   ")).delete_prefix(inspector.prefix)
  end
  inspector << "└── keyword_loc: #{inspector.location(keyword_loc)}\n"
  inspector.to_str
end

#keywordObject

def keyword: () -> String



10272
10273
10274
# File 'lib/prism/node.rb', line 10272

def keyword
  keyword_loc.slice
end

#typeObject

Sometimes you want to check an instance of a node against a list of classes to see what kind of behavior to perform. Usually this is done by calling ‘[cls1, cls2].include?(node.class)` or putting the node into a case statement and doing `case node; when cls1; when cls2; end`. Both of these approaches are relatively slow because of the constant lookups, method calls, and/or array allocations.

Instead, you can call #type, which will return to you a symbol that you can use for comparison. This is faster than the other approaches because it uses a single integer comparison, but also because if you’re on CRuby you can take advantage of the fact that case statements with all symbol keys will use a jump table.

def type: () -> Symbol



10302
10303
10304
# File 'lib/prism/node.rb', line 10302

def type
  :next_node
end