class Prism::IntegerNode
Represents an integer number literal.
1 ^
Attributes
The value of the integer literal as a number.
Public Class Methods
Initialize a new IntegerNode
node.
# File prism/node.rb, line 9261 def initialize(source, node_id, location, flags, value) @source = source @node_id = node_id @location = location @flags = flags @value = value end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 9336 def self.type :integer_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 9342 def ===(other) other.is_a?(IntegerNode) && (flags === other.flags) && (value === other.value) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 9270 def accept(visitor) visitor.visit_integer_node(self) end
def binary?: () -> bool
# File prism/node.rb, line 9303 def binary? flags.anybits?(IntegerBaseFlags::BINARY) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 9275 def child_nodes [] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 9285 def comment_targets [] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 9280 def compact_child_nodes [] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?value: Integer) -> IntegerNode
# File prism/node.rb, line 9290 def copy(node_id: self.node_id, location: self.location, flags: self.flags, value: self.value) IntegerNode.new(source, node_id, location, flags, value) end
def decimal?: () -> bool
# File prism/node.rb, line 9308 def decimal? flags.anybits?(IntegerBaseFlags::DECIMAL) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, value: Integer }
# File prism/node.rb, line 9298 def deconstruct_keys(keys) { node_id: node_id, location: location, value: value } end
def hexadecimal?: () -> bool
# File prism/node.rb, line 9318 def hexadecimal? flags.anybits?(IntegerBaseFlags::HEXADECIMAL) end
def inspect -> String
# File prism/node.rb, line 9326 def inspect InspectVisitor.compose(self) end
def octal?: () -> bool
# File prism/node.rb, line 9313 def octal? flags.anybits?(IntegerBaseFlags::OCTAL) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 9331 def type :integer_node end