class YARP::TrueNode
Represents the use of the literal ‘true` keyword.
true ^^^^
Public Class Methods
new(location)
click to toggle source
def initialize: (location: Location
) -> void
# File lib/yarp/node.rb, line 11185 def initialize(location) @location = location end
Public Instance Methods
accept(visitor)
click to toggle source
def accept: (visitor: Visitor
) -> void
# File lib/yarp/node.rb, line 11190 def accept(visitor) visitor.visit_true_node(self) end
child_nodes()
click to toggle source
def child_nodes
: () -> Array[nil | Node]
# File lib/yarp/node.rb, line 11195 def child_nodes [] end
Also aliased as: deconstruct
comment_targets()
click to toggle source
def comment_targets
: () -> Array[Node | Location]
# File lib/yarp/node.rb, line 11205 def comment_targets [] end
compact_child_nodes()
click to toggle source
def compact_child_nodes
: () -> Array
# File lib/yarp/node.rb, line 11200 def compact_child_nodes [] end
copy(**params)
click to toggle source
def copy: (**params) -> TrueNode
# File lib/yarp/node.rb, line 11210 def copy(**params) TrueNode.new( params.fetch(:location) { location }, ) end
deconstruct_keys(keys)
click to toggle source
inspect(inspector = NodeInspector.new)
click to toggle source
# File lib/yarp/node.rb, line 11224 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector.to_str end