Class: SyntaxTree::Int

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

Int represents an integer number literal.

1

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ Int

Returns a new instance of Int.



5563
5564
5565
5566
5567
# File 'lib/syntax_tree/node.rb', line 5563

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



5561
5562
5563
# File 'lib/syntax_tree/node.rb', line 5561

def comments
  @comments
end

#valueObject (readonly)

String

the value of the integer



5558
5559
5560
# File 'lib/syntax_tree/node.rb', line 5558

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



5569
5570
5571
# File 'lib/syntax_tree/node.rb', line 5569

def accept(visitor)
  visitor.visit_int(self)
end

#child_nodesObject Also known as: deconstruct



5573
5574
5575
# File 'lib/syntax_tree/node.rb', line 5573

def child_nodes
  []
end

#deconstruct_keys(keys) ⇒ Object



5579
5580
5581
# File 'lib/syntax_tree/node.rb', line 5579

def deconstruct_keys(keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
# File 'lib/syntax_tree/node.rb', line 5583

def format(q)
  if !value.start_with?(/\+?0/) && value.length >= 5 && !value.include?("_")
    # If it's a plain integer and it doesn't have any underscores separating
    # the values, then we're going to insert them every 3 characters
    # starting from the right.
    index = (value.length + 2) % 3
    q.text("  #{value}"[index..-1].scan(/.../).join("_").strip)
  else
    q.text(value)
  end
end