class Prism::ImaginaryNode
Represents an imaginary number literal.
1.0i ^^^^
Attributes
attr_reader numeric: FloatNode | IntegerNode | RationalNode
Public Class Methods
Source
# File lib/prism/node.rb, line 9176 def initialize(source, node_id, location, flags, numeric) @source = source @node_id = node_id @location = location @flags = flags @numeric = numeric end
Initialize a new ImaginaryNode node.
Source
# File lib/prism/node.rb, line 9236 def self.type :imaginary_node end
Return a symbol representation of this node type. See Node::type.
Public Instance Methods
Source
# File lib/prism/node.rb, line 9242 def ===(other) other.is_a?(ImaginaryNode) && (numeric === other.numeric) 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 9185 def accept(visitor) visitor.visit_imaginary_node(self) end
def accept: (Visitor visitor) -> void
Source
# File lib/prism/node.rb, line 9190 def child_nodes [numeric] end
def child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 9207 def comment_targets [numeric] #: Array[Prism::node | Location] end
def comment_targets: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 9202 def compact_child_nodes [numeric] end
def compact_child_nodes: () -> Array
Source
# File lib/prism/node.rb, line 9212 def copy(node_id: self.node_id, location: self.location, flags: self.flags, numeric: self.numeric) ImaginaryNode.new(source, node_id, location, flags, numeric) end
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?numeric: FloatNode | IntegerNode | RationalNode) -> ImaginaryNode
Source
# File lib/prism/node.rb, line 9195 def each_child_node return to_enum(:each_child_node) unless block_given? yield numeric end
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator
Source
# File lib/prism/node.rb, line 9231 def type :imaginary_node end
Return a symbol representation of this node type. See Node#type.
Source
# File lib/prism/node_ext.rb, line 110 def value Complex(0, numeric.value) end
Returns the value of the node as a Ruby Complex.