Class: SyntaxTree::CallOperatorFormatter

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

Overview

Wraps a call operator (which can be a string literal

or an Op node or a

Period node) and formats it when called.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(operator) ⇒ CallOperatorFormatter

Returns a new instance of CallOperatorFormatter.



2308
2309
2310
# File 'lib/syntax_tree/node.rb', line 2308

def initialize(operator)
  @operator = operator
end

Instance Attribute Details

#operatorObject (readonly)

:“::” | Op | Period

the operator being formatted



2306
2307
2308
# File 'lib/syntax_tree/node.rb', line 2306

def operator
  @operator
end

Instance Method Details

#commentsObject



2312
2313
2314
# File 'lib/syntax_tree/node.rb', line 2312

def comments
  operator == :"::" ? [] : operator.comments
end

#format(q) ⇒ Object



2316
2317
2318
2319
2320
2321
2322
# File 'lib/syntax_tree/node.rb', line 2316

def format(q)
  if operator == :"::" || (operator.is_a?(Op) && operator.value == "::")
    q.text(".")
  else
    operator.format(q)
  end
end