jruby-prism-parser 0.24.0-java → 1.4.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/BSDmakefile +58 -0
  3. data/CHANGELOG.md +269 -1
  4. data/CONTRIBUTING.md +0 -4
  5. data/Makefile +25 -18
  6. data/README.md +57 -6
  7. data/config.yml +1724 -140
  8. data/docs/build_system.md +39 -11
  9. data/docs/configuration.md +4 -0
  10. data/docs/cruby_compilation.md +1 -1
  11. data/docs/fuzzing.md +1 -1
  12. data/docs/parser_translation.md +14 -9
  13. data/docs/parsing_rules.md +4 -1
  14. data/docs/releasing.md +8 -10
  15. data/docs/relocation.md +34 -0
  16. data/docs/ripper_translation.md +72 -0
  17. data/docs/ruby_api.md +2 -1
  18. data/docs/serialization.md +29 -5
  19. data/ext/prism/api_node.c +3395 -1999
  20. data/ext/prism/api_pack.c +9 -0
  21. data/ext/prism/extconf.rb +55 -34
  22. data/ext/prism/extension.c +597 -346
  23. data/ext/prism/extension.h +6 -5
  24. data/include/prism/ast.h +2612 -455
  25. data/include/prism/defines.h +160 -2
  26. data/include/prism/diagnostic.h +188 -76
  27. data/include/prism/encoding.h +22 -4
  28. data/include/prism/node.h +89 -17
  29. data/include/prism/options.h +224 -12
  30. data/include/prism/pack.h +11 -0
  31. data/include/prism/parser.h +267 -66
  32. data/include/prism/prettyprint.h +8 -0
  33. data/include/prism/regexp.h +18 -8
  34. data/include/prism/static_literals.h +121 -0
  35. data/include/prism/util/pm_buffer.h +75 -2
  36. data/include/prism/util/pm_char.h +1 -2
  37. data/include/prism/util/pm_constant_pool.h +18 -9
  38. data/include/prism/util/pm_integer.h +126 -0
  39. data/include/prism/util/pm_list.h +1 -1
  40. data/include/prism/util/pm_newline_list.h +19 -0
  41. data/include/prism/util/pm_string.h +48 -8
  42. data/include/prism/version.h +3 -3
  43. data/include/prism.h +99 -5
  44. data/jruby-prism.jar +0 -0
  45. data/lib/prism/compiler.rb +11 -1
  46. data/lib/prism/desugar_compiler.rb +113 -74
  47. data/lib/prism/dispatcher.rb +45 -1
  48. data/lib/prism/dot_visitor.rb +201 -77
  49. data/lib/prism/dsl.rb +673 -461
  50. data/lib/prism/ffi.rb +233 -45
  51. data/lib/prism/inspect_visitor.rb +2389 -0
  52. data/lib/prism/lex_compat.rb +35 -16
  53. data/lib/prism/mutation_compiler.rb +24 -8
  54. data/lib/prism/node.rb +7731 -8460
  55. data/lib/prism/node_ext.rb +328 -32
  56. data/lib/prism/pack.rb +4 -0
  57. data/lib/prism/parse_result/comments.rb +34 -24
  58. data/lib/prism/parse_result/errors.rb +65 -0
  59. data/lib/prism/parse_result/newlines.rb +102 -12
  60. data/lib/prism/parse_result.rb +448 -44
  61. data/lib/prism/pattern.rb +28 -10
  62. data/lib/prism/polyfill/append_as_bytes.rb +15 -0
  63. data/lib/prism/polyfill/byteindex.rb +13 -0
  64. data/lib/prism/polyfill/unpack1.rb +14 -0
  65. data/lib/prism/reflection.rb +413 -0
  66. data/lib/prism/relocation.rb +504 -0
  67. data/lib/prism/serialize.rb +1940 -1198
  68. data/lib/prism/string_query.rb +30 -0
  69. data/lib/prism/translation/parser/builder.rb +61 -0
  70. data/lib/prism/translation/parser/compiler.rb +569 -195
  71. data/lib/prism/translation/parser/lexer.rb +516 -39
  72. data/lib/prism/translation/parser.rb +177 -12
  73. data/lib/prism/translation/parser33.rb +1 -1
  74. data/lib/prism/translation/parser34.rb +1 -1
  75. data/lib/prism/translation/parser35.rb +12 -0
  76. data/lib/prism/translation/ripper/sexp.rb +125 -0
  77. data/lib/prism/translation/ripper/shim.rb +5 -0
  78. data/lib/prism/translation/ripper.rb +3224 -462
  79. data/lib/prism/translation/ruby_parser.rb +194 -69
  80. data/lib/prism/translation.rb +4 -1
  81. data/lib/prism/version.rb +1 -1
  82. data/lib/prism/visitor.rb +13 -0
  83. data/lib/prism.rb +17 -27
  84. data/prism.gemspec +57 -17
  85. data/rbi/prism/compiler.rbi +12 -0
  86. data/rbi/prism/dsl.rbi +524 -0
  87. data/rbi/prism/inspect_visitor.rbi +12 -0
  88. data/rbi/prism/node.rbi +8722 -0
  89. data/rbi/prism/node_ext.rbi +107 -0
  90. data/rbi/prism/parse_result.rbi +404 -0
  91. data/rbi/prism/reflection.rbi +58 -0
  92. data/rbi/prism/string_query.rbi +12 -0
  93. data/rbi/prism/translation/parser.rbi +11 -0
  94. data/rbi/prism/translation/parser33.rbi +6 -0
  95. data/rbi/prism/translation/parser34.rbi +6 -0
  96. data/rbi/prism/translation/parser35.rbi +6 -0
  97. data/rbi/prism/translation/ripper.rbi +15 -0
  98. data/rbi/prism/visitor.rbi +473 -0
  99. data/rbi/prism.rbi +44 -7745
  100. data/sig/prism/compiler.rbs +9 -0
  101. data/sig/prism/dispatcher.rbs +16 -0
  102. data/sig/prism/dot_visitor.rbs +6 -0
  103. data/sig/prism/dsl.rbs +351 -0
  104. data/sig/prism/inspect_visitor.rbs +22 -0
  105. data/sig/prism/lex_compat.rbs +10 -0
  106. data/sig/prism/mutation_compiler.rbs +159 -0
  107. data/sig/prism/node.rbs +3614 -0
  108. data/sig/prism/node_ext.rbs +82 -0
  109. data/sig/prism/pack.rbs +43 -0
  110. data/sig/prism/parse_result.rbs +192 -0
  111. data/sig/prism/pattern.rbs +13 -0
  112. data/sig/prism/reflection.rbs +50 -0
  113. data/sig/prism/relocation.rbs +185 -0
  114. data/sig/prism/serialize.rbs +8 -0
  115. data/sig/prism/string_query.rbs +11 -0
  116. data/sig/prism/visitor.rbs +169 -0
  117. data/sig/prism.rbs +248 -4767
  118. data/src/diagnostic.c +672 -230
  119. data/src/encoding.c +211 -108
  120. data/src/node.c +7541 -1653
  121. data/src/options.c +135 -20
  122. data/src/pack.c +33 -17
  123. data/src/prettyprint.c +1543 -1485
  124. data/src/prism.c +7813 -3050
  125. data/src/regexp.c +225 -73
  126. data/src/serialize.c +101 -77
  127. data/src/static_literals.c +617 -0
  128. data/src/token_type.c +14 -13
  129. data/src/util/pm_buffer.c +187 -20
  130. data/src/util/pm_char.c +5 -5
  131. data/src/util/pm_constant_pool.c +39 -19
  132. data/src/util/pm_integer.c +670 -0
  133. data/src/util/pm_list.c +1 -1
  134. data/src/util/pm_newline_list.c +43 -5
  135. data/src/util/pm_string.c +213 -33
  136. data/src/util/pm_strncasecmp.c +13 -1
  137. data/src/util/pm_strpbrk.c +32 -6
  138. metadata +55 -19
  139. data/docs/ripper.md +0 -36
  140. data/include/prism/util/pm_state_stack.h +0 -42
  141. data/include/prism/util/pm_string_list.h +0 -44
  142. data/lib/prism/debug.rb +0 -206
  143. data/lib/prism/node_inspector.rb +0 -68
  144. data/lib/prism/translation/parser/rubocop.rb +0 -45
  145. data/rbi/prism_static.rbi +0 -207
  146. data/sig/prism_static.rbs +0 -201
  147. data/src/util/pm_state_stack.c +0 -25
  148. data/src/util/pm_string_list.c +0 -28
