Class: Prism::NextNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::NextNode
- 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
-
#arguments ⇒ Object
readonly
attr_reader arguments: ArgumentsNode?.
-
#keyword_loc ⇒ Object
readonly
attr_reader keyword_loc: Location.
Instance Method Summary collapse
-
#accept(visitor) ⇒ Object
def accept: (visitor: Visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array[nil | Node].
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(**params) ⇒ Object
def copy: (**params) -> NextNode.
- #deconstruct_keys(keys) ⇒ Object
-
#initialize(arguments, keyword_loc, location) ⇒ NextNode
constructor
def initialize: (arguments: ArgumentsNode?, keyword_loc: Location, location: Location) -> void.
- #inspect(inspector = NodeInspector.new) ⇒ Object
-
#keyword ⇒ Object
def keyword: () -> String.
-
#type ⇒ Object
Sometimes you want to check an instance of a node against a list of classes to see what kind of behavior to perform.
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
#arguments ⇒ Object (readonly)
attr_reader arguments: ArgumentsNode?
10220 10221 10222 |
# File 'lib/prism/node.rb', line 10220 def arguments @arguments end |
#keyword_loc ⇒ Object (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_nodes ⇒ Object 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_targets ⇒ Object
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_nodes ⇒ Object
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
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 |
#keyword ⇒ Object
def keyword: () -> String
10272 10273 10274 |
# File 'lib/prism/node.rb', line 10272 def keyword keyword_loc.slice end |
#type ⇒ Object
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 |