Class: SyntaxTree::Formatter

Inherits:
PrettierPrint
  • Object
show all
Defined in:
lib/syntax_tree/formatter.rb,
lib/syntax_tree/plugin/single_quotes.rb,
lib/syntax_tree/plugin/trailing_comma.rb,
lib/syntax_tree/plugin/disable_auto_ternary.rb

Overview

A slightly enhanced PP that knows how to format recursively including comments.

Defined Under Namespace

Classes: Options, SemanticVersion

Constant Summary collapse

COMMENT_PRIORITY =
1
HEREDOC_PRIORITY =
2
SINGLE_QUOTES =
true
TRAILING_COMMA =
true
DISABLE_AUTO_TERNARY =
true

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, *args, options: Options.new) ⇒ Formatter

Returns a new instance of Formatter.



95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/syntax_tree/formatter.rb', line 95

def initialize(source, *args, options: Options.new)
  super(*args)

  @source = source
  @stack = []

  # Memoizing these values to make access faster.
  @quote = options.quote
  @trailing_comma = options.trailing_comma
  @disable_auto_ternary = options.disable_auto_ternary
  @target_ruby_version = options.target_ruby_version
end

Instance Attribute Details

#disable_auto_ternaryObject (readonly) Also known as: disable_auto_ternary?

These options are overridden in plugins to we need to make sure they are available here.



87
88
89
# File 'lib/syntax_tree/formatter.rb', line 87

def disable_auto_ternary
  @disable_auto_ternary
end

#quoteObject (readonly)

These options are overridden in plugins to we need to make sure they are available here.



87
88
89
# File 'lib/syntax_tree/formatter.rb', line 87

def quote
  @quote
end

#sourceObject (readonly)

Returns the value of attribute source.



83
84
85
# File 'lib/syntax_tree/formatter.rb', line 83

def source
  @source
end

#stackObject (readonly)

Returns the value of attribute stack.



83
84
85
# File 'lib/syntax_tree/formatter.rb', line 83

def stack
  @stack
end

#target_ruby_versionObject (readonly)

These options are overridden in plugins to we need to make sure they are available here.



87
88
89
# File 'lib/syntax_tree/formatter.rb', line 87

def target_ruby_version
  @target_ruby_version
end

#trailing_commaObject (readonly) Also known as: trailing_comma?

These options are overridden in plugins to we need to make sure they are available here.



87
88
89
# File 'lib/syntax_tree/formatter.rb', line 87

def trailing_comma
  @trailing_comma
end

Class Method Details

.format(source, node, base_indentation = 0) ⇒ Object



108
109
110
111
112
113
# File 'lib/syntax_tree/formatter.rb', line 108

def self.format(source, node, base_indentation = 0)
  q = new(source, [])
  q.format(node)
  q.flush(base_indentation)
  q.output.join
end

Instance Method Details

#format(node, stackable: true) ⇒ Object



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/syntax_tree/formatter.rb', line 115

def format(node, stackable: true)
  stack << node if stackable
  doc = nil

  # If there are comments, then we're going to format them around the node
  # so that they get printed properly.
  if node.comments.any?
    trailing = []
    last_leading = nil

    # First, we're going to print all of the comments that were found before
    # the node. We'll also gather up any trailing comments that we find.
    node.comments.each do |comment|
      if comment.leading?
        comment.format(self)
        breakable(force: true)
        last_leading = comment
      else
        trailing << comment
      end
    end

    # If the node has a stree-ignore comment right before it, then we're
    # going to just print out the node as it was seen in the source.
    doc =
      if last_leading&.ignore?
        range = source[node.start_char...node.end_char]
        first = true

        range.each_line(chomp: true) do |line|
          if first
            first = false
          else
            breakable_return
          end

          text(line)
        end

        breakable_return if range.end_with?("\n")
      else
        node.format(self)
      end

    # Print all comments that were found after the node.
    trailing.each do |comment|
      line_suffix(priority: COMMENT_PRIORITY) do
        comment.inline? ? text(" ") : breakable
        comment.format(self)
        break_parent
      end
    end
  else
    doc = node.format(self)
  end

  stack.pop if stackable
  doc
end

#format_each(nodes) ⇒ Object



175
176
177
# File 'lib/syntax_tree/formatter.rb', line 175

def format_each(nodes)
  nodes.each { |node| format(node) }
end

#grandparentObject



179
180
181
# File 'lib/syntax_tree/formatter.rb', line 179

def grandparent
  stack[-3]
end

#groupObject

This is a simplified version of prettyprint’s group. It doesn’t provide any of the more advanced options because we don’t need them and they take up expensive computation time.



194
195
196
197
198
199
200
201
202
203
204
# File 'lib/syntax_tree/formatter.rb', line 194

def group
  contents = []
  doc = Group.new(0, contents: contents)

  groups << doc
  target << doc

  with_target(contents) { yield }
  groups.pop
  doc
end

#parentObject



183
184
185
# File 'lib/syntax_tree/formatter.rb', line 183

def parent
  stack[-2]
end

#parentsObject



187
188
189
# File 'lib/syntax_tree/formatter.rb', line 187

def parents
  stack[0...-1].reverse_each
end

#seplist(list, sep = nil, iter_method = :each) ⇒ Object

A similar version to the super, except that it calls back into the separator proc with the instance of ‘self`.



208
209
210
211
212
213
214
215
216
217
218
219
220
# File 'lib/syntax_tree/formatter.rb', line 208

def seplist(list, sep = nil, iter_method = :each)
  first = true
  list.__send__(iter_method) do |*v|
    if first
      first = false
    elsif sep
      sep.call(self)
    else
      comma_breakable
    end
    yield(*v)
  end
end

#text(string) ⇒ Object

This is a much simplified version of prettyprint’s text. It avoids calculating width by pushing the string directly onto the target.



224
225
226
# File 'lib/syntax_tree/formatter.rb', line 224

def text(string)
  target << string
end