Class: SyntaxTree::Imaginary

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

Imaginary represents an imaginary number literal.

1i

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ Imaginary

Returns a new instance of Imaginary.



5541
5542
5543
5544
5545
# File 'lib/syntax_tree/node.rb', line 5541

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



5539
5540
5541
# File 'lib/syntax_tree/node.rb', line 5539

def comments
  @comments
end

#valueObject (readonly)

String

the value of the imaginary number literal



5536
5537
5538
# File 'lib/syntax_tree/node.rb', line 5536

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



5547
5548
5549
# File 'lib/syntax_tree/node.rb', line 5547

def accept(visitor)
  visitor.visit_imaginary(self)
end

#child_nodesObject Also known as: deconstruct



5551
5552
5553
# File 'lib/syntax_tree/node.rb', line 5551

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



5557
5558
5559
# File 'lib/syntax_tree/node.rb', line 5557

def deconstruct_keys(_keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



5561
5562
5563
# File 'lib/syntax_tree/node.rb', line 5561

def format(q)
  q.text(value)
end