Method: SyntaxTree::Int#initialize
- Defined in:
- lib/syntax_tree/node.rb
#initialize(value:, location:) ⇒ Int
Returns a new instance of Int.
6826 6827 6828 6829 6830 |
# File 'lib/syntax_tree/node.rb', line 6826 def initialize(value:, location:) @value = value @location = location @comments = [] end |