class Prism::RationalNode
Represents a rational number literal.
1.0r ^^^^
Attributes
The denominator of the rational number.
1.5r # denominator 2
The numerator of the rational number.
1.5r # numerator 3
Public Class Methods
Initialize a new RationalNode
node.
# File prism/node.rb, line 13617 def initialize(source, node_id, location, flags, numerator, denominator) @source = source @node_id = node_id @location = location @flags = flags @numerator = numerator @denominator = denominator end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 13700 def self.type :rational_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File prism/node.rb, line 13706 def ===(other) other.is_a?(RationalNode) && (flags === other.flags) && (numerator === other.numerator) && (denominator === other.denominator) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 13627 def accept(visitor) visitor.visit_rational_node(self) end
def binary?: () -> bool
# File prism/node.rb, line 13660 def binary? flags.anybits?(IntegerBaseFlags::BINARY) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 13632 def child_nodes [] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 13642 def comment_targets [] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 13637 def compact_child_nodes [] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?numerator: Integer, ?denominator: Integer) -> RationalNode
# File prism/node.rb, line 13647 def copy(node_id: self.node_id, location: self.location, flags: self.flags, numerator: self.numerator, denominator: self.denominator) RationalNode.new(source, node_id, location, flags, numerator, denominator) end
def decimal?: () -> bool
# File prism/node.rb, line 13665 def decimal? flags.anybits?(IntegerBaseFlags::DECIMAL) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, numerator: Integer, denominator: Integer }
# File prism/node.rb, line 13655 def deconstruct_keys(keys) { node_id: node_id, location: location, numerator: numerator, denominator: denominator } end
def hexadecimal?: () -> bool
# File prism/node.rb, line 13675 def hexadecimal? flags.anybits?(IntegerBaseFlags::HEXADECIMAL) end
def inspect -> String
# File prism/node.rb, line 13690 def inspect InspectVisitor.compose(self) end
Returns the value of the node as an IntegerNode
or a FloatNode
. This method is deprecated in favor of value
or numerator
/#denominator.
# File prism/node_ext.rb, line 120 def numeric deprecated("value", "numerator", "denominator") if denominator == 1 IntegerNode.new(source, -1, location.chop, flags, numerator) else FloatNode.new(source, -1, location.chop, 0, numerator.to_f / denominator) end end
def octal?: () -> bool
# File prism/node.rb, line 13670 def octal? flags.anybits?(IntegerBaseFlags::OCTAL) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 13695 def type :rational_node end
Returns the value of the node as a Ruby Rational.
# File prism/node_ext.rb, line 114 def value Rational(numerator, denominator) end