Class: SyntaxTree::Int
Overview
Int represents an integer number literal.
1
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the value of the integer.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, location:, comments: []) ⇒ Int
constructor
A new instance of Int.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ Int
Returns a new instance of Int.
5747 5748 5749 5750 5751 |
# File 'lib/syntax_tree/node.rb', line 5747 def initialize(value:, location:, comments: []) @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
5745 5746 5747 |
# File 'lib/syntax_tree/node.rb', line 5745 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the value of the integer
5742 5743 5744 |
# File 'lib/syntax_tree/node.rb', line 5742 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
5753 5754 5755 |
# File 'lib/syntax_tree/node.rb', line 5753 def accept(visitor) visitor.visit_int(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5757 5758 5759 |
# File 'lib/syntax_tree/node.rb', line 5757 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
5763 5764 5765 |
# File 'lib/syntax_tree/node.rb', line 5763 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 |
# File 'lib/syntax_tree/node.rb', line 5767 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 |