Class: SyntaxTree::Op

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

Overview

Op represents an operator literal in the source.

1 + 2

In the example above, the Op node represents the + operator.

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: []) ⇒ Op

Returns a new instance of Op.



6560
6561
6562
6563
6564
# File 'lib/syntax_tree/node.rb', line 6560

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



6558
6559
6560
# File 'lib/syntax_tree/node.rb', line 6558

def comments
  @comments
end

#valueObject (readonly)

String

the operator



6555
6556
6557
# File 'lib/syntax_tree/node.rb', line 6555

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



6566
6567
6568
# File 'lib/syntax_tree/node.rb', line 6566

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

#child_nodesObject Also known as: deconstruct



6570
6571
6572
# File 'lib/syntax_tree/node.rb', line 6570

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



6576
6577
6578
# File 'lib/syntax_tree/node.rb', line 6576

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

#format(q) ⇒ Object



6580
6581
6582
# File 'lib/syntax_tree/node.rb', line 6580

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