Class: Prism::DefinedNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::DefinedNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the use of the ‘defined?` keyword.
defined?(a)
^^^^^^^^^^^
Instance Attribute Summary collapse
-
#keyword_loc ⇒ Object
readonly
attr_reader keyword_loc: Location.
-
#lparen_loc ⇒ Object
readonly
attr_reader lparen_loc: Location?.
-
#rparen_loc ⇒ Object
readonly
attr_reader rparen_loc: Location?.
-
#value ⇒ Object
readonly
attr_reader value: Node.
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) -> DefinedNode.
- #deconstruct_keys(keys) ⇒ Object
-
#initialize(lparen_loc, value, rparen_loc, keyword_loc, location) ⇒ DefinedNode
constructor
def initialize: (lparen_loc: Location?, value: Node, rparen_loc: Location?, keyword_loc: Location, location: Location) -> void.
- #inspect(inspector = NodeInspector.new) ⇒ Object
-
#keyword ⇒ Object
def keyword: () -> String.
-
#lparen ⇒ Object
def lparen: () -> String?.
-
#rparen ⇒ Object
def rparen: () -> 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(lparen_loc, value, rparen_loc, keyword_loc, location) ⇒ DefinedNode
def initialize: (lparen_loc: Location?, value: Node, rparen_loc: Location?, keyword_loc: Location, location: Location) -> void
4733 4734 4735 4736 4737 4738 4739 |
# File 'lib/prism/node.rb', line 4733 def initialize(lparen_loc, value, rparen_loc, keyword_loc, location) @lparen_loc = lparen_loc @value = value @rparen_loc = rparen_loc @keyword_loc = keyword_loc @location = location end |
Instance Attribute Details
#keyword_loc ⇒ Object (readonly)
attr_reader keyword_loc: Location
4730 4731 4732 |
# File 'lib/prism/node.rb', line 4730 def keyword_loc @keyword_loc end |
#lparen_loc ⇒ Object (readonly)
attr_reader lparen_loc: Location?
4721 4722 4723 |
# File 'lib/prism/node.rb', line 4721 def lparen_loc @lparen_loc end |
#rparen_loc ⇒ Object (readonly)
attr_reader rparen_loc: Location?
4727 4728 4729 |
# File 'lib/prism/node.rb', line 4727 def rparen_loc @rparen_loc end |
#value ⇒ Object (readonly)
attr_reader value: Node
4724 4725 4726 |
# File 'lib/prism/node.rb', line 4724 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
def accept: (visitor: Visitor) -> void
4742 4743 4744 |
# File 'lib/prism/node.rb', line 4742 def accept(visitor) visitor.visit_defined_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
4747 4748 4749 |
# File 'lib/prism/node.rb', line 4747 def child_nodes [value] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
4757 4758 4759 |
# File 'lib/prism/node.rb', line 4757 def comment_targets [*lparen_loc, value, *rparen_loc, keyword_loc] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
4752 4753 4754 |
# File 'lib/prism/node.rb', line 4752 def compact_child_nodes [value] end |
#copy(**params) ⇒ Object
def copy: (**params) -> DefinedNode
4762 4763 4764 4765 4766 4767 4768 4769 4770 |
# File 'lib/prism/node.rb', line 4762 def copy(**params) DefinedNode.new( params.fetch(:lparen_loc) { lparen_loc }, params.fetch(:value) { value }, params.fetch(:rparen_loc) { rparen_loc }, params.fetch(:keyword_loc) { keyword_loc }, params.fetch(:location) { location }, ) end |
#deconstruct_keys(keys) ⇒ Object
4776 4777 4778 |
# File 'lib/prism/node.rb', line 4776 def deconstruct_keys(keys) { lparen_loc: lparen_loc, value: value, rparen_loc: rparen_loc, keyword_loc: keyword_loc, location: location } end |
#inspect(inspector = NodeInspector.new) ⇒ Object
4795 4796 4797 4798 4799 4800 4801 4802 4803 |
# File 'lib/prism/node.rb', line 4795 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "├── lparen_loc: #{inspector.location(lparen_loc)}\n" inspector << "├── value:\n" inspector << inspector.child_node(value, "│ ") inspector << "├── rparen_loc: #{inspector.location(rparen_loc)}\n" inspector << "└── keyword_loc: #{inspector.location(keyword_loc)}\n" inspector.to_str end |
#keyword ⇒ Object
def keyword: () -> String
4791 4792 4793 |
# File 'lib/prism/node.rb', line 4791 def keyword keyword_loc.slice end |
#lparen ⇒ Object
def lparen: () -> String?
4781 4782 4783 |
# File 'lib/prism/node.rb', line 4781 def lparen lparen_loc&.slice end |
#rparen ⇒ Object
def rparen: () -> String?
4786 4787 4788 |
# File 'lib/prism/node.rb', line 4786 def rparen rparen_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
4819 4820 4821 |
# File 'lib/prism/node.rb', line 4819 def type :defined_node end |