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
Source
# File lib/prism/node.rb, line 14816 def initialize(source, node_id, location, flags, numerator, denominator) @source = source @node_id = node_id @location = location @flags = flags @numerator = numerator @denominator = denominator end
Initialize a new RationalNode
node.
Source
# File lib/prism/node.rb, line 14899 def self.type :rational_node end
Return a symbol representation of this node type. See ‘Node::type`.
Public Instance Methods
Source
# File lib/prism/node.rb, line 14905 def ===(other) other.is_a?(RationalNode) && (flags === other.flags) && (numerator === other.numerator) && (denominator === other.denominator) end
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
Source
# File lib/prism/node.rb, line 14826 def accept(visitor) visitor.visit_rational_node(self) end
def accept: (Visitor
visitor) -> void
Source
# File lib/prism/node.rb, line 14859 def binary? flags.anybits?(IntegerBaseFlags::BINARY) end
def binary?: () -> bool
Source
# File lib/prism/node.rb, line 14831 def child_nodes [] end
def child_nodes
: () -> Array[nil | Node]
Source
# File lib/prism/node.rb, line 14841 def comment_targets [] #: Array[Prism::node | Location] end
def comment_targets
: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 14836 def compact_child_nodes [] end
def compact_child_nodes
: () -> Array
Source
# File lib/prism/node.rb, line 14846 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 copy: (?node_id: Integer
, ?location: Location
, ?flags: Integer
, ?numerator: Integer
, ?denominator: Integer
) -> RationalNode
Source
# File lib/prism/node.rb, line 14864 def decimal? flags.anybits?(IntegerBaseFlags::DECIMAL) end
def decimal?: () -> bool
Source
Source
# File lib/prism/node.rb, line 14874 def hexadecimal? flags.anybits?(IntegerBaseFlags::HEXADECIMAL) end
def hexadecimal?: () -> bool
Source
# File lib/prism/node.rb, line 14889 def inspect InspectVisitor.compose(self) end
def inspect -> String
Source
# File lib/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
Returns the value of the node as an IntegerNode
or a FloatNode
. This method is deprecated in favor of value
or numerator
/#denominator.
Source
# File lib/prism/node.rb, line 14869 def octal? flags.anybits?(IntegerBaseFlags::OCTAL) end
def octal?: () -> bool
Source
# File lib/prism/node.rb, line 14894 def type :rational_node end
Return a symbol representation of this node type. See ‘Node#type`.