Class: SyntaxTree::Int
- Inherits:
-
Node
- Object
- Node
- SyntaxTree::Int
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, #end_char, #pretty_print, #start_char, #to_json, #to_mermaid
Constructor Details
#initialize(value:, location:) ⇒ Int
Returns a new instance of Int.
6829
6830
6831
6832
6833
|
# File 'lib/syntax_tree/node.rb', line 6829
def initialize(value:, location:)
@value = value
@location = location
= []
end
|
Instance Attribute Details
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
6827
6828
6829
|
# File 'lib/syntax_tree/node.rb', line 6827
def
end
|
#value ⇒ Object
- String
-
the value of the integer
6824
6825
6826
|
# File 'lib/syntax_tree/node.rb', line 6824
def value
@value
end
|
Instance Method Details
#===(other) ⇒ Object
6869
6870
6871
|
# File 'lib/syntax_tree/node.rb', line 6869
def ===(other)
other.is_a?(Int) && value === other.value
end
|
#accept(visitor) ⇒ Object
6835
6836
6837
|
# File 'lib/syntax_tree/node.rb', line 6835
def accept(visitor)
visitor.visit_int(self)
end
|
#child_nodes ⇒ Object
Also known as:
deconstruct
6839
6840
6841
|
# File 'lib/syntax_tree/node.rb', line 6839
def child_nodes
[]
end
|
#copy(value: nil, location: nil) ⇒ Object
6843
6844
6845
6846
6847
6848
6849
|
# File 'lib/syntax_tree/node.rb', line 6843
def copy(value: nil, location: nil)
node =
Int.new(value: value || self.value, location: location || self.location)
node..concat(.map(&:copy))
node
end
|
#deconstruct_keys(_keys) ⇒ Object
6853
6854
6855
|
# File 'lib/syntax_tree/node.rb', line 6853
def deconstruct_keys(_keys)
{ value: value, location: location, comments: }
end
|
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
|
# File 'lib/syntax_tree/node.rb', line 6857
def format(q)
if !value.start_with?(/\+?0/) && value.length >= 5 && !value.include?("_")
index = (value.length + 2) % 3
q.text(" #{value}"[index..].scan(/.../).join("_").strip)
else
q.text(value)
end
end
|