Class: SyntaxTree::CallOperatorFormatter
- Inherits:
-
Object
- Object
- SyntaxTree::CallOperatorFormatter
- 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
-
#operator ⇒ Object
readonly
- :“::” | Op | Period
-
the operator being formatted.
Instance Method Summary collapse
- #comments ⇒ Object
- #format(q) ⇒ Object
-
#initialize(operator) ⇒ CallOperatorFormatter
constructor
A new instance of CallOperatorFormatter.
Constructor Details
#initialize(operator) ⇒ CallOperatorFormatter
Returns a new instance of CallOperatorFormatter.
2687 2688 2689 |
# File 'lib/syntax_tree/node.rb', line 2687 def initialize(operator) @operator = operator end |
Instance Attribute Details
#operator ⇒ Object (readonly)
- :“::” | Op | Period
-
the operator being formatted
2685 2686 2687 |
# File 'lib/syntax_tree/node.rb', line 2685 def operator @operator end |
Instance Method Details
#comments ⇒ Object
2691 2692 2693 |
# File 'lib/syntax_tree/node.rb', line 2691 def comments operator == :"::" ? [] : operator.comments end |
#format(q) ⇒ Object
2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 |
# File 'lib/syntax_tree/node.rb', line 2695 def format(q) case operator when :"::" q.text(".") when Op operator.value == "::" ? q.text(".") : operator.format(q) else operator.format(q) end end |