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.
5912 5913 5914 5915 5916 |
# File 'lib/syntax_tree/node.rb', line 5912 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
5910 5911 5912 |
# File 'lib/syntax_tree/node.rb', line 5910 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the value of the integer
5907 5908 5909 |
# File 'lib/syntax_tree/node.rb', line 5907 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
5918 5919 5920 |
# File 'lib/syntax_tree/node.rb', line 5918 def accept(visitor) visitor.visit_int(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5922 5923 5924 |
# File 'lib/syntax_tree/node.rb', line 5922 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
5928 5929 5930 |
# File 'lib/syntax_tree/node.rb', line 5928 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 |
# File 'lib/syntax_tree/node.rb', line 5932 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 |