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

#construct_keys, #pretty_print, #to_json

Constructor Details

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

Returns a new instance of Int.



5647
5648
5649
5650
5651
# File 'lib/syntax_tree/node.rb', line 5647

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



5645
5646
5647
# File 'lib/syntax_tree/node.rb', line 5645

def comments
  @comments
end

#valueObject (readonly)

String

the value of the integer



5642
5643
5644
# File 'lib/syntax_tree/node.rb', line 5642

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



5653
5654
5655
# File 'lib/syntax_tree/node.rb', line 5653

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

#child_nodesObject Also known as: deconstruct



5657
5658
5659
# File 'lib/syntax_tree/node.rb', line 5657

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



5663
5664
5665
# File 'lib/syntax_tree/node.rb', line 5663

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

#format(q) ⇒ Object



5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
# File 'lib/syntax_tree/node.rb', line 5667

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..].scan(/.../).join("_").strip)
  else
    q.text(value)
  end
end