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
Constructor Details
#initialize(value:, location:, comments: []) ⇒ Int
Returns a new instance of Int.
5040 5041 5042 5043 5044 |
# File 'lib/syntax_tree/node.rb', line 5040 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
5038 5039 5040 |
# File 'lib/syntax_tree/node.rb', line 5038 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the value of the integer
5035 5036 5037 |
# File 'lib/syntax_tree/node.rb', line 5035 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
5046 5047 5048 |
# File 'lib/syntax_tree/node.rb', line 5046 def accept(visitor) visitor.visit_int(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5050 5051 5052 |
# File 'lib/syntax_tree/node.rb', line 5050 def child_nodes [] end |
#deconstruct_keys(keys) ⇒ Object
5056 5057 5058 |
# File 'lib/syntax_tree/node.rb', line 5056 def deconstruct_keys(keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 |
# File 'lib/syntax_tree/node.rb', line 5060 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 |