class YARP::FloatNode
Represents a floating point number literal.
1.0 ^^^
Public Class Methods
new(location)
click to toggle source
def initialize: (location: Location
) -> void
# File yarp/node.rb, line 4274 def initialize(location) @location = location end
Public Instance Methods
accept(visitor)
click to toggle source
def accept: (visitor: Visitor
) -> void
# File yarp/node.rb, line 4279 def accept(visitor) visitor.visit_float_node(self) end
child_nodes()
click to toggle source
def child_nodes
: () -> Array[nil | Node]
# File yarp/node.rb, line 4284 def child_nodes [] end
Also aliased as: deconstruct
comment_targets()
click to toggle source
def comment_targets
: () -> Array[Node | Location]
# File yarp/node.rb, line 4289 def comment_targets [] end
copy(**params)
click to toggle source
def copy: (**params) -> FloatNode
# File yarp/node.rb, line 4294 def copy(**params) FloatNode.new( params.fetch(:location) { location }, ) end
deconstruct_keys(keys)
click to toggle source
inspect(inspector = NodeInspector.new)
click to toggle source
# File yarp/node.rb, line 4308 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector.to_str end
value()
click to toggle source
Returns the value of the node as a Ruby Float.
# File yarp.rb, line 573 def value Float(slice) end