Class: SyntaxTree::DotFormatter
- Inherits:
-
Object
- Object
- SyntaxTree::DotFormatter
- Defined in:
- lib/syntax_tree/node.rb
Overview
Responsible for formatting Dot2 and Dot3 nodes.
Instance Attribute Summary collapse
-
#node ⇒ Object
readonly
- Dot2 | Dot3
-
the node that is being formatter.
-
#operator ⇒ Object
readonly
- String
-
the operator to display.
Instance Method Summary collapse
- #format(q) ⇒ Object
-
#initialize(operator, node) ⇒ DotFormatter
constructor
A new instance of DotFormatter.
Constructor Details
#initialize(operator, node) ⇒ DotFormatter
Returns a new instance of DotFormatter.
3708 3709 3710 3711 |
# File 'lib/syntax_tree/node.rb', line 3708 def initialize(operator, node) @operator = operator @node = node end |
Instance Attribute Details
#node ⇒ Object (readonly)
- Dot2 | Dot3
-
the node that is being formatter
3706 3707 3708 |
# File 'lib/syntax_tree/node.rb', line 3706 def node @node end |
#operator ⇒ Object (readonly)
- String
-
the operator to display
3703 3704 3705 |
# File 'lib/syntax_tree/node.rb', line 3703 def operator @operator end |
Instance Method Details
#format(q) ⇒ Object
3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 |
# File 'lib/syntax_tree/node.rb', line 3713 def format(q) space = [If, IfMod, Unless, UnlessMod].include?(q.parent.class) left = node.left right = node.right q.format(left) if left q.text(" ") if space q.text(operator) q.text(" ") if space q.format(right) if right end |