Class: Prism::TrueNode

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

Overview

Represents the use of the literal ‘true` keyword.

true
^^^^

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags) ⇒ TrueNode

Initialize a new TrueNode node.



15706
15707
15708
15709
15710
15711
# File 'lib/prism/node.rb', line 15706

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

Class Method Details

.typeObject

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



15757
15758
15759
# File 'lib/prism/node.rb', line 15757

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



15763
15764
15765
# File 'lib/prism/node.rb', line 15763

def ===(other)
  other.is_a?(TrueNode)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



15714
15715
15716
# File 'lib/prism/node.rb', line 15714

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

#child_nodesObject Also known as: deconstruct

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



15719
15720
15721
# File 'lib/prism/node.rb', line 15719

def child_nodes
  []
end

#comment_targetsObject

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



15729
15730
15731
# File 'lib/prism/node.rb', line 15729

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



15724
15725
15726
# File 'lib/prism/node.rb', line 15724

def compact_child_nodes
  []
end

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

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer) -> TrueNode



15734
15735
15736
# File 'lib/prism/node.rb', line 15734

def copy(node_id: self.node_id, location: self.location, flags: self.flags)
  TrueNode.new(source, node_id, location, flags)
end

#deconstruct_keys(keys) ⇒ Object

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



15742
15743
15744
# File 'lib/prism/node.rb', line 15742

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

#inspectObject

def inspect -> String



15747
15748
15749
# File 'lib/prism/node.rb', line 15747

def inspect
  InspectVisitor.compose(self)
end

#typeObject

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



15752
15753
15754
# File 'lib/prism/node.rb', line 15752

def type
  :true_node
end