@@ -0,0 +1,2389 @@
1
+ # frozen_string_literal: true
2
+
3
+ =begin
4
+ This file is generated by the templates/template.rb script and should not be
5
+ modified manually. See templates/lib/prism/inspect_visitor.rb.erb
6
+ if you are looking to modify the template
7
+ =end
8
+
9
+ module Prism
10
+ # This visitor is responsible for composing the strings that get returned by
11
+ # the various #inspect methods defined on each of the nodes.
12
+ class InspectVisitor < Visitor
13
+ # Most of the time, we can simply pass down the indent to the next node.
14
+ # However, when we are inside a list we want some extra special formatting
15
+ # when we hit an element in that list. In this case, we have a special
16
+ # command that replaces the subsequent indent with the given value.
17
+ class Replace # :nodoc:
18
+ attr_reader :value
19
+
20
+ def initialize(value)
21
+ @value = value
22
+ end
23
+ end
24
+
25
+ private_constant :Replace
26
+
27
+ # The current prefix string.
28
+ attr_reader :indent
29
+
30
+ # The list of commands that we need to execute in order to compose the
31
+ # final string.
32
+ attr_reader :commands
33
+
34
+ # Initializes a new instance of the InspectVisitor.
35
+ def initialize(indent = +"")
36
+ @indent = indent
37
+ @commands = []
38
+ end
39
+
40
+ # Compose an inspect string for the given node.
41
+ def self.compose(node)
42
+ visitor = new
43
+ node.accept(visitor)
44
+ visitor.compose
45
+ end
46
+
47
+ # Compose the final string.
48
+ def compose
49
+ buffer = +""
50
+ replace = nil
51
+
52
+ until commands.empty?
53
+ # @type var command: String | node | Replace
54
+ # @type var indent: String
55
+ command, indent = *commands.shift
56
+
57
+ case command
58
+ when String
59
+ buffer << (replace || indent)
60
+ buffer << command
61
+ replace = nil
62
+ when Node
63
+ visitor = InspectVisitor.new(indent)
64
+ command.accept(visitor)
65
+ @commands = [*visitor.commands, *@commands]
66
+ when Replace
67
+ replace = command.value
68
+ else
69
+ raise "Unknown command: #{command.inspect}"
70
+ end
71
+ end
72
+
73
+ buffer
74
+ end
75
+
76
+ # Inspect a AliasGlobalVariableNode node.
77
+ def visit_alias_global_variable_node(node)
78
+ commands << [inspect_node("AliasGlobalVariableNode", node), indent]
79
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
80
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
81
+ commands << ["├── new_name:\n", indent]
82
+ commands << [node.new_name, "#{indent}│ "]
83
+ commands << ["├── old_name:\n", indent]
84
+ commands << [node.old_name, "#{indent}│ "]
85
+ commands << ["└── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
86
+ end
87
+
88
+ # Inspect a AliasMethodNode node.
89
+ def visit_alias_method_node(node)
90
+ commands << [inspect_node("AliasMethodNode", node), indent]
91
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
92
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
93
+ commands << ["├── new_name:\n", indent]
94
+ commands << [node.new_name, "#{indent}│ "]
95
+ commands << ["├── old_name:\n", indent]
96
+ commands << [node.old_name, "#{indent}│ "]
97
+ commands << ["└── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
98
+ end
99
+
100
+ # Inspect a AlternationPatternNode node.
101
+ def visit_alternation_pattern_node(node)
102
+ commands << [inspect_node("AlternationPatternNode", node), indent]
103
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
104
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
105
+ commands << ["├── left:\n", indent]
106
+ commands << [node.left, "#{indent}│ "]
107
+ commands << ["├── right:\n", indent]
108
+ commands << [node.right, "#{indent}│ "]
109
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
110
+ end
111
+
112
+ # Inspect a AndNode node.
113
+ def visit_and_node(node)
114
+ commands << [inspect_node("AndNode", node), indent]
115
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
116
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
117
+ commands << ["├── left:\n", indent]
118
+ commands << [node.left, "#{indent}│ "]
119
+ commands << ["├── right:\n", indent]
120
+ commands << [node.right, "#{indent}│ "]
121
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
122
+ end
123
+
124
+ # Inspect a ArgumentsNode node.
125
+ def visit_arguments_node(node)
126
+ commands << [inspect_node("ArgumentsNode", node), indent]
127
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("contains_forwarding" if node.contains_forwarding?), ("contains_keywords" if node.contains_keywords?), ("contains_keyword_splat" if node.contains_keyword_splat?), ("contains_splat" if node.contains_splat?), ("contains_multiple_splats" if node.contains_multiple_splats?)].compact
128
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
129
+ commands << ["└── arguments: (length: #{(arguments = node.arguments).length})\n", indent]
130
+ if arguments.any?
131
+ arguments[0...-1].each do |child|
132
+ commands << [Replace.new("#{indent} ├── "), indent]
133
+ commands << [child, "#{indent} │ "]
134
+ end
135
+ commands << [Replace.new("#{indent} └── "), indent]
136
+ commands << [arguments[-1], "#{indent} "]
137
+ end
138
+ end
139
+
140
+ # Inspect a ArrayNode node.
141
+ def visit_array_node(node)
142
+ commands << [inspect_node("ArrayNode", node), indent]
143
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("contains_splat" if node.contains_splat?)].compact
144
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
145
+ commands << ["├── elements: (length: #{(elements = node.elements).length})\n", indent]
146
+ if elements.any?
147
+ elements[0...-1].each do |child|
148
+ commands << [Replace.new("#{indent}│ ├── "), indent]
149
+ commands << [child, "#{indent}│ │ "]
150
+ end
151
+ commands << [Replace.new("#{indent}│ └── "), indent]
152
+ commands << [elements[-1], "#{indent}│ "]
153
+ end
154
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
155
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
156
+ end
157
+
158
+ # Inspect a ArrayPatternNode node.
159
+ def visit_array_pattern_node(node)
160
+ commands << [inspect_node("ArrayPatternNode", node), indent]
161
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
162
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
163
+ if (constant = node.constant).nil?
164
+ commands << ["├── constant: ∅\n", indent]
165
+ else
166
+ commands << ["├── constant:\n", indent]
167
+ commands << [constant, "#{indent}│ "]
168
+ end
169
+ commands << ["├── requireds: (length: #{(requireds = node.requireds).length})\n", indent]
170
+ if requireds.any?
171
+ requireds[0...-1].each do |child|
172
+ commands << [Replace.new("#{indent}│ ├── "), indent]
173
+ commands << [child, "#{indent}│ │ "]
174
+ end
175
+ commands << [Replace.new("#{indent}│ └── "), indent]
176
+ commands << [requireds[-1], "#{indent}│ "]
177
+ end
178
+ if (rest = node.rest).nil?
179
+ commands << ["├── rest: ∅\n", indent]
180
+ else
181
+ commands << ["├── rest:\n", indent]
182
+ commands << [rest, "#{indent}│ "]
183
+ end
184
+ commands << ["├── posts: (length: #{(posts = node.posts).length})\n", indent]
185
+ if posts.any?
186
+ posts[0...-1].each do |child|
187
+ commands << [Replace.new("#{indent}│ ├── "), indent]
188
+ commands << [child, "#{indent}│ │ "]
189
+ end
190
+ commands << [Replace.new("#{indent}│ └── "), indent]
191
+ commands << [posts[-1], "#{indent}│ "]
192
+ end
193
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
194
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
195
+ end
196
+
197
+ # Inspect a AssocNode node.
198
+ def visit_assoc_node(node)
199
+ commands << [inspect_node("AssocNode", node), indent]
200
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
201
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
202
+ commands << ["├── key:\n", indent]
203
+ commands << [node.key, "#{indent}│ "]
204
+ commands << ["├── value:\n", indent]
205
+ commands << [node.value, "#{indent}│ "]
206
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
207
+ end
208
+
209
+ # Inspect a AssocSplatNode node.
210
+ def visit_assoc_splat_node(node)
211
+ commands << [inspect_node("AssocSplatNode", node), indent]
212
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
213
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
214
+ if (value = node.value).nil?
215
+ commands << ["├── value: ∅\n", indent]
216
+ else
217
+ commands << ["├── value:\n", indent]
218
+ commands << [value, "#{indent}│ "]
219
+ end
220
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
221
+ end
222
+
223
+ # Inspect a BackReferenceReadNode node.
224
+ def visit_back_reference_read_node(node)
225
+ commands << [inspect_node("BackReferenceReadNode", node), indent]
226
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
227
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
228
+ commands << ["└── name: #{node.name.inspect}\n", indent]
229
+ end
230
+
231
+ # Inspect a BeginNode node.
232
+ def visit_begin_node(node)
233
+ commands << [inspect_node("BeginNode", node), indent]
234
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
235
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
236
+ commands << ["├── begin_keyword_loc: #{inspect_location(node.begin_keyword_loc)}\n", indent]
237
+ if (statements = node.statements).nil?
238
+ commands << ["├── statements: ∅\n", indent]
239
+ else
240
+ commands << ["├── statements:\n", indent]
241
+ commands << [statements, "#{indent}│ "]
242
+ end
243
+ if (rescue_clause = node.rescue_clause).nil?
244
+ commands << ["├── rescue_clause: ∅\n", indent]
245
+ else
246
+ commands << ["├── rescue_clause:\n", indent]
247
+ commands << [rescue_clause, "#{indent}│ "]
248
+ end
249
+ if (else_clause = node.else_clause).nil?
250
+ commands << ["├── else_clause: ∅\n", indent]
251
+ else
252
+ commands << ["├── else_clause:\n", indent]
253
+ commands << [else_clause, "#{indent}│ "]
254
+ end
255
+ if (ensure_clause = node.ensure_clause).nil?
256
+ commands << ["├── ensure_clause: ∅\n", indent]
257
+ else
258
+ commands << ["├── ensure_clause:\n", indent]
259
+ commands << [ensure_clause, "#{indent}│ "]
260
+ end
261
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
262
+ end
263
+
264
+ # Inspect a BlockArgumentNode node.
265
+ def visit_block_argument_node(node)
266
+ commands << [inspect_node("BlockArgumentNode", node), indent]
267
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
268
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
269
+ if (expression = node.expression).nil?
270
+ commands << ["├── expression: ∅\n", indent]
271
+ else
272
+ commands << ["├── expression:\n", indent]
273
+ commands << [expression, "#{indent}│ "]
274
+ end
275
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
276
+ end
277
+
278
+ # Inspect a BlockLocalVariableNode node.
279
+ def visit_block_local_variable_node(node)
280
+ commands << [inspect_node("BlockLocalVariableNode", node), indent]
281
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("repeated_parameter" if node.repeated_parameter?)].compact
282
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
283
+ commands << ["└── name: #{node.name.inspect}\n", indent]
284
+ end
285
+
286
+ # Inspect a BlockNode node.
287
+ def visit_block_node(node)
288
+ commands << [inspect_node("BlockNode", node), indent]
289
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
290
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
291
+ commands << ["├── locals: #{node.locals.inspect}\n", indent]
292
+ if (parameters = node.parameters).nil?
293
+ commands << ["├── parameters: ∅\n", indent]
294
+ else
295
+ commands << ["├── parameters:\n", indent]
296
+ commands << [parameters, "#{indent}│ "]
297
+ end
298
+ if (body = node.body).nil?
299
+ commands << ["├── body: ∅\n", indent]
300
+ else
301
+ commands << ["├── body:\n", indent]
302
+ commands << [body, "#{indent}│ "]
303
+ end
304
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
305
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
306
+ end
307
+
308
+ # Inspect a BlockParameterNode node.
309
+ def visit_block_parameter_node(node)
310
+ commands << [inspect_node("BlockParameterNode", node), indent]
311
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("repeated_parameter" if node.repeated_parameter?)].compact
312
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
313
+ if (name = node.name).nil?
314
+ commands << ["├── name: ∅\n", indent]
315
+ else
316
+ commands << ["├── name: #{name.inspect}\n", indent]
317
+ end
318
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
319
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
320
+ end
321
+
322
+ # Inspect a BlockParametersNode node.
323
+ def visit_block_parameters_node(node)
324
+ commands << [inspect_node("BlockParametersNode", node), indent]
325
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
326
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
327
+ if (parameters = node.parameters).nil?
328
+ commands << ["├── parameters: ∅\n", indent]
329
+ else
330
+ commands << ["├── parameters:\n", indent]
331
+ commands << [parameters, "#{indent}│ "]
332
+ end
333
+ commands << ["├── locals: (length: #{(locals = node.locals).length})\n", indent]
334
+ if locals.any?
335
+ locals[0...-1].each do |child|
336
+ commands << [Replace.new("#{indent}│ ├── "), indent]
337
+ commands << [child, "#{indent}│ │ "]
338
+ end
339
+ commands << [Replace.new("#{indent}│ └── "), indent]
340
+ commands << [locals[-1], "#{indent}│ "]
341
+ end
342
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
343
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
344
+ end
345
+
346
+ # Inspect a BreakNode node.
347
+ def visit_break_node(node)
348
+ commands << [inspect_node("BreakNode", node), indent]
349
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
350
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
351
+ if (arguments = node.arguments).nil?
352
+ commands << ["├── arguments: ∅\n", indent]
353
+ else
354
+ commands << ["├── arguments:\n", indent]
355
+ commands << [arguments, "#{indent}│ "]
356
+ end
357
+ commands << ["└── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
358
+ end
359
+
360
+ # Inspect a CallAndWriteNode node.
361
+ def visit_call_and_write_node(node)
362
+ commands << [inspect_node("CallAndWriteNode", node), indent]
363
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
364
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
365
+ if (receiver = node.receiver).nil?
366
+ commands << ["├── receiver: ∅\n", indent]
367
+ else
368
+ commands << ["├── receiver:\n", indent]
369
+ commands << [receiver, "#{indent}│ "]
370
+ end
371
+ commands << ["├── call_operator_loc: #{inspect_location(node.call_operator_loc)}\n", indent]
372
+ commands << ["├── message_loc: #{inspect_location(node.message_loc)}\n", indent]
373
+ commands << ["├── read_name: #{node.read_name.inspect}\n", indent]
374
+ commands << ["├── write_name: #{node.write_name.inspect}\n", indent]
375
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
376
+ commands << ["└── value:\n", indent]
377
+ commands << [node.value, "#{indent} "]
378
+ end
379
+
380
+ # Inspect a CallNode node.
381
+ def visit_call_node(node)
382
+ commands << [inspect_node("CallNode", node), indent]
383
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
384
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
385
+ if (receiver = node.receiver).nil?
386
+ commands << ["├── receiver: ∅\n", indent]
387
+ else
388
+ commands << ["├── receiver:\n", indent]
389
+ commands << [receiver, "#{indent}│ "]
390
+ end
391
+ commands << ["├── call_operator_loc: #{inspect_location(node.call_operator_loc)}\n", indent]
392
+ commands << ["├── name: #{node.name.inspect}\n", indent]
393
+ commands << ["├── message_loc: #{inspect_location(node.message_loc)}\n", indent]
394
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
395
+ if (arguments = node.arguments).nil?
396
+ commands << ["├── arguments: ∅\n", indent]
397
+ else
398
+ commands << ["├── arguments:\n", indent]
399
+ commands << [arguments, "#{indent}│ "]
400
+ end
401
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
402
+ if (block = node.block).nil?
403
+ commands << ["└── block: ∅\n", indent]
404
+ else
405
+ commands << ["└── block:\n", indent]
406
+ commands << [block, "#{indent} "]
407
+ end
408
+ end
409
+
410
+ # Inspect a CallOperatorWriteNode node.
411
+ def visit_call_operator_write_node(node)
412
+ commands << [inspect_node("CallOperatorWriteNode", node), indent]
413
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
414
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
415
+ if (receiver = node.receiver).nil?
416
+ commands << ["├── receiver: ∅\n", indent]
417
+ else
418
+ commands << ["├── receiver:\n", indent]
419
+ commands << [receiver, "#{indent}│ "]
420
+ end
421
+ commands << ["├── call_operator_loc: #{inspect_location(node.call_operator_loc)}\n", indent]
422
+ commands << ["├── message_loc: #{inspect_location(node.message_loc)}\n", indent]
423
+ commands << ["├── read_name: #{node.read_name.inspect}\n", indent]
424
+ commands << ["├── write_name: #{node.write_name.inspect}\n", indent]
425
+ commands << ["├── binary_operator: #{node.binary_operator.inspect}\n", indent]
426
+ commands << ["├── binary_operator_loc: #{inspect_location(node.binary_operator_loc)}\n", indent]
427
+ commands << ["└── value:\n", indent]
428
+ commands << [node.value, "#{indent} "]
429
+ end
430
+
431
+ # Inspect a CallOrWriteNode node.
432
+ def visit_call_or_write_node(node)
433
+ commands << [inspect_node("CallOrWriteNode", node), indent]
434
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
435
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
436
+ if (receiver = node.receiver).nil?
437
+ commands << ["├── receiver: ∅\n", indent]
438
+ else
439
+ commands << ["├── receiver:\n", indent]
440
+ commands << [receiver, "#{indent}│ "]
441
+ end
442
+ commands << ["├── call_operator_loc: #{inspect_location(node.call_operator_loc)}\n", indent]
443
+ commands << ["├── message_loc: #{inspect_location(node.message_loc)}\n", indent]
444
+ commands << ["├── read_name: #{node.read_name.inspect}\n", indent]
445
+ commands << ["├── write_name: #{node.write_name.inspect}\n", indent]
446
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
447
+ commands << ["└── value:\n", indent]
448
+ commands << [node.value, "#{indent} "]
449
+ end
450
+
451
+ # Inspect a CallTargetNode node.
452
+ def visit_call_target_node(node)
453
+ commands << [inspect_node("CallTargetNode", node), indent]
454
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
455
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
456
+ commands << ["├── receiver:\n", indent]
457
+ commands << [node.receiver, "#{indent}│ "]
458
+ commands << ["├── call_operator_loc: #{inspect_location(node.call_operator_loc)}\n", indent]
459
+ commands << ["├── name: #{node.name.inspect}\n", indent]
460
+ commands << ["└── message_loc: #{inspect_location(node.message_loc)}\n", indent]
461
+ end
462
+
463
+ # Inspect a CapturePatternNode node.
464
+ def visit_capture_pattern_node(node)
465
+ commands << [inspect_node("CapturePatternNode", node), indent]
466
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
467
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
468
+ commands << ["├── value:\n", indent]
469
+ commands << [node.value, "#{indent}│ "]
470
+ commands << ["├── target:\n", indent]
471
+ commands << [node.target, "#{indent}│ "]
472
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
473
+ end
474
+
475
+ # Inspect a CaseMatchNode node.
476
+ def visit_case_match_node(node)
477
+ commands << [inspect_node("CaseMatchNode", node), indent]
478
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
479
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
480
+ if (predicate = node.predicate).nil?
481
+ commands << ["├── predicate: ∅\n", indent]
482
+ else
483
+ commands << ["├── predicate:\n", indent]
484
+ commands << [predicate, "#{indent}│ "]
485
+ end
486
+ commands << ["├── conditions: (length: #{(conditions = node.conditions).length})\n", indent]
487
+ if conditions.any?
488
+ conditions[0...-1].each do |child|
489
+ commands << [Replace.new("#{indent}│ ├── "), indent]
490
+ commands << [child, "#{indent}│ │ "]
491
+ end
492
+ commands << [Replace.new("#{indent}│ └── "), indent]
493
+ commands << [conditions[-1], "#{indent}│ "]
494
+ end
495
+ if (else_clause = node.else_clause).nil?
496
+ commands << ["├── else_clause: ∅\n", indent]
497
+ else
498
+ commands << ["├── else_clause:\n", indent]
499
+ commands << [else_clause, "#{indent}│ "]
500
+ end
501
+ commands << ["├── case_keyword_loc: #{inspect_location(node.case_keyword_loc)}\n", indent]
502
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
503
+ end
504
+
505
+ # Inspect a CaseNode node.
506
+ def visit_case_node(node)
507
+ commands << [inspect_node("CaseNode", node), indent]
508
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
509
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
510
+ if (predicate = node.predicate).nil?
511
+ commands << ["├── predicate: ∅\n", indent]
512
+ else
513
+ commands << ["├── predicate:\n", indent]
514
+ commands << [predicate, "#{indent}│ "]
515
+ end
516
+ commands << ["├── conditions: (length: #{(conditions = node.conditions).length})\n", indent]
517
+ if conditions.any?
518
+ conditions[0...-1].each do |child|
519
+ commands << [Replace.new("#{indent}│ ├── "), indent]
520
+ commands << [child, "#{indent}│ │ "]
521
+ end
522
+ commands << [Replace.new("#{indent}│ └── "), indent]
523
+ commands << [conditions[-1], "#{indent}│ "]
524
+ end
525
+ if (else_clause = node.else_clause).nil?
526
+ commands << ["├── else_clause: ∅\n", indent]
527
+ else
528
+ commands << ["├── else_clause:\n", indent]
529
+ commands << [else_clause, "#{indent}│ "]
530
+ end
531
+ commands << ["├── case_keyword_loc: #{inspect_location(node.case_keyword_loc)}\n", indent]
532
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
533
+ end
534
+
535
+ # Inspect a ClassNode node.
536
+ def visit_class_node(node)
537
+ commands << [inspect_node("ClassNode", node), indent]
538
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
539
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
540
+ commands << ["├── locals: #{node.locals.inspect}\n", indent]
541
+ commands << ["├── class_keyword_loc: #{inspect_location(node.class_keyword_loc)}\n", indent]
542
+ commands << ["├── constant_path:\n", indent]
543
+ commands << [node.constant_path, "#{indent}│ "]
544
+ commands << ["├── inheritance_operator_loc: #{inspect_location(node.inheritance_operator_loc)}\n", indent]
545
+ if (superclass = node.superclass).nil?
546
+ commands << ["├── superclass: ∅\n", indent]
547
+ else
548
+ commands << ["├── superclass:\n", indent]
549
+ commands << [superclass, "#{indent}│ "]
550
+ end
551
+ if (body = node.body).nil?
552
+ commands << ["├── body: ∅\n", indent]
553
+ else
554
+ commands << ["├── body:\n", indent]
555
+ commands << [body, "#{indent}│ "]
556
+ end
557
+ commands << ["├── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
558
+ commands << ["└── name: #{node.name.inspect}\n", indent]
559
+ end
560
+
561
+ # Inspect a ClassVariableAndWriteNode node.
562
+ def visit_class_variable_and_write_node(node)
563
+ commands << [inspect_node("ClassVariableAndWriteNode", node), indent]
564
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
565
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
566
+ commands << ["├── name: #{node.name.inspect}\n", indent]
567
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
568
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
569
+ commands << ["└── value:\n", indent]
570
+ commands << [node.value, "#{indent} "]
571
+ end
572
+
573
+ # Inspect a ClassVariableOperatorWriteNode node.
574
+ def visit_class_variable_operator_write_node(node)
575
+ commands << [inspect_node("ClassVariableOperatorWriteNode", node), indent]
576
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
577
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
578
+ commands << ["├── name: #{node.name.inspect}\n", indent]
579
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
580
+ commands << ["├── binary_operator_loc: #{inspect_location(node.binary_operator_loc)}\n", indent]
581
+ commands << ["├── value:\n", indent]
582
+ commands << [node.value, "#{indent}│ "]
583
+ commands << ["└── binary_operator: #{node.binary_operator.inspect}\n", indent]
584
+ end
585
+
586
+ # Inspect a ClassVariableOrWriteNode node.
587
+ def visit_class_variable_or_write_node(node)
588
+ commands << [inspect_node("ClassVariableOrWriteNode", node), indent]
589
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
590
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
591
+ commands << ["├── name: #{node.name.inspect}\n", indent]
592
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
593
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
594
+ commands << ["└── value:\n", indent]
595
+ commands << [node.value, "#{indent} "]
596
+ end
597
+
598
+ # Inspect a ClassVariableReadNode node.
599
+ def visit_class_variable_read_node(node)
600
+ commands << [inspect_node("ClassVariableReadNode", node), indent]
601
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
602
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
603
+ commands << ["└── name: #{node.name.inspect}\n", indent]
604
+ end
605
+
606
+ # Inspect a ClassVariableTargetNode node.
607
+ def visit_class_variable_target_node(node)
608
+ commands << [inspect_node("ClassVariableTargetNode", node), indent]
609
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
610
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
611
+ commands << ["└── name: #{node.name.inspect}\n", indent]
612
+ end
613
+
614
+ # Inspect a ClassVariableWriteNode node.
615
+ def visit_class_variable_write_node(node)
616
+ commands << [inspect_node("ClassVariableWriteNode", node), indent]
617
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
618
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
619
+ commands << ["├── name: #{node.name.inspect}\n", indent]
620
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
621
+ commands << ["├── value:\n", indent]
622
+ commands << [node.value, "#{indent}│ "]
623
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
624
+ end
625
+
626
+ # Inspect a ConstantAndWriteNode node.
627
+ def visit_constant_and_write_node(node)
628
+ commands << [inspect_node("ConstantAndWriteNode", node), indent]
629
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
630
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
631
+ commands << ["├── name: #{node.name.inspect}\n", indent]
632
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
633
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
634
+ commands << ["└── value:\n", indent]
635
+ commands << [node.value, "#{indent} "]
636
+ end
637
+
638
+ # Inspect a ConstantOperatorWriteNode node.
639
+ def visit_constant_operator_write_node(node)
640
+ commands << [inspect_node("ConstantOperatorWriteNode", node), indent]
641
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
642
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
643
+ commands << ["├── name: #{node.name.inspect}\n", indent]
644
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
645
+ commands << ["├── binary_operator_loc: #{inspect_location(node.binary_operator_loc)}\n", indent]
646
+ commands << ["├── value:\n", indent]
647
+ commands << [node.value, "#{indent}│ "]
648
+ commands << ["└── binary_operator: #{node.binary_operator.inspect}\n", indent]
649
+ end
650
+
651
+ # Inspect a ConstantOrWriteNode node.
652
+ def visit_constant_or_write_node(node)
653
+ commands << [inspect_node("ConstantOrWriteNode", node), indent]
654
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
655
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
656
+ commands << ["├── name: #{node.name.inspect}\n", indent]
657
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
658
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
659
+ commands << ["└── value:\n", indent]
660
+ commands << [node.value, "#{indent} "]
661
+ end
662
+
663
+ # Inspect a ConstantPathAndWriteNode node.
664
+ def visit_constant_path_and_write_node(node)
665
+ commands << [inspect_node("ConstantPathAndWriteNode", node), indent]
666
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
667
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
668
+ commands << ["├── target:\n", indent]
669
+ commands << [node.target, "#{indent}│ "]
670
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
671
+ commands << ["└── value:\n", indent]
672
+ commands << [node.value, "#{indent} "]
673
+ end
674
+
675
+ # Inspect a ConstantPathNode node.
676
+ def visit_constant_path_node(node)
677
+ commands << [inspect_node("ConstantPathNode", node), indent]
678
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
679
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
680
+ if (parent = node.parent).nil?
681
+ commands << ["├── parent: ∅\n", indent]
682
+ else
683
+ commands << ["├── parent:\n", indent]
684
+ commands << [parent, "#{indent}│ "]
685
+ end
686
+ if (name = node.name).nil?
687
+ commands << ["├── name: ∅\n", indent]
688
+ else
689
+ commands << ["├── name: #{name.inspect}\n", indent]
690
+ end
691
+ commands << ["├── delimiter_loc: #{inspect_location(node.delimiter_loc)}\n", indent]
692
+ commands << ["└── name_loc: #{inspect_location(node.name_loc)}\n", indent]
693
+ end
694
+
695
+ # Inspect a ConstantPathOperatorWriteNode node.
696
+ def visit_constant_path_operator_write_node(node)
697
+ commands << [inspect_node("ConstantPathOperatorWriteNode", node), indent]
698
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
699
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
700
+ commands << ["├── target:\n", indent]
701
+ commands << [node.target, "#{indent}│ "]
702
+ commands << ["├── binary_operator_loc: #{inspect_location(node.binary_operator_loc)}\n", indent]
703
+ commands << ["├── value:\n", indent]
704
+ commands << [node.value, "#{indent}│ "]
705
+ commands << ["└── binary_operator: #{node.binary_operator.inspect}\n", indent]
706
+ end
707
+
708
+ # Inspect a ConstantPathOrWriteNode node.
709
+ def visit_constant_path_or_write_node(node)
710
+ commands << [inspect_node("ConstantPathOrWriteNode", node), indent]
711
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
712
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
713
+ commands << ["├── target:\n", indent]
714
+ commands << [node.target, "#{indent}│ "]
715
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
716
+ commands << ["└── value:\n", indent]
717
+ commands << [node.value, "#{indent} "]
718
+ end
719
+
720
+ # Inspect a ConstantPathTargetNode node.
721
+ def visit_constant_path_target_node(node)
722
+ commands << [inspect_node("ConstantPathTargetNode", node), indent]
723
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
724
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
725
+ if (parent = node.parent).nil?
726
+ commands << ["├── parent: ∅\n", indent]
727
+ else
728
+ commands << ["├── parent:\n", indent]
729
+ commands << [parent, "#{indent}│ "]
730
+ end
731
+ if (name = node.name).nil?
732
+ commands << ["├── name: ∅\n", indent]
733
+ else
734
+ commands << ["├── name: #{name.inspect}\n", indent]
735
+ end
736
+ commands << ["├── delimiter_loc: #{inspect_location(node.delimiter_loc)}\n", indent]
737
+ commands << ["└── name_loc: #{inspect_location(node.name_loc)}\n", indent]
738
+ end
739
+
740
+ # Inspect a ConstantPathWriteNode node.
741
+ def visit_constant_path_write_node(node)
742
+ commands << [inspect_node("ConstantPathWriteNode", node), indent]
743
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
744
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
745
+ commands << ["├── target:\n", indent]
746
+ commands << [node.target, "#{indent}│ "]
747
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
748
+ commands << ["└── value:\n", indent]
749
+ commands << [node.value, "#{indent} "]
750
+ end
751
+
752
+ # Inspect a ConstantReadNode node.
753
+ def visit_constant_read_node(node)
754
+ commands << [inspect_node("ConstantReadNode", node), indent]
755
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
756
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
757
+ commands << ["└── name: #{node.name.inspect}\n", indent]
758
+ end
759
+
760
+ # Inspect a ConstantTargetNode node.
761
+ def visit_constant_target_node(node)
762
+ commands << [inspect_node("ConstantTargetNode", node), indent]
763
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
764
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
765
+ commands << ["└── name: #{node.name.inspect}\n", indent]
766
+ end
767
+
768
+ # Inspect a ConstantWriteNode node.
769
+ def visit_constant_write_node(node)
770
+ commands << [inspect_node("ConstantWriteNode", node), indent]
771
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
772
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
773
+ commands << ["├── name: #{node.name.inspect}\n", indent]
774
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
775
+ commands << ["├── value:\n", indent]
776
+ commands << [node.value, "#{indent}│ "]
777
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
778
+ end
779
+
780
+ # Inspect a DefNode node.
781
+ def visit_def_node(node)
782
+ commands << [inspect_node("DefNode", node), indent]
783
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
784
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
785
+ commands << ["├── name: #{node.name.inspect}\n", indent]
786
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
787
+ if (receiver = node.receiver).nil?
788
+ commands << ["├── receiver: ∅\n", indent]
789
+ else
790
+ commands << ["├── receiver:\n", indent]
791
+ commands << [receiver, "#{indent}│ "]
792
+ end
793
+ if (parameters = node.parameters).nil?
794
+ commands << ["├── parameters: ∅\n", indent]
795
+ else
796
+ commands << ["├── parameters:\n", indent]
797
+ commands << [parameters, "#{indent}│ "]
798
+ end
799
+ if (body = node.body).nil?
800
+ commands << ["├── body: ∅\n", indent]
801
+ else
802
+ commands << ["├── body:\n", indent]
803
+ commands << [body, "#{indent}│ "]
804
+ end
805
+ commands << ["├── locals: #{node.locals.inspect}\n", indent]
806
+ commands << ["├── def_keyword_loc: #{inspect_location(node.def_keyword_loc)}\n", indent]
807
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
808
+ commands << ["├── lparen_loc: #{inspect_location(node.lparen_loc)}\n", indent]
809
+ commands << ["├── rparen_loc: #{inspect_location(node.rparen_loc)}\n", indent]
810
+ commands << ["├── equal_loc: #{inspect_location(node.equal_loc)}\n", indent]
811
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
812
+ end
813
+
814
+ # Inspect a DefinedNode node.
815
+ def visit_defined_node(node)
816
+ commands << [inspect_node("DefinedNode", node), indent]
817
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
818
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
819
+ commands << ["├── lparen_loc: #{inspect_location(node.lparen_loc)}\n", indent]
820
+ commands << ["├── value:\n", indent]
821
+ commands << [node.value, "#{indent}│ "]
822
+ commands << ["├── rparen_loc: #{inspect_location(node.rparen_loc)}\n", indent]
823
+ commands << ["└── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
824
+ end
825
+
826
+ # Inspect a ElseNode node.
827
+ def visit_else_node(node)
828
+ commands << [inspect_node("ElseNode", node), indent]
829
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
830
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
831
+ commands << ["├── else_keyword_loc: #{inspect_location(node.else_keyword_loc)}\n", indent]
832
+ if (statements = node.statements).nil?
833
+ commands << ["├── statements: ∅\n", indent]
834
+ else
835
+ commands << ["├── statements:\n", indent]
836
+ commands << [statements, "#{indent}│ "]
837
+ end
838
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
839
+ end
840
+
841
+ # Inspect a EmbeddedStatementsNode node.
842
+ def visit_embedded_statements_node(node)
843
+ commands << [inspect_node("EmbeddedStatementsNode", node), indent]
844
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
845
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
846
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
847
+ if (statements = node.statements).nil?
848
+ commands << ["├── statements: ∅\n", indent]
849
+ else
850
+ commands << ["├── statements:\n", indent]
851
+ commands << [statements, "#{indent}│ "]
852
+ end
853
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
854
+ end
855
+
856
+ # Inspect a EmbeddedVariableNode node.
857
+ def visit_embedded_variable_node(node)
858
+ commands << [inspect_node("EmbeddedVariableNode", node), indent]
859
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
860
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
861
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
862
+ commands << ["└── variable:\n", indent]
863
+ commands << [node.variable, "#{indent} "]
864
+ end
865
+
866
+ # Inspect a EnsureNode node.
867
+ def visit_ensure_node(node)
868
+ commands << [inspect_node("EnsureNode", node), indent]
869
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
870
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
871
+ commands << ["├── ensure_keyword_loc: #{inspect_location(node.ensure_keyword_loc)}\n", indent]
872
+ if (statements = node.statements).nil?
873
+ commands << ["├── statements: ∅\n", indent]
874
+ else
875
+ commands << ["├── statements:\n", indent]
876
+ commands << [statements, "#{indent}│ "]
877
+ end
878
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
879
+ end
880
+
881
+ # Inspect a FalseNode node.
882
+ def visit_false_node(node)
883
+ commands << [inspect_node("FalseNode", node), indent]
884
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
885
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
886
+ end
887
+
888
+ # Inspect a FindPatternNode node.
889
+ def visit_find_pattern_node(node)
890
+ commands << [inspect_node("FindPatternNode", node), indent]
891
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
892
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
893
+ if (constant = node.constant).nil?
894
+ commands << ["├── constant: ∅\n", indent]
895
+ else
896
+ commands << ["├── constant:\n", indent]
897
+ commands << [constant, "#{indent}│ "]
898
+ end
899
+ commands << ["├── left:\n", indent]
900
+ commands << [node.left, "#{indent}│ "]
901
+ commands << ["├── requireds: (length: #{(requireds = node.requireds).length})\n", indent]
902
+ if requireds.any?
903
+ requireds[0...-1].each do |child|
904
+ commands << [Replace.new("#{indent}│ ├── "), indent]
905
+ commands << [child, "#{indent}│ │ "]
906
+ end
907
+ commands << [Replace.new("#{indent}│ └── "), indent]
908
+ commands << [requireds[-1], "#{indent}│ "]
909
+ end
910
+ commands << ["├── right:\n", indent]
911
+ commands << [node.right, "#{indent}│ "]
912
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
913
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
914
+ end
915
+
916
+ # Inspect a FlipFlopNode node.
917
+ def visit_flip_flop_node(node)
918
+ commands << [inspect_node("FlipFlopNode", node), indent]
919
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("exclude_end" if node.exclude_end?)].compact
920
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
921
+ if (left = node.left).nil?
922
+ commands << ["├── left: ∅\n", indent]
923
+ else
924
+ commands << ["├── left:\n", indent]
925
+ commands << [left, "#{indent}│ "]
926
+ end
927
+ if (right = node.right).nil?
928
+ commands << ["├── right: ∅\n", indent]
929
+ else
930
+ commands << ["├── right:\n", indent]
931
+ commands << [right, "#{indent}│ "]
932
+ end
933
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
934
+ end
935
+
936
+ # Inspect a FloatNode node.
937
+ def visit_float_node(node)
938
+ commands << [inspect_node("FloatNode", node), indent]
939
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
940
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
941
+ commands << ["└── value: #{node.value.inspect}\n", indent]
942
+ end
943
+
944
+ # Inspect a ForNode node.
945
+ def visit_for_node(node)
946
+ commands << [inspect_node("ForNode", node), indent]
947
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
948
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
949
+ commands << ["├── index:\n", indent]
950
+ commands << [node.index, "#{indent}│ "]
951
+ commands << ["├── collection:\n", indent]
952
+ commands << [node.collection, "#{indent}│ "]
953
+ if (statements = node.statements).nil?
954
+ commands << ["├── statements: ∅\n", indent]
955
+ else
956
+ commands << ["├── statements:\n", indent]
957
+ commands << [statements, "#{indent}│ "]
958
+ end
959
+ commands << ["├── for_keyword_loc: #{inspect_location(node.for_keyword_loc)}\n", indent]
960
+ commands << ["├── in_keyword_loc: #{inspect_location(node.in_keyword_loc)}\n", indent]
961
+ commands << ["├── do_keyword_loc: #{inspect_location(node.do_keyword_loc)}\n", indent]
962
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
963
+ end
964
+
965
+ # Inspect a ForwardingArgumentsNode node.
966
+ def visit_forwarding_arguments_node(node)
967
+ commands << [inspect_node("ForwardingArgumentsNode", node), indent]
968
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
969
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
970
+ end
971
+
972
+ # Inspect a ForwardingParameterNode node.
973
+ def visit_forwarding_parameter_node(node)
974
+ commands << [inspect_node("ForwardingParameterNode", node), indent]
975
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
976
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
977
+ end
978
+
979
+ # Inspect a ForwardingSuperNode node.
980
+ def visit_forwarding_super_node(node)
981
+ commands << [inspect_node("ForwardingSuperNode", node), indent]
982
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
983
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
984
+ if (block = node.block).nil?
985
+ commands << ["└── block: ∅\n", indent]
986
+ else
987
+ commands << ["└── block:\n", indent]
988
+ commands << [block, "#{indent} "]
989
+ end
990
+ end
991
+
992
+ # Inspect a GlobalVariableAndWriteNode node.
993
+ def visit_global_variable_and_write_node(node)
994
+ commands << [inspect_node("GlobalVariableAndWriteNode", node), indent]
995
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
996
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
997
+ commands << ["├── name: #{node.name.inspect}\n", indent]
998
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
999
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1000
+ commands << ["└── value:\n", indent]
1001
+ commands << [node.value, "#{indent} "]
1002
+ end
1003
+
1004
+ # Inspect a GlobalVariableOperatorWriteNode node.
1005
+ def visit_global_variable_operator_write_node(node)
1006
+ commands << [inspect_node("GlobalVariableOperatorWriteNode", node), indent]
1007
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1008
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1009
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1010
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1011
+ commands << ["├── binary_operator_loc: #{inspect_location(node.binary_operator_loc)}\n", indent]
1012
+ commands << ["├── value:\n", indent]
1013
+ commands << [node.value, "#{indent}│ "]
1014
+ commands << ["└── binary_operator: #{node.binary_operator.inspect}\n", indent]
1015
+ end
1016
+
1017
+ # Inspect a GlobalVariableOrWriteNode node.
1018
+ def visit_global_variable_or_write_node(node)
1019
+ commands << [inspect_node("GlobalVariableOrWriteNode", node), indent]
1020
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1021
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1022
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1023
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1024
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1025
+ commands << ["└── value:\n", indent]
1026
+ commands << [node.value, "#{indent} "]
1027
+ end
1028
+
1029
+ # Inspect a GlobalVariableReadNode node.
1030
+ def visit_global_variable_read_node(node)
1031
+ commands << [inspect_node("GlobalVariableReadNode", node), indent]
1032
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1033
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1034
+ commands << ["└── name: #{node.name.inspect}\n", indent]
1035
+ end
1036
+
1037
+ # Inspect a GlobalVariableTargetNode node.
1038
+ def visit_global_variable_target_node(node)
1039
+ commands << [inspect_node("GlobalVariableTargetNode", node), indent]
1040
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1041
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1042
+ commands << ["└── name: #{node.name.inspect}\n", indent]
1043
+ end
1044
+
1045
+ # Inspect a GlobalVariableWriteNode node.
1046
+ def visit_global_variable_write_node(node)
1047
+ commands << [inspect_node("GlobalVariableWriteNode", node), indent]
1048
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1049
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1050
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1051
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1052
+ commands << ["├── value:\n", indent]
1053
+ commands << [node.value, "#{indent}│ "]
1054
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1055
+ end
1056
+
1057
+ # Inspect a HashNode node.
1058
+ def visit_hash_node(node)
1059
+ commands << [inspect_node("HashNode", node), indent]
1060
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1061
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1062
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1063
+ commands << ["├── elements: (length: #{(elements = node.elements).length})\n", indent]
1064
+ if elements.any?
1065
+ elements[0...-1].each do |child|
1066
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1067
+ commands << [child, "#{indent}│ │ "]
1068
+ end
1069
+ commands << [Replace.new("#{indent}│ └── "), indent]
1070
+ commands << [elements[-1], "#{indent}│ "]
1071
+ end
1072
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1073
+ end
1074
+
1075
+ # Inspect a HashPatternNode node.
1076
+ def visit_hash_pattern_node(node)
1077
+ commands << [inspect_node("HashPatternNode", node), indent]
1078
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1079
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1080
+ if (constant = node.constant).nil?
1081
+ commands << ["├── constant: ∅\n", indent]
1082
+ else
1083
+ commands << ["├── constant:\n", indent]
1084
+ commands << [constant, "#{indent}│ "]
1085
+ end
1086
+ commands << ["├── elements: (length: #{(elements = node.elements).length})\n", indent]
1087
+ if elements.any?
1088
+ elements[0...-1].each do |child|
1089
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1090
+ commands << [child, "#{indent}│ │ "]
1091
+ end
1092
+ commands << [Replace.new("#{indent}│ └── "), indent]
1093
+ commands << [elements[-1], "#{indent}│ "]
1094
+ end
1095
+ if (rest = node.rest).nil?
1096
+ commands << ["├── rest: ∅\n", indent]
1097
+ else
1098
+ commands << ["├── rest:\n", indent]
1099
+ commands << [rest, "#{indent}│ "]
1100
+ end
1101
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1102
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1103
+ end
1104
+
1105
+ # Inspect a IfNode node.
1106
+ def visit_if_node(node)
1107
+ commands << [inspect_node("IfNode", node), indent]
1108
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1109
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1110
+ commands << ["├── if_keyword_loc: #{inspect_location(node.if_keyword_loc)}\n", indent]
1111
+ commands << ["├── predicate:\n", indent]
1112
+ commands << [node.predicate, "#{indent}│ "]
1113
+ commands << ["├── then_keyword_loc: #{inspect_location(node.then_keyword_loc)}\n", indent]
1114
+ if (statements = node.statements).nil?
1115
+ commands << ["├── statements: ∅\n", indent]
1116
+ else
1117
+ commands << ["├── statements:\n", indent]
1118
+ commands << [statements, "#{indent}│ "]
1119
+ end
1120
+ if (subsequent = node.subsequent).nil?
1121
+ commands << ["├── subsequent: ∅\n", indent]
1122
+ else
1123
+ commands << ["├── subsequent:\n", indent]
1124
+ commands << [subsequent, "#{indent}│ "]
1125
+ end
1126
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
1127
+ end
1128
+
1129
+ # Inspect a ImaginaryNode node.
1130
+ def visit_imaginary_node(node)
1131
+ commands << [inspect_node("ImaginaryNode", node), indent]
1132
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1133
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1134
+ commands << ["└── numeric:\n", indent]
1135
+ commands << [node.numeric, "#{indent} "]
1136
+ end
1137
+
1138
+ # Inspect a ImplicitNode node.
1139
+ def visit_implicit_node(node)
1140
+ commands << [inspect_node("ImplicitNode", node), indent]
1141
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1142
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1143
+ commands << ["└── value:\n", indent]
1144
+ commands << [node.value, "#{indent} "]
1145
+ end
1146
+
1147
+ # Inspect a ImplicitRestNode node.
1148
+ def visit_implicit_rest_node(node)
1149
+ commands << [inspect_node("ImplicitRestNode", node), indent]
1150
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1151
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1152
+ end
1153
+
1154
+ # Inspect a InNode node.
1155
+ def visit_in_node(node)
1156
+ commands << [inspect_node("InNode", node), indent]
1157
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1158
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1159
+ commands << ["├── pattern:\n", indent]
1160
+ commands << [node.pattern, "#{indent}│ "]
1161
+ if (statements = node.statements).nil?
1162
+ commands << ["├── statements: ∅\n", indent]
1163
+ else
1164
+ commands << ["├── statements:\n", indent]
1165
+ commands << [statements, "#{indent}│ "]
1166
+ end
1167
+ commands << ["├── in_loc: #{inspect_location(node.in_loc)}\n", indent]
1168
+ commands << ["└── then_loc: #{inspect_location(node.then_loc)}\n", indent]
1169
+ end
1170
+
1171
+ # Inspect a IndexAndWriteNode node.
1172
+ def visit_index_and_write_node(node)
1173
+ commands << [inspect_node("IndexAndWriteNode", node), indent]
1174
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
1175
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1176
+ if (receiver = node.receiver).nil?
1177
+ commands << ["├── receiver: ∅\n", indent]
1178
+ else
1179
+ commands << ["├── receiver:\n", indent]
1180
+ commands << [receiver, "#{indent}│ "]
1181
+ end
1182
+ commands << ["├── call_operator_loc: #{inspect_location(node.call_operator_loc)}\n", indent]
1183
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1184
+ if (arguments = node.arguments).nil?
1185
+ commands << ["├── arguments: ∅\n", indent]
1186
+ else
1187
+ commands << ["├── arguments:\n", indent]
1188
+ commands << [arguments, "#{indent}│ "]
1189
+ end
1190
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1191
+ if (block = node.block).nil?
1192
+ commands << ["├── block: ∅\n", indent]
1193
+ else
1194
+ commands << ["├── block:\n", indent]
1195
+ commands << [block, "#{indent}│ "]
1196
+ end
1197
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1198
+ commands << ["└── value:\n", indent]
1199
+ commands << [node.value, "#{indent} "]
1200
+ end
1201
+
1202
+ # Inspect a IndexOperatorWriteNode node.
1203
+ def visit_index_operator_write_node(node)
1204
+ commands << [inspect_node("IndexOperatorWriteNode", node), indent]
1205
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
1206
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1207
+ if (receiver = node.receiver).nil?
1208
+ commands << ["├── receiver: ∅\n", indent]
1209
+ else
1210
+ commands << ["├── receiver:\n", indent]
1211
+ commands << [receiver, "#{indent}│ "]
1212
+ end
1213
+ commands << ["├── call_operator_loc: #{inspect_location(node.call_operator_loc)}\n", indent]
1214
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1215
+ if (arguments = node.arguments).nil?
1216
+ commands << ["├── arguments: ∅\n", indent]
1217
+ else
1218
+ commands << ["├── arguments:\n", indent]
1219
+ commands << [arguments, "#{indent}│ "]
1220
+ end
1221
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1222
+ if (block = node.block).nil?
1223
+ commands << ["├── block: ∅\n", indent]
1224
+ else
1225
+ commands << ["├── block:\n", indent]
1226
+ commands << [block, "#{indent}│ "]
1227
+ end
1228
+ commands << ["├── binary_operator: #{node.binary_operator.inspect}\n", indent]
1229
+ commands << ["├── binary_operator_loc: #{inspect_location(node.binary_operator_loc)}\n", indent]
1230
+ commands << ["└── value:\n", indent]
1231
+ commands << [node.value, "#{indent} "]
1232
+ end
1233
+
1234
+ # Inspect a IndexOrWriteNode node.
1235
+ def visit_index_or_write_node(node)
1236
+ commands << [inspect_node("IndexOrWriteNode", node), indent]
1237
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
1238
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1239
+ if (receiver = node.receiver).nil?
1240
+ commands << ["├── receiver: ∅\n", indent]
1241
+ else
1242
+ commands << ["├── receiver:\n", indent]
1243
+ commands << [receiver, "#{indent}│ "]
1244
+ end
1245
+ commands << ["├── call_operator_loc: #{inspect_location(node.call_operator_loc)}\n", indent]
1246
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1247
+ if (arguments = node.arguments).nil?
1248
+ commands << ["├── arguments: ∅\n", indent]
1249
+ else
1250
+ commands << ["├── arguments:\n", indent]
1251
+ commands << [arguments, "#{indent}│ "]
1252
+ end
1253
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1254
+ if (block = node.block).nil?
1255
+ commands << ["├── block: ∅\n", indent]
1256
+ else
1257
+ commands << ["├── block:\n", indent]
1258
+ commands << [block, "#{indent}│ "]
1259
+ end
1260
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1261
+ commands << ["└── value:\n", indent]
1262
+ commands << [node.value, "#{indent} "]
1263
+ end
1264
+
1265
+ # Inspect a IndexTargetNode node.
1266
+ def visit_index_target_node(node)
1267
+ commands << [inspect_node("IndexTargetNode", node), indent]
1268
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("safe_navigation" if node.safe_navigation?), ("variable_call" if node.variable_call?), ("attribute_write" if node.attribute_write?), ("ignore_visibility" if node.ignore_visibility?)].compact
1269
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1270
+ commands << ["├── receiver:\n", indent]
1271
+ commands << [node.receiver, "#{indent}│ "]
1272
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1273
+ if (arguments = node.arguments).nil?
1274
+ commands << ["├── arguments: ∅\n", indent]
1275
+ else
1276
+ commands << ["├── arguments:\n", indent]
1277
+ commands << [arguments, "#{indent}│ "]
1278
+ end
1279
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1280
+ if (block = node.block).nil?
1281
+ commands << ["└── block: ∅\n", indent]
1282
+ else
1283
+ commands << ["└── block:\n", indent]
1284
+ commands << [block, "#{indent} "]
1285
+ end
1286
+ end
1287
+
1288
+ # Inspect a InstanceVariableAndWriteNode node.
1289
+ def visit_instance_variable_and_write_node(node)
1290
+ commands << [inspect_node("InstanceVariableAndWriteNode", node), indent]
1291
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1292
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1293
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1294
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1295
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1296
+ commands << ["└── value:\n", indent]
1297
+ commands << [node.value, "#{indent} "]
1298
+ end
1299
+
1300
+ # Inspect a InstanceVariableOperatorWriteNode node.
1301
+ def visit_instance_variable_operator_write_node(node)
1302
+ commands << [inspect_node("InstanceVariableOperatorWriteNode", node), indent]
1303
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1304
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1305
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1306
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1307
+ commands << ["├── binary_operator_loc: #{inspect_location(node.binary_operator_loc)}\n", indent]
1308
+ commands << ["├── value:\n", indent]
1309
+ commands << [node.value, "#{indent}│ "]
1310
+ commands << ["└── binary_operator: #{node.binary_operator.inspect}\n", indent]
1311
+ end
1312
+
1313
+ # Inspect a InstanceVariableOrWriteNode node.
1314
+ def visit_instance_variable_or_write_node(node)
1315
+ commands << [inspect_node("InstanceVariableOrWriteNode", node), indent]
1316
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1317
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1318
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1319
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1320
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1321
+ commands << ["└── value:\n", indent]
1322
+ commands << [node.value, "#{indent} "]
1323
+ end
1324
+
1325
+ # Inspect a InstanceVariableReadNode node.
1326
+ def visit_instance_variable_read_node(node)
1327
+ commands << [inspect_node("InstanceVariableReadNode", node), indent]
1328
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1329
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1330
+ commands << ["└── name: #{node.name.inspect}\n", indent]
1331
+ end
1332
+
1333
+ # Inspect a InstanceVariableTargetNode node.
1334
+ def visit_instance_variable_target_node(node)
1335
+ commands << [inspect_node("InstanceVariableTargetNode", node), indent]
1336
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1337
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1338
+ commands << ["└── name: #{node.name.inspect}\n", indent]
1339
+ end
1340
+
1341
+ # Inspect a InstanceVariableWriteNode node.
1342
+ def visit_instance_variable_write_node(node)
1343
+ commands << [inspect_node("InstanceVariableWriteNode", node), indent]
1344
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1345
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1346
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1347
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1348
+ commands << ["├── value:\n", indent]
1349
+ commands << [node.value, "#{indent}│ "]
1350
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1351
+ end
1352
+
1353
+ # Inspect a IntegerNode node.
1354
+ def visit_integer_node(node)
1355
+ commands << [inspect_node("IntegerNode", node), indent]
1356
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("binary" if node.binary?), ("decimal" if node.decimal?), ("octal" if node.octal?), ("hexadecimal" if node.hexadecimal?)].compact
1357
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1358
+ commands << ["└── value: #{node.value.inspect}\n", indent]
1359
+ end
1360
+
1361
+ # Inspect a InterpolatedMatchLastLineNode node.
1362
+ def visit_interpolated_match_last_line_node(node)
1363
+ commands << [inspect_node("InterpolatedMatchLastLineNode", node), indent]
1364
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("ignore_case" if node.ignore_case?), ("extended" if node.extended?), ("multi_line" if node.multi_line?), ("once" if node.once?), ("euc_jp" if node.euc_jp?), ("ascii_8bit" if node.ascii_8bit?), ("windows_31j" if node.windows_31j?), ("utf_8" if node.utf_8?), ("forced_utf8_encoding" if node.forced_utf8_encoding?), ("forced_binary_encoding" if node.forced_binary_encoding?), ("forced_us_ascii_encoding" if node.forced_us_ascii_encoding?)].compact
1365
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1366
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1367
+ commands << ["├── parts: (length: #{(parts = node.parts).length})\n", indent]
1368
+ if parts.any?
1369
+ parts[0...-1].each do |child|
1370
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1371
+ commands << [child, "#{indent}│ │ "]
1372
+ end
1373
+ commands << [Replace.new("#{indent}│ └── "), indent]
1374
+ commands << [parts[-1], "#{indent}│ "]
1375
+ end
1376
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1377
+ end
1378
+
1379
+ # Inspect a InterpolatedRegularExpressionNode node.
1380
+ def visit_interpolated_regular_expression_node(node)
1381
+ commands << [inspect_node("InterpolatedRegularExpressionNode", node), indent]
1382
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("ignore_case" if node.ignore_case?), ("extended" if node.extended?), ("multi_line" if node.multi_line?), ("once" if node.once?), ("euc_jp" if node.euc_jp?), ("ascii_8bit" if node.ascii_8bit?), ("windows_31j" if node.windows_31j?), ("utf_8" if node.utf_8?), ("forced_utf8_encoding" if node.forced_utf8_encoding?), ("forced_binary_encoding" if node.forced_binary_encoding?), ("forced_us_ascii_encoding" if node.forced_us_ascii_encoding?)].compact
1383
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1384
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1385
+ commands << ["├── parts: (length: #{(parts = node.parts).length})\n", indent]
1386
+ if parts.any?
1387
+ parts[0...-1].each do |child|
1388
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1389
+ commands << [child, "#{indent}│ │ "]
1390
+ end
1391
+ commands << [Replace.new("#{indent}│ └── "), indent]
1392
+ commands << [parts[-1], "#{indent}│ "]
1393
+ end
1394
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1395
+ end
1396
+
1397
+ # Inspect a InterpolatedStringNode node.
1398
+ def visit_interpolated_string_node(node)
1399
+ commands << [inspect_node("InterpolatedStringNode", node), indent]
1400
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("frozen" if node.frozen?), ("mutable" if node.mutable?)].compact
1401
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1402
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1403
+ commands << ["├── parts: (length: #{(parts = node.parts).length})\n", indent]
1404
+ if parts.any?
1405
+ parts[0...-1].each do |child|
1406
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1407
+ commands << [child, "#{indent}│ │ "]
1408
+ end
1409
+ commands << [Replace.new("#{indent}│ └── "), indent]
1410
+ commands << [parts[-1], "#{indent}│ "]
1411
+ end
1412
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1413
+ end
1414
+
1415
+ # Inspect a InterpolatedSymbolNode node.
1416
+ def visit_interpolated_symbol_node(node)
1417
+ commands << [inspect_node("InterpolatedSymbolNode", node), indent]
1418
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1419
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1420
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1421
+ commands << ["├── parts: (length: #{(parts = node.parts).length})\n", indent]
1422
+ if parts.any?
1423
+ parts[0...-1].each do |child|
1424
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1425
+ commands << [child, "#{indent}│ │ "]
1426
+ end
1427
+ commands << [Replace.new("#{indent}│ └── "), indent]
1428
+ commands << [parts[-1], "#{indent}│ "]
1429
+ end
1430
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1431
+ end
1432
+
1433
+ # Inspect a InterpolatedXStringNode node.
1434
+ def visit_interpolated_x_string_node(node)
1435
+ commands << [inspect_node("InterpolatedXStringNode", node), indent]
1436
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1437
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1438
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1439
+ commands << ["├── parts: (length: #{(parts = node.parts).length})\n", indent]
1440
+ if parts.any?
1441
+ parts[0...-1].each do |child|
1442
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1443
+ commands << [child, "#{indent}│ │ "]
1444
+ end
1445
+ commands << [Replace.new("#{indent}│ └── "), indent]
1446
+ commands << [parts[-1], "#{indent}│ "]
1447
+ end
1448
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1449
+ end
1450
+
1451
+ # Inspect a ItLocalVariableReadNode node.
1452
+ def visit_it_local_variable_read_node(node)
1453
+ commands << [inspect_node("ItLocalVariableReadNode", node), indent]
1454
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1455
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1456
+ end
1457
+
1458
+ # Inspect a ItParametersNode node.
1459
+ def visit_it_parameters_node(node)
1460
+ commands << [inspect_node("ItParametersNode", node), indent]
1461
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1462
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1463
+ end
1464
+
1465
+ # Inspect a KeywordHashNode node.
1466
+ def visit_keyword_hash_node(node)
1467
+ commands << [inspect_node("KeywordHashNode", node), indent]
1468
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("symbol_keys" if node.symbol_keys?)].compact
1469
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1470
+ commands << ["└── elements: (length: #{(elements = node.elements).length})\n", indent]
1471
+ if elements.any?
1472
+ elements[0...-1].each do |child|
1473
+ commands << [Replace.new("#{indent} ├── "), indent]
1474
+ commands << [child, "#{indent} │ "]
1475
+ end
1476
+ commands << [Replace.new("#{indent} └── "), indent]
1477
+ commands << [elements[-1], "#{indent} "]
1478
+ end
1479
+ end
1480
+
1481
+ # Inspect a KeywordRestParameterNode node.
1482
+ def visit_keyword_rest_parameter_node(node)
1483
+ commands << [inspect_node("KeywordRestParameterNode", node), indent]
1484
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("repeated_parameter" if node.repeated_parameter?)].compact
1485
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1486
+ if (name = node.name).nil?
1487
+ commands << ["├── name: ∅\n", indent]
1488
+ else
1489
+ commands << ["├── name: #{name.inspect}\n", indent]
1490
+ end
1491
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1492
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1493
+ end
1494
+
1495
+ # Inspect a LambdaNode node.
1496
+ def visit_lambda_node(node)
1497
+ commands << [inspect_node("LambdaNode", node), indent]
1498
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1499
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1500
+ commands << ["├── locals: #{node.locals.inspect}\n", indent]
1501
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1502
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1503
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1504
+ if (parameters = node.parameters).nil?
1505
+ commands << ["├── parameters: ∅\n", indent]
1506
+ else
1507
+ commands << ["├── parameters:\n", indent]
1508
+ commands << [parameters, "#{indent}│ "]
1509
+ end
1510
+ if (body = node.body).nil?
1511
+ commands << ["└── body: ∅\n", indent]
1512
+ else
1513
+ commands << ["└── body:\n", indent]
1514
+ commands << [body, "#{indent} "]
1515
+ end
1516
+ end
1517
+
1518
+ # Inspect a LocalVariableAndWriteNode node.
1519
+ def visit_local_variable_and_write_node(node)
1520
+ commands << [inspect_node("LocalVariableAndWriteNode", node), indent]
1521
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1522
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1523
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1524
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1525
+ commands << ["├── value:\n", indent]
1526
+ commands << [node.value, "#{indent}│ "]
1527
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1528
+ commands << ["└── depth: #{node.depth.inspect}\n", indent]
1529
+ end
1530
+
1531
+ # Inspect a LocalVariableOperatorWriteNode node.
1532
+ def visit_local_variable_operator_write_node(node)
1533
+ commands << [inspect_node("LocalVariableOperatorWriteNode", node), indent]
1534
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1535
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1536
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1537
+ commands << ["├── binary_operator_loc: #{inspect_location(node.binary_operator_loc)}\n", indent]
1538
+ commands << ["├── value:\n", indent]
1539
+ commands << [node.value, "#{indent}│ "]
1540
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1541
+ commands << ["├── binary_operator: #{node.binary_operator.inspect}\n", indent]
1542
+ commands << ["└── depth: #{node.depth.inspect}\n", indent]
1543
+ end
1544
+
1545
+ # Inspect a LocalVariableOrWriteNode node.
1546
+ def visit_local_variable_or_write_node(node)
1547
+ commands << [inspect_node("LocalVariableOrWriteNode", node), indent]
1548
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1549
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1550
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1551
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1552
+ commands << ["├── value:\n", indent]
1553
+ commands << [node.value, "#{indent}│ "]
1554
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1555
+ commands << ["└── depth: #{node.depth.inspect}\n", indent]
1556
+ end
1557
+
1558
+ # Inspect a LocalVariableReadNode node.
1559
+ def visit_local_variable_read_node(node)
1560
+ commands << [inspect_node("LocalVariableReadNode", node), indent]
1561
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1562
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1563
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1564
+ commands << ["└── depth: #{node.depth.inspect}\n", indent]
1565
+ end
1566
+
1567
+ # Inspect a LocalVariableTargetNode node.
1568
+ def visit_local_variable_target_node(node)
1569
+ commands << [inspect_node("LocalVariableTargetNode", node), indent]
1570
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1571
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1572
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1573
+ commands << ["└── depth: #{node.depth.inspect}\n", indent]
1574
+ end
1575
+
1576
+ # Inspect a LocalVariableWriteNode node.
1577
+ def visit_local_variable_write_node(node)
1578
+ commands << [inspect_node("LocalVariableWriteNode", node), indent]
1579
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1580
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1581
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1582
+ commands << ["├── depth: #{node.depth.inspect}\n", indent]
1583
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1584
+ commands << ["├── value:\n", indent]
1585
+ commands << [node.value, "#{indent}│ "]
1586
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1587
+ end
1588
+
1589
+ # Inspect a MatchLastLineNode node.
1590
+ def visit_match_last_line_node(node)
1591
+ commands << [inspect_node("MatchLastLineNode", node), indent]
1592
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("ignore_case" if node.ignore_case?), ("extended" if node.extended?), ("multi_line" if node.multi_line?), ("once" if node.once?), ("euc_jp" if node.euc_jp?), ("ascii_8bit" if node.ascii_8bit?), ("windows_31j" if node.windows_31j?), ("utf_8" if node.utf_8?), ("forced_utf8_encoding" if node.forced_utf8_encoding?), ("forced_binary_encoding" if node.forced_binary_encoding?), ("forced_us_ascii_encoding" if node.forced_us_ascii_encoding?)].compact
1593
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1594
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1595
+ commands << ["├── content_loc: #{inspect_location(node.content_loc)}\n", indent]
1596
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1597
+ commands << ["└── unescaped: #{node.unescaped.inspect}\n", indent]
1598
+ end
1599
+
1600
+ # Inspect a MatchPredicateNode node.
1601
+ def visit_match_predicate_node(node)
1602
+ commands << [inspect_node("MatchPredicateNode", node), indent]
1603
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1604
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1605
+ commands << ["├── value:\n", indent]
1606
+ commands << [node.value, "#{indent}│ "]
1607
+ commands << ["├── pattern:\n", indent]
1608
+ commands << [node.pattern, "#{indent}│ "]
1609
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1610
+ end
1611
+
1612
+ # Inspect a MatchRequiredNode node.
1613
+ def visit_match_required_node(node)
1614
+ commands << [inspect_node("MatchRequiredNode", node), indent]
1615
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1616
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1617
+ commands << ["├── value:\n", indent]
1618
+ commands << [node.value, "#{indent}│ "]
1619
+ commands << ["├── pattern:\n", indent]
1620
+ commands << [node.pattern, "#{indent}│ "]
1621
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1622
+ end
1623
+
1624
+ # Inspect a MatchWriteNode node.
1625
+ def visit_match_write_node(node)
1626
+ commands << [inspect_node("MatchWriteNode", node), indent]
1627
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1628
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1629
+ commands << ["├── call:\n", indent]
1630
+ commands << [node.call, "#{indent}│ "]
1631
+ commands << ["└── targets: (length: #{(targets = node.targets).length})\n", indent]
1632
+ if targets.any?
1633
+ targets[0...-1].each do |child|
1634
+ commands << [Replace.new("#{indent} ├── "), indent]
1635
+ commands << [child, "#{indent} │ "]
1636
+ end
1637
+ commands << [Replace.new("#{indent} └── "), indent]
1638
+ commands << [targets[-1], "#{indent} "]
1639
+ end
1640
+ end
1641
+
1642
+ # Inspect a MissingNode node.
1643
+ def visit_missing_node(node)
1644
+ commands << [inspect_node("MissingNode", node), indent]
1645
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1646
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1647
+ end
1648
+
1649
+ # Inspect a ModuleNode node.
1650
+ def visit_module_node(node)
1651
+ commands << [inspect_node("ModuleNode", node), indent]
1652
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1653
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1654
+ commands << ["├── locals: #{node.locals.inspect}\n", indent]
1655
+ commands << ["├── module_keyword_loc: #{inspect_location(node.module_keyword_loc)}\n", indent]
1656
+ commands << ["├── constant_path:\n", indent]
1657
+ commands << [node.constant_path, "#{indent}│ "]
1658
+ if (body = node.body).nil?
1659
+ commands << ["├── body: ∅\n", indent]
1660
+ else
1661
+ commands << ["├── body:\n", indent]
1662
+ commands << [body, "#{indent}│ "]
1663
+ end
1664
+ commands << ["├── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
1665
+ commands << ["└── name: #{node.name.inspect}\n", indent]
1666
+ end
1667
+
1668
+ # Inspect a MultiTargetNode node.
1669
+ def visit_multi_target_node(node)
1670
+ commands << [inspect_node("MultiTargetNode", node), indent]
1671
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1672
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1673
+ commands << ["├── lefts: (length: #{(lefts = node.lefts).length})\n", indent]
1674
+ if lefts.any?
1675
+ lefts[0...-1].each do |child|
1676
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1677
+ commands << [child, "#{indent}│ │ "]
1678
+ end
1679
+ commands << [Replace.new("#{indent}│ └── "), indent]
1680
+ commands << [lefts[-1], "#{indent}│ "]
1681
+ end
1682
+ if (rest = node.rest).nil?
1683
+ commands << ["├── rest: ∅\n", indent]
1684
+ else
1685
+ commands << ["├── rest:\n", indent]
1686
+ commands << [rest, "#{indent}│ "]
1687
+ end
1688
+ commands << ["├── rights: (length: #{(rights = node.rights).length})\n", indent]
1689
+ if rights.any?
1690
+ rights[0...-1].each do |child|
1691
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1692
+ commands << [child, "#{indent}│ │ "]
1693
+ end
1694
+ commands << [Replace.new("#{indent}│ └── "), indent]
1695
+ commands << [rights[-1], "#{indent}│ "]
1696
+ end
1697
+ commands << ["├── lparen_loc: #{inspect_location(node.lparen_loc)}\n", indent]
1698
+ commands << ["└── rparen_loc: #{inspect_location(node.rparen_loc)}\n", indent]
1699
+ end
1700
+
1701
+ # Inspect a MultiWriteNode node.
1702
+ def visit_multi_write_node(node)
1703
+ commands << [inspect_node("MultiWriteNode", node), indent]
1704
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1705
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1706
+ commands << ["├── lefts: (length: #{(lefts = node.lefts).length})\n", indent]
1707
+ if lefts.any?
1708
+ lefts[0...-1].each do |child|
1709
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1710
+ commands << [child, "#{indent}│ │ "]
1711
+ end
1712
+ commands << [Replace.new("#{indent}│ └── "), indent]
1713
+ commands << [lefts[-1], "#{indent}│ "]
1714
+ end
1715
+ if (rest = node.rest).nil?
1716
+ commands << ["├── rest: ∅\n", indent]
1717
+ else
1718
+ commands << ["├── rest:\n", indent]
1719
+ commands << [rest, "#{indent}│ "]
1720
+ end
1721
+ commands << ["├── rights: (length: #{(rights = node.rights).length})\n", indent]
1722
+ if rights.any?
1723
+ rights[0...-1].each do |child|
1724
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1725
+ commands << [child, "#{indent}│ │ "]
1726
+ end
1727
+ commands << [Replace.new("#{indent}│ └── "), indent]
1728
+ commands << [rights[-1], "#{indent}│ "]
1729
+ end
1730
+ commands << ["├── lparen_loc: #{inspect_location(node.lparen_loc)}\n", indent]
1731
+ commands << ["├── rparen_loc: #{inspect_location(node.rparen_loc)}\n", indent]
1732
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1733
+ commands << ["└── value:\n", indent]
1734
+ commands << [node.value, "#{indent} "]
1735
+ end
1736
+
1737
+ # Inspect a NextNode node.
1738
+ def visit_next_node(node)
1739
+ commands << [inspect_node("NextNode", node), indent]
1740
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1741
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1742
+ if (arguments = node.arguments).nil?
1743
+ commands << ["├── arguments: ∅\n", indent]
1744
+ else
1745
+ commands << ["├── arguments:\n", indent]
1746
+ commands << [arguments, "#{indent}│ "]
1747
+ end
1748
+ commands << ["└── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
1749
+ end
1750
+
1751
+ # Inspect a NilNode node.
1752
+ def visit_nil_node(node)
1753
+ commands << [inspect_node("NilNode", node), indent]
1754
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1755
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1756
+ end
1757
+
1758
+ # Inspect a NoKeywordsParameterNode node.
1759
+ def visit_no_keywords_parameter_node(node)
1760
+ commands << [inspect_node("NoKeywordsParameterNode", node), indent]
1761
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1762
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1763
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1764
+ commands << ["└── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
1765
+ end
1766
+
1767
+ # Inspect a NumberedParametersNode node.
1768
+ def visit_numbered_parameters_node(node)
1769
+ commands << [inspect_node("NumberedParametersNode", node), indent]
1770
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1771
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1772
+ commands << ["└── maximum: #{node.maximum.inspect}\n", indent]
1773
+ end
1774
+
1775
+ # Inspect a NumberedReferenceReadNode node.
1776
+ def visit_numbered_reference_read_node(node)
1777
+ commands << [inspect_node("NumberedReferenceReadNode", node), indent]
1778
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1779
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1780
+ commands << ["└── number: #{node.number.inspect}\n", indent]
1781
+ end
1782
+
1783
+ # Inspect a OptionalKeywordParameterNode node.
1784
+ def visit_optional_keyword_parameter_node(node)
1785
+ commands << [inspect_node("OptionalKeywordParameterNode", node), indent]
1786
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("repeated_parameter" if node.repeated_parameter?)].compact
1787
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1788
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1789
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1790
+ commands << ["└── value:\n", indent]
1791
+ commands << [node.value, "#{indent} "]
1792
+ end
1793
+
1794
+ # Inspect a OptionalParameterNode node.
1795
+ def visit_optional_parameter_node(node)
1796
+ commands << [inspect_node("OptionalParameterNode", node), indent]
1797
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("repeated_parameter" if node.repeated_parameter?)].compact
1798
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1799
+ commands << ["├── name: #{node.name.inspect}\n", indent]
1800
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
1801
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1802
+ commands << ["└── value:\n", indent]
1803
+ commands << [node.value, "#{indent} "]
1804
+ end
1805
+
1806
+ # Inspect a OrNode node.
1807
+ def visit_or_node(node)
1808
+ commands << [inspect_node("OrNode", node), indent]
1809
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1810
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1811
+ commands << ["├── left:\n", indent]
1812
+ commands << [node.left, "#{indent}│ "]
1813
+ commands << ["├── right:\n", indent]
1814
+ commands << [node.right, "#{indent}│ "]
1815
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1816
+ end
1817
+
1818
+ # Inspect a ParametersNode node.
1819
+ def visit_parameters_node(node)
1820
+ commands << [inspect_node("ParametersNode", node), indent]
1821
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1822
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1823
+ commands << ["├── requireds: (length: #{(requireds = node.requireds).length})\n", indent]
1824
+ if requireds.any?
1825
+ requireds[0...-1].each do |child|
1826
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1827
+ commands << [child, "#{indent}│ │ "]
1828
+ end
1829
+ commands << [Replace.new("#{indent}│ └── "), indent]
1830
+ commands << [requireds[-1], "#{indent}│ "]
1831
+ end
1832
+ commands << ["├── optionals: (length: #{(optionals = node.optionals).length})\n", indent]
1833
+ if optionals.any?
1834
+ optionals[0...-1].each do |child|
1835
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1836
+ commands << [child, "#{indent}│ │ "]
1837
+ end
1838
+ commands << [Replace.new("#{indent}│ └── "), indent]
1839
+ commands << [optionals[-1], "#{indent}│ "]
1840
+ end
1841
+ if (rest = node.rest).nil?
1842
+ commands << ["├── rest: ∅\n", indent]
1843
+ else
1844
+ commands << ["├── rest:\n", indent]
1845
+ commands << [rest, "#{indent}│ "]
1846
+ end
1847
+ commands << ["├── posts: (length: #{(posts = node.posts).length})\n", indent]
1848
+ if posts.any?
1849
+ posts[0...-1].each do |child|
1850
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1851
+ commands << [child, "#{indent}│ │ "]
1852
+ end
1853
+ commands << [Replace.new("#{indent}│ └── "), indent]
1854
+ commands << [posts[-1], "#{indent}│ "]
1855
+ end
1856
+ commands << ["├── keywords: (length: #{(keywords = node.keywords).length})\n", indent]
1857
+ if keywords.any?
1858
+ keywords[0...-1].each do |child|
1859
+ commands << [Replace.new("#{indent}│ ├── "), indent]
1860
+ commands << [child, "#{indent}│ │ "]
1861
+ end
1862
+ commands << [Replace.new("#{indent}│ └── "), indent]
1863
+ commands << [keywords[-1], "#{indent}│ "]
1864
+ end
1865
+ if (keyword_rest = node.keyword_rest).nil?
1866
+ commands << ["├── keyword_rest: ∅\n", indent]
1867
+ else
1868
+ commands << ["├── keyword_rest:\n", indent]
1869
+ commands << [keyword_rest, "#{indent}│ "]
1870
+ end
1871
+ if (block = node.block).nil?
1872
+ commands << ["└── block: ∅\n", indent]
1873
+ else
1874
+ commands << ["└── block:\n", indent]
1875
+ commands << [block, "#{indent} "]
1876
+ end
1877
+ end
1878
+
1879
+ # Inspect a ParenthesesNode node.
1880
+ def visit_parentheses_node(node)
1881
+ commands << [inspect_node("ParenthesesNode", node), indent]
1882
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("multiple_statements" if node.multiple_statements?)].compact
1883
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1884
+ if (body = node.body).nil?
1885
+ commands << ["├── body: ∅\n", indent]
1886
+ else
1887
+ commands << ["├── body:\n", indent]
1888
+ commands << [body, "#{indent}│ "]
1889
+ end
1890
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1891
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1892
+ end
1893
+
1894
+ # Inspect a PinnedExpressionNode node.
1895
+ def visit_pinned_expression_node(node)
1896
+ commands << [inspect_node("PinnedExpressionNode", node), indent]
1897
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1898
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1899
+ commands << ["├── expression:\n", indent]
1900
+ commands << [node.expression, "#{indent}│ "]
1901
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1902
+ commands << ["├── lparen_loc: #{inspect_location(node.lparen_loc)}\n", indent]
1903
+ commands << ["└── rparen_loc: #{inspect_location(node.rparen_loc)}\n", indent]
1904
+ end
1905
+
1906
+ # Inspect a PinnedVariableNode node.
1907
+ def visit_pinned_variable_node(node)
1908
+ commands << [inspect_node("PinnedVariableNode", node), indent]
1909
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1910
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1911
+ commands << ["├── variable:\n", indent]
1912
+ commands << [node.variable, "#{indent}│ "]
1913
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1914
+ end
1915
+
1916
+ # Inspect a PostExecutionNode node.
1917
+ def visit_post_execution_node(node)
1918
+ commands << [inspect_node("PostExecutionNode", node), indent]
1919
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1920
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1921
+ if (statements = node.statements).nil?
1922
+ commands << ["├── statements: ∅\n", indent]
1923
+ else
1924
+ commands << ["├── statements:\n", indent]
1925
+ commands << [statements, "#{indent}│ "]
1926
+ end
1927
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
1928
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1929
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1930
+ end
1931
+
1932
+ # Inspect a PreExecutionNode node.
1933
+ def visit_pre_execution_node(node)
1934
+ commands << [inspect_node("PreExecutionNode", node), indent]
1935
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1936
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1937
+ if (statements = node.statements).nil?
1938
+ commands << ["├── statements: ∅\n", indent]
1939
+ else
1940
+ commands << ["├── statements:\n", indent]
1941
+ commands << [statements, "#{indent}│ "]
1942
+ end
1943
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
1944
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
1945
+ commands << ["└── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
1946
+ end
1947
+
1948
+ # Inspect a ProgramNode node.
1949
+ def visit_program_node(node)
1950
+ commands << [inspect_node("ProgramNode", node), indent]
1951
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1952
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1953
+ commands << ["├── locals: #{node.locals.inspect}\n", indent]
1954
+ commands << ["└── statements:\n", indent]
1955
+ commands << [node.statements, "#{indent} "]
1956
+ end
1957
+
1958
+ # Inspect a RangeNode node.
1959
+ def visit_range_node(node)
1960
+ commands << [inspect_node("RangeNode", node), indent]
1961
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("exclude_end" if node.exclude_end?)].compact
1962
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1963
+ if (left = node.left).nil?
1964
+ commands << ["├── left: ∅\n", indent]
1965
+ else
1966
+ commands << ["├── left:\n", indent]
1967
+ commands << [left, "#{indent}│ "]
1968
+ end
1969
+ if (right = node.right).nil?
1970
+ commands << ["├── right: ∅\n", indent]
1971
+ else
1972
+ commands << ["├── right:\n", indent]
1973
+ commands << [right, "#{indent}│ "]
1974
+ end
1975
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
1976
+ end
1977
+
1978
+ # Inspect a RationalNode node.
1979
+ def visit_rational_node(node)
1980
+ commands << [inspect_node("RationalNode", node), indent]
1981
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("binary" if node.binary?), ("decimal" if node.decimal?), ("octal" if node.octal?), ("hexadecimal" if node.hexadecimal?)].compact
1982
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1983
+ commands << ["├── numerator: #{node.numerator.inspect}\n", indent]
1984
+ commands << ["└── denominator: #{node.denominator.inspect}\n", indent]
1985
+ end
1986
+
1987
+ # Inspect a RedoNode node.
1988
+ def visit_redo_node(node)
1989
+ commands << [inspect_node("RedoNode", node), indent]
1990
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
1991
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1992
+ end
1993
+
1994
+ # Inspect a RegularExpressionNode node.
1995
+ def visit_regular_expression_node(node)
1996
+ commands << [inspect_node("RegularExpressionNode", node), indent]
1997
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("ignore_case" if node.ignore_case?), ("extended" if node.extended?), ("multi_line" if node.multi_line?), ("once" if node.once?), ("euc_jp" if node.euc_jp?), ("ascii_8bit" if node.ascii_8bit?), ("windows_31j" if node.windows_31j?), ("utf_8" if node.utf_8?), ("forced_utf8_encoding" if node.forced_utf8_encoding?), ("forced_binary_encoding" if node.forced_binary_encoding?), ("forced_us_ascii_encoding" if node.forced_us_ascii_encoding?)].compact
1998
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
1999
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
2000
+ commands << ["├── content_loc: #{inspect_location(node.content_loc)}\n", indent]
2001
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
2002
+ commands << ["└── unescaped: #{node.unescaped.inspect}\n", indent]
2003
+ end
2004
+
2005
+ # Inspect a RequiredKeywordParameterNode node.
2006
+ def visit_required_keyword_parameter_node(node)
2007
+ commands << [inspect_node("RequiredKeywordParameterNode", node), indent]
2008
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("repeated_parameter" if node.repeated_parameter?)].compact
2009
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2010
+ commands << ["├── name: #{node.name.inspect}\n", indent]
2011
+ commands << ["└── name_loc: #{inspect_location(node.name_loc)}\n", indent]
2012
+ end
2013
+
2014
+ # Inspect a RequiredParameterNode node.
2015
+ def visit_required_parameter_node(node)
2016
+ commands << [inspect_node("RequiredParameterNode", node), indent]
2017
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("repeated_parameter" if node.repeated_parameter?)].compact
2018
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2019
+ commands << ["└── name: #{node.name.inspect}\n", indent]
2020
+ end
2021
+
2022
+ # Inspect a RescueModifierNode node.
2023
+ def visit_rescue_modifier_node(node)
2024
+ commands << [inspect_node("RescueModifierNode", node), indent]
2025
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2026
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2027
+ commands << ["├── expression:\n", indent]
2028
+ commands << [node.expression, "#{indent}│ "]
2029
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2030
+ commands << ["└── rescue_expression:\n", indent]
2031
+ commands << [node.rescue_expression, "#{indent} "]
2032
+ end
2033
+
2034
+ # Inspect a RescueNode node.
2035
+ def visit_rescue_node(node)
2036
+ commands << [inspect_node("RescueNode", node), indent]
2037
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2038
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2039
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2040
+ commands << ["├── exceptions: (length: #{(exceptions = node.exceptions).length})\n", indent]
2041
+ if exceptions.any?
2042
+ exceptions[0...-1].each do |child|
2043
+ commands << [Replace.new("#{indent}│ ├── "), indent]
2044
+ commands << [child, "#{indent}│ │ "]
2045
+ end
2046
+ commands << [Replace.new("#{indent}│ └── "), indent]
2047
+ commands << [exceptions[-1], "#{indent}│ "]
2048
+ end
2049
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
2050
+ if (reference = node.reference).nil?
2051
+ commands << ["├── reference: ∅\n", indent]
2052
+ else
2053
+ commands << ["├── reference:\n", indent]
2054
+ commands << [reference, "#{indent}│ "]
2055
+ end
2056
+ commands << ["├── then_keyword_loc: #{inspect_location(node.then_keyword_loc)}\n", indent]
2057
+ if (statements = node.statements).nil?
2058
+ commands << ["├── statements: ∅\n", indent]
2059
+ else
2060
+ commands << ["├── statements:\n", indent]
2061
+ commands << [statements, "#{indent}│ "]
2062
+ end
2063
+ if (subsequent = node.subsequent).nil?
2064
+ commands << ["└── subsequent: ∅\n", indent]
2065
+ else
2066
+ commands << ["└── subsequent:\n", indent]
2067
+ commands << [subsequent, "#{indent} "]
2068
+ end
2069
+ end
2070
+
2071
+ # Inspect a RestParameterNode node.
2072
+ def visit_rest_parameter_node(node)
2073
+ commands << [inspect_node("RestParameterNode", node), indent]
2074
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("repeated_parameter" if node.repeated_parameter?)].compact
2075
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2076
+ if (name = node.name).nil?
2077
+ commands << ["├── name: ∅\n", indent]
2078
+ else
2079
+ commands << ["├── name: #{name.inspect}\n", indent]
2080
+ end
2081
+ commands << ["├── name_loc: #{inspect_location(node.name_loc)}\n", indent]
2082
+ commands << ["└── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
2083
+ end
2084
+
2085
+ # Inspect a RetryNode node.
2086
+ def visit_retry_node(node)
2087
+ commands << [inspect_node("RetryNode", node), indent]
2088
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2089
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2090
+ end
2091
+
2092
+ # Inspect a ReturnNode node.
2093
+ def visit_return_node(node)
2094
+ commands << [inspect_node("ReturnNode", node), indent]
2095
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2096
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2097
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2098
+ if (arguments = node.arguments).nil?
2099
+ commands << ["└── arguments: ∅\n", indent]
2100
+ else
2101
+ commands << ["└── arguments:\n", indent]
2102
+ commands << [arguments, "#{indent} "]
2103
+ end
2104
+ end
2105
+
2106
+ # Inspect a SelfNode node.
2107
+ def visit_self_node(node)
2108
+ commands << [inspect_node("SelfNode", node), indent]
2109
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2110
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2111
+ end
2112
+
2113
+ # Inspect a ShareableConstantNode node.
2114
+ def visit_shareable_constant_node(node)
2115
+ commands << [inspect_node("ShareableConstantNode", node), indent]
2116
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("literal" if node.literal?), ("experimental_everything" if node.experimental_everything?), ("experimental_copy" if node.experimental_copy?)].compact
2117
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2118
+ commands << ["└── write:\n", indent]
2119
+ commands << [node.write, "#{indent} "]
2120
+ end
2121
+
2122
+ # Inspect a SingletonClassNode node.
2123
+ def visit_singleton_class_node(node)
2124
+ commands << [inspect_node("SingletonClassNode", node), indent]
2125
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2126
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2127
+ commands << ["├── locals: #{node.locals.inspect}\n", indent]
2128
+ commands << ["├── class_keyword_loc: #{inspect_location(node.class_keyword_loc)}\n", indent]
2129
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
2130
+ commands << ["├── expression:\n", indent]
2131
+ commands << [node.expression, "#{indent}│ "]
2132
+ if (body = node.body).nil?
2133
+ commands << ["├── body: ∅\n", indent]
2134
+ else
2135
+ commands << ["├── body:\n", indent]
2136
+ commands << [body, "#{indent}│ "]
2137
+ end
2138
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
2139
+ end
2140
+
2141
+ # Inspect a SourceEncodingNode node.
2142
+ def visit_source_encoding_node(node)
2143
+ commands << [inspect_node("SourceEncodingNode", node), indent]
2144
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2145
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2146
+ end
2147
+
2148
+ # Inspect a SourceFileNode node.
2149
+ def visit_source_file_node(node)
2150
+ commands << [inspect_node("SourceFileNode", node), indent]
2151
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("forced_utf8_encoding" if node.forced_utf8_encoding?), ("forced_binary_encoding" if node.forced_binary_encoding?), ("frozen" if node.frozen?), ("mutable" if node.mutable?)].compact
2152
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2153
+ commands << ["└── filepath: #{node.filepath.inspect}\n", indent]
2154
+ end
2155
+
2156
+ # Inspect a SourceLineNode node.
2157
+ def visit_source_line_node(node)
2158
+ commands << [inspect_node("SourceLineNode", node), indent]
2159
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2160
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2161
+ end
2162
+
2163
+ # Inspect a SplatNode node.
2164
+ def visit_splat_node(node)
2165
+ commands << [inspect_node("SplatNode", node), indent]
2166
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2167
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2168
+ commands << ["├── operator_loc: #{inspect_location(node.operator_loc)}\n", indent]
2169
+ if (expression = node.expression).nil?
2170
+ commands << ["└── expression: ∅\n", indent]
2171
+ else
2172
+ commands << ["└── expression:\n", indent]
2173
+ commands << [expression, "#{indent} "]
2174
+ end
2175
+ end
2176
+
2177
+ # Inspect a StatementsNode node.
2178
+ def visit_statements_node(node)
2179
+ commands << [inspect_node("StatementsNode", node), indent]
2180
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2181
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2182
+ commands << ["└── body: (length: #{(body = node.body).length})\n", indent]
2183
+ if body.any?
2184
+ body[0...-1].each do |child|
2185
+ commands << [Replace.new("#{indent} ├── "), indent]
2186
+ commands << [child, "#{indent} │ "]
2187
+ end
2188
+ commands << [Replace.new("#{indent} └── "), indent]
2189
+ commands << [body[-1], "#{indent} "]
2190
+ end
2191
+ end
2192
+
2193
+ # Inspect a StringNode node.
2194
+ def visit_string_node(node)
2195
+ commands << [inspect_node("StringNode", node), indent]
2196
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("forced_utf8_encoding" if node.forced_utf8_encoding?), ("forced_binary_encoding" if node.forced_binary_encoding?), ("frozen" if node.frozen?), ("mutable" if node.mutable?)].compact
2197
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2198
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
2199
+ commands << ["├── content_loc: #{inspect_location(node.content_loc)}\n", indent]
2200
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
2201
+ commands << ["└── unescaped: #{node.unescaped.inspect}\n", indent]
2202
+ end
2203
+
2204
+ # Inspect a SuperNode node.
2205
+ def visit_super_node(node)
2206
+ commands << [inspect_node("SuperNode", node), indent]
2207
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2208
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2209
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2210
+ commands << ["├── lparen_loc: #{inspect_location(node.lparen_loc)}\n", indent]
2211
+ if (arguments = node.arguments).nil?
2212
+ commands << ["├── arguments: ∅\n", indent]
2213
+ else
2214
+ commands << ["├── arguments:\n", indent]
2215
+ commands << [arguments, "#{indent}│ "]
2216
+ end
2217
+ commands << ["├── rparen_loc: #{inspect_location(node.rparen_loc)}\n", indent]
2218
+ if (block = node.block).nil?
2219
+ commands << ["└── block: ∅\n", indent]
2220
+ else
2221
+ commands << ["└── block:\n", indent]
2222
+ commands << [block, "#{indent} "]
2223
+ end
2224
+ end
2225
+
2226
+ # Inspect a SymbolNode node.
2227
+ def visit_symbol_node(node)
2228
+ commands << [inspect_node("SymbolNode", node), indent]
2229
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("forced_utf8_encoding" if node.forced_utf8_encoding?), ("forced_binary_encoding" if node.forced_binary_encoding?), ("forced_us_ascii_encoding" if node.forced_us_ascii_encoding?)].compact
2230
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2231
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
2232
+ commands << ["├── value_loc: #{inspect_location(node.value_loc)}\n", indent]
2233
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
2234
+ commands << ["└── unescaped: #{node.unescaped.inspect}\n", indent]
2235
+ end
2236
+
2237
+ # Inspect a TrueNode node.
2238
+ def visit_true_node(node)
2239
+ commands << [inspect_node("TrueNode", node), indent]
2240
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2241
+ commands << ["└── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2242
+ end
2243
+
2244
+ # Inspect a UndefNode node.
2245
+ def visit_undef_node(node)
2246
+ commands << [inspect_node("UndefNode", node), indent]
2247
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2248
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2249
+ commands << ["├── names: (length: #{(names = node.names).length})\n", indent]
2250
+ if names.any?
2251
+ names[0...-1].each do |child|
2252
+ commands << [Replace.new("#{indent}│ ├── "), indent]
2253
+ commands << [child, "#{indent}│ │ "]
2254
+ end
2255
+ commands << [Replace.new("#{indent}│ └── "), indent]
2256
+ commands << [names[-1], "#{indent}│ "]
2257
+ end
2258
+ commands << ["└── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2259
+ end
2260
+
2261
+ # Inspect a UnlessNode node.
2262
+ def visit_unless_node(node)
2263
+ commands << [inspect_node("UnlessNode", node), indent]
2264
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2265
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2266
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2267
+ commands << ["├── predicate:\n", indent]
2268
+ commands << [node.predicate, "#{indent}│ "]
2269
+ commands << ["├── then_keyword_loc: #{inspect_location(node.then_keyword_loc)}\n", indent]
2270
+ if (statements = node.statements).nil?
2271
+ commands << ["├── statements: ∅\n", indent]
2272
+ else
2273
+ commands << ["├── statements:\n", indent]
2274
+ commands << [statements, "#{indent}│ "]
2275
+ end
2276
+ if (else_clause = node.else_clause).nil?
2277
+ commands << ["├── else_clause: ∅\n", indent]
2278
+ else
2279
+ commands << ["├── else_clause:\n", indent]
2280
+ commands << [else_clause, "#{indent}│ "]
2281
+ end
2282
+ commands << ["└── end_keyword_loc: #{inspect_location(node.end_keyword_loc)}\n", indent]
2283
+ end
2284
+
2285
+ # Inspect a UntilNode node.
2286
+ def visit_until_node(node)
2287
+ commands << [inspect_node("UntilNode", node), indent]
2288
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("begin_modifier" if node.begin_modifier?)].compact
2289
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2290
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2291
+ commands << ["├── do_keyword_loc: #{inspect_location(node.do_keyword_loc)}\n", indent]
2292
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
2293
+ commands << ["├── predicate:\n", indent]
2294
+ commands << [node.predicate, "#{indent}│ "]
2295
+ if (statements = node.statements).nil?
2296
+ commands << ["└── statements: ∅\n", indent]
2297
+ else
2298
+ commands << ["└── statements:\n", indent]
2299
+ commands << [statements, "#{indent} "]
2300
+ end
2301
+ end
2302
+
2303
+ # Inspect a WhenNode node.
2304
+ def visit_when_node(node)
2305
+ commands << [inspect_node("WhenNode", node), indent]
2306
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2307
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2308
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2309
+ commands << ["├── conditions: (length: #{(conditions = node.conditions).length})\n", indent]
2310
+ if conditions.any?
2311
+ conditions[0...-1].each do |child|
2312
+ commands << [Replace.new("#{indent}│ ├── "), indent]
2313
+ commands << [child, "#{indent}│ │ "]
2314
+ end
2315
+ commands << [Replace.new("#{indent}│ └── "), indent]
2316
+ commands << [conditions[-1], "#{indent}│ "]
2317
+ end
2318
+ commands << ["├── then_keyword_loc: #{inspect_location(node.then_keyword_loc)}\n", indent]
2319
+ if (statements = node.statements).nil?
2320
+ commands << ["└── statements: ∅\n", indent]
2321
+ else
2322
+ commands << ["└── statements:\n", indent]
2323
+ commands << [statements, "#{indent} "]
2324
+ end
2325
+ end
2326
+
2327
+ # Inspect a WhileNode node.
2328
+ def visit_while_node(node)
2329
+ commands << [inspect_node("WhileNode", node), indent]
2330
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("begin_modifier" if node.begin_modifier?)].compact
2331
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2332
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2333
+ commands << ["├── do_keyword_loc: #{inspect_location(node.do_keyword_loc)}\n", indent]
2334
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
2335
+ commands << ["├── predicate:\n", indent]
2336
+ commands << [node.predicate, "#{indent}│ "]
2337
+ if (statements = node.statements).nil?
2338
+ commands << ["└── statements: ∅\n", indent]
2339
+ else
2340
+ commands << ["└── statements:\n", indent]
2341
+ commands << [statements, "#{indent} "]
2342
+ end
2343
+ end
2344
+
2345
+ # Inspect a XStringNode node.
2346
+ def visit_x_string_node(node)
2347
+ commands << [inspect_node("XStringNode", node), indent]
2348
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ("forced_utf8_encoding" if node.forced_utf8_encoding?), ("forced_binary_encoding" if node.forced_binary_encoding?)].compact
2349
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2350
+ commands << ["├── opening_loc: #{inspect_location(node.opening_loc)}\n", indent]
2351
+ commands << ["├── content_loc: #{inspect_location(node.content_loc)}\n", indent]
2352
+ commands << ["├── closing_loc: #{inspect_location(node.closing_loc)}\n", indent]
2353
+ commands << ["└── unescaped: #{node.unescaped.inspect}\n", indent]
2354
+ end
2355
+
2356
+ # Inspect a YieldNode node.
2357
+ def visit_yield_node(node)
2358
+ commands << [inspect_node("YieldNode", node), indent]
2359
+ flags = [("newline" if node.newline?), ("static_literal" if node.static_literal?), ].compact
2360
+ commands << ["├── flags: #{flags.empty? ? "∅" : flags.join(", ")}\n", indent]
2361
+ commands << ["├── keyword_loc: #{inspect_location(node.keyword_loc)}\n", indent]
2362
+ commands << ["├── lparen_loc: #{inspect_location(node.lparen_loc)}\n", indent]
2363
+ if (arguments = node.arguments).nil?
2364
+ commands << ["├── arguments: ∅\n", indent]
2365
+ else
2366
+ commands << ["├── arguments:\n", indent]
2367
+ commands << [arguments, "#{indent}│ "]
2368
+ end
2369
+ commands << ["└── rparen_loc: #{inspect_location(node.rparen_loc)}\n", indent]
2370
+ end
2371
+
2372
+ private
2373
+
2374
+ # Compose a header for the given node.
2375
+ def inspect_node(name, node)
2376
+ location = node.location
2377
+ "@ #{name} (location: (#{location.start_line},#{location.start_column})-(#{location.end_line},#{location.end_column}))\n"
2378
+ end
2379
+
2380
+ # Compose a string representing the given inner location field.
2381
+ def inspect_location(location)
2382
+ if location
2383
+ "(#{location.start_line},#{location.start_column})-(#{location.end_line},#{location.end_column}) = #{location.slice.inspect}"
2384
+ else
2385
+ "∅"
2386
+ end
2387
+ end
2388
+ end
2389
+ end