class YARP::ImaginaryNode
^^^^
1.0i
Represents an imaginary number literal.
def accept(visitor)
def accept(visitor) visitor.visit_imaginary_node(self) end
def child_nodes
def child_nodes [numeric] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { numeric: numeric, location: location } end
def initialize(numeric, location)
def initialize(numeric, location) @numeric = numeric @location = location end