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

#pretty_print, #to_json

Constructor Details

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

Returns a new instance of Imaginary.



5458
5459
5460
5461
5462
# File 'lib/syntax_tree/node.rb', line 5458

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



5456
5457
5458
# File 'lib/syntax_tree/node.rb', line 5456

def comments
  @comments
end

#valueObject (readonly)

[String] the value of the imaginary number literal



5453
5454
5455
# File 'lib/syntax_tree/node.rb', line 5453

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



5464
5465
5466
# File 'lib/syntax_tree/node.rb', line 5464

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

#child_nodesObject Also known as: deconstruct



5468
5469
5470
# File 'lib/syntax_tree/node.rb', line 5468

def child_nodes
  []
end

#deconstruct_keys(keys) ⇒ Object



5474
5475
5476
# File 'lib/syntax_tree/node.rb', line 5474

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

#format(q) ⇒ Object



5478
5479
5480
# File 'lib/syntax_tree/node.rb', line 5478

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