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
@@ -1,6 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "parser"
3
+ begin
4
+ require "parser"
5
+ rescue LoadError
6
+ warn(%q{Error: Unable to load parser. Add `gem "parser"` to your Gemfile.})
7
+ exit(1)
8
+ end
4
9
 
5
10
  module Prism
6
11
  module Translation
@@ -9,22 +14,56 @@ module Prism
9
14
  # the parser gem, and overrides the parse* methods to parse with prism and
10
15
  # then translate.
11
16
  class Parser < ::Parser::Base
17
+ Diagnostic = ::Parser::Diagnostic # :nodoc:
18
+ private_constant :Diagnostic
19
+
12
20
  # The parser gem has a list of diagnostics with a hard-coded set of error
13
21
  # messages. We create our own diagnostic class in order to set our own
14
22
  # error messages.
15
- class Diagnostic < ::Parser::Diagnostic
16
- # The message generated by prism.
23
+ class PrismDiagnostic < Diagnostic
24
+ # This is the cached message coming from prism.
17
25
  attr_reader :message
18
26
 
19
27
  # Initialize a new diagnostic with the given message and location.
20
- def initialize(message, location)
28
+ def initialize(message, level, reason, location)
21
29
  @message = message
22
- super(:error, :prism_error, {}, location, [])
30
+ super(level, reason, {}, location, [])
23
31
  end
24
32
  end
25
33
 
26
34
  Racc_debug_parser = false # :nodoc:
27
35
 
36
+ # The `builder` argument is used to create the parser using our custom builder class by default.
37
+ #
38
+ # By using the `:parser` keyword argument, you can translate in a way that is compatible with
39
+ # the Parser gem using any parser.
40
+ #
41
+ # For example, in RuboCop for Ruby LSP, the following approach can be used to improve performance
42
+ # by reusing a pre-parsed `Prism::ParseLexResult`:
43
+ #
44
+ # class PrismPreparsed
45
+ # def initialize(prism_result)
46
+ # @prism_result = prism_result
47
+ # end
48
+ #
49
+ # def parse_lex(source, **options)
50
+ # @prism_result
51
+ # end
52
+ # end
53
+ #
54
+ # prism_preparsed = PrismPreparsed.new(prism_result)
55
+ #
56
+ # Prism::Translation::Ruby34.new(builder, parser: prism_preparsed)
57
+ #
58
+ # In an object passed to the `:parser` keyword argument, the `parse` and `parse_lex` methods
59
+ # should be implemented as needed.
60
+ #
61
+ def initialize(builder = Prism::Translation::Parser::Builder.new, parser: Prism)
62
+ @parser = parser
63
+
64
+ super(builder)
65
+ end
66
+
28
67
  def version # :nodoc:
29
68
  34
30
69
  end
@@ -43,7 +82,7 @@ module Prism
43
82
  source = source_buffer.source
44
83
 
45
84
  offset_cache = build_offset_cache(source)
46
- result = unwrap(Prism.parse(source, filepath: source_buffer.name, version: convert_for_prism(version)), offset_cache)
85
+ result = unwrap(@parser.parse(source, **prism_options), offset_cache)
47
86
 
48
87
  build_ast(result.value, offset_cache)
49
88
  ensure
@@ -56,7 +95,7 @@ module Prism
56
95
  source = source_buffer.source
57
96
 
58
97
  offset_cache = build_offset_cache(source)
59
- result = unwrap(Prism.parse(source, filepath: source_buffer.name, version: convert_for_prism(version)), offset_cache)
98
+ result = unwrap(@parser.parse(source, **prism_options), offset_cache)
60
99
 
61
100
  [
62
101
  build_ast(result.value, offset_cache),
@@ -75,7 +114,7 @@ module Prism
75
114
  offset_cache = build_offset_cache(source)
76
115
  result =
77
116
  begin
78
- unwrap(Prism.parse_lex(source, filepath: source_buffer.name, version: convert_for_prism(version)), offset_cache)
117
+ unwrap(@parser.parse_lex(source, **prism_options), offset_cache)
79
118
  rescue ::Parser::SyntaxError
80
119
  raise if !recover
81
120
  end
@@ -106,14 +145,123 @@ module Prism
106
145
  true
107
146
  end
108
147
 
148
+ # This is a hook to allow consumers to disable some warnings if they don't
149
+ # want them to block creating the syntax tree.
150
+ def valid_warning?(warning)
151
+ true
152
+ end
153
+
154
+ # Build a diagnostic from the given prism parse error.
155
+ def error_diagnostic(error, offset_cache)
156
+ location = error.location
157
+ diagnostic_location = build_range(location, offset_cache)
158
+
159
+ case error.type
160
+ when :argument_block_multi
161
+ Diagnostic.new(:error, :block_and_blockarg, {}, diagnostic_location, [])
162
+ when :argument_formal_constant
163
+ Diagnostic.new(:error, :argument_const, {}, diagnostic_location, [])
164
+ when :argument_formal_class
165
+ Diagnostic.new(:error, :argument_cvar, {}, diagnostic_location, [])
166
+ when :argument_formal_global
167
+ Diagnostic.new(:error, :argument_gvar, {}, diagnostic_location, [])
168
+ when :argument_formal_ivar
169
+ Diagnostic.new(:error, :argument_ivar, {}, diagnostic_location, [])
170
+ when :argument_no_forwarding_amp
171
+ Diagnostic.new(:error, :no_anonymous_blockarg, {}, diagnostic_location, [])
172
+ when :argument_no_forwarding_star
173
+ Diagnostic.new(:error, :no_anonymous_restarg, {}, diagnostic_location, [])
174
+ when :argument_no_forwarding_star_star
175
+ Diagnostic.new(:error, :no_anonymous_kwrestarg, {}, diagnostic_location, [])
176
+ when :begin_lonely_else
177
+ location = location.copy(length: 4)
178
+ diagnostic_location = build_range(location, offset_cache)
179
+ Diagnostic.new(:error, :useless_else, {}, diagnostic_location, [])
180
+ when :class_name, :module_name
181
+ Diagnostic.new(:error, :module_name_const, {}, diagnostic_location, [])
182
+ when :class_in_method
183
+ Diagnostic.new(:error, :class_in_def, {}, diagnostic_location, [])
184
+ when :def_endless_setter
185
+ Diagnostic.new(:error, :endless_setter, {}, diagnostic_location, [])
186
+ when :embdoc_term
187
+ Diagnostic.new(:error, :embedded_document, {}, diagnostic_location, [])
188
+ when :incomplete_variable_class, :incomplete_variable_class_3_3
189
+ location = location.copy(length: location.length + 1)
190
+ diagnostic_location = build_range(location, offset_cache)
191
+
192
+ Diagnostic.new(:error, :cvar_name, { name: location.slice }, diagnostic_location, [])
193
+ when :incomplete_variable_instance, :incomplete_variable_instance_3_3
194
+ location = location.copy(length: location.length + 1)
195
+ diagnostic_location = build_range(location, offset_cache)
196
+
197
+ Diagnostic.new(:error, :ivar_name, { name: location.slice }, diagnostic_location, [])
198
+ when :invalid_variable_global, :invalid_variable_global_3_3
199
+ Diagnostic.new(:error, :gvar_name, { name: location.slice }, diagnostic_location, [])
200
+ when :module_in_method
201
+ Diagnostic.new(:error, :module_in_def, {}, diagnostic_location, [])
202
+ when :numbered_parameter_ordinary
203
+ Diagnostic.new(:error, :ordinary_param_defined, {}, diagnostic_location, [])
204
+ when :numbered_parameter_outer_scope
205
+ Diagnostic.new(:error, :numparam_used_in_outer_scope, {}, diagnostic_location, [])
206
+ when :parameter_circular
207
+ Diagnostic.new(:error, :circular_argument_reference, { var_name: location.slice }, diagnostic_location, [])
208
+ when :parameter_name_repeat
209
+ Diagnostic.new(:error, :duplicate_argument, {}, diagnostic_location, [])
210
+ when :parameter_numbered_reserved
211
+ Diagnostic.new(:error, :reserved_for_numparam, { name: location.slice }, diagnostic_location, [])
212
+ when :regexp_unknown_options
213
+ Diagnostic.new(:error, :regexp_options, { options: location.slice[1..] }, diagnostic_location, [])
214
+ when :singleton_for_literals
215
+ Diagnostic.new(:error, :singleton_literal, {}, diagnostic_location, [])
216
+ when :string_literal_eof
217
+ Diagnostic.new(:error, :string_eof, {}, diagnostic_location, [])
218
+ when :unexpected_token_ignore
219
+ Diagnostic.new(:error, :unexpected_token, { token: location.slice }, diagnostic_location, [])
220
+ when :write_target_in_method
221
+ Diagnostic.new(:error, :dynamic_const, {}, diagnostic_location, [])
222
+ else
223
+ PrismDiagnostic.new(error.message, :error, error.type, diagnostic_location)
224
+ end
225
+ end
226
+
227
+ # Build a diagnostic from the given prism parse warning.
228
+ def warning_diagnostic(warning, offset_cache)
229
+ diagnostic_location = build_range(warning.location, offset_cache)
230
+
231
+ case warning.type
232
+ when :ambiguous_first_argument_plus
233
+ Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "+" }, diagnostic_location, [])
234
+ when :ambiguous_first_argument_minus
235
+ Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "-" }, diagnostic_location, [])
236
+ when :ambiguous_prefix_ampersand
237
+ Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "&" }, diagnostic_location, [])
238
+ when :ambiguous_prefix_star
239
+ Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "*" }, diagnostic_location, [])
240
+ when :ambiguous_prefix_star_star
241
+ Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "**" }, diagnostic_location, [])
242
+ when :ambiguous_slash
243
+ Diagnostic.new(:warning, :ambiguous_regexp, {}, diagnostic_location, [])
244
+ when :dot_dot_dot_eol
245
+ Diagnostic.new(:warning, :triple_dot_at_eol, {}, diagnostic_location, [])
246
+ when :duplicated_hash_key
247
+ # skip, parser does this on its own
248
+ else
249
+ PrismDiagnostic.new(warning.message, :warning, warning.type, diagnostic_location)
250
+ end
251
+ end
252
+
109
253
  # If there was a error generated during the parse, then raise an
110
254
  # appropriate syntax error. Otherwise return the result.
111
255
  def unwrap(result, offset_cache)
112
256
  result.errors.each do |error|
113
257
  next unless valid_error?(error)
258
+ diagnostics.process(error_diagnostic(error, offset_cache))
259
+ end
114
260
 
115
- location = build_range(error.location, offset_cache)
116
- diagnostics.process(Diagnostic.new(error.message, location))
261
+ result.warnings.each do |warning|
262
+ next unless valid_warning?(warning)
263
+ diagnostic = warning_diagnostic(warning, offset_cache)
264
+ diagnostics.process(diagnostic) if diagnostic
117
265
  end
118
266
 
119
267
  result
@@ -156,7 +304,7 @@ module Prism
156
304
 
157
305
  # Build the parser gem tokens from the prism tokens.
158
306
  def build_tokens(tokens, offset_cache)
159
- Lexer.new(source_buffer, tokens.map(&:first), offset_cache).to_a
307
+ Lexer.new(source_buffer, tokens, offset_cache).to_a
160
308
  end
161
309
 
162
310
  # Build a range from a prism location.
@@ -168,18 +316,35 @@ module Prism
168
316
  )
169
317
  end
170
318
 
319
+ # Options for how prism should parse/lex the source.
320
+ def prism_options
321
+ options = {
322
+ filepath: @source_buffer.name,
323
+ version: convert_for_prism(version),
324
+ partial_script: true,
325
+ }
326
+ # The parser gem always encodes to UTF-8, unless it is binary.
327
+ # https://github.com/whitequark/parser/blob/v3.3.6.0/lib/parser/source/buffer.rb#L80-L107
328
+ options[:encoding] = false if @source_buffer.source.encoding != Encoding::BINARY
329
+
330
+ options
331
+ end
332
+
171
333
  # Converts the version format handled by Parser to the format handled by Prism.
172
334
  def convert_for_prism(version)
173
335
  case version
174
336
  when 33
175
- "3.3.0"
337
+ "3.3.1"
176
338
  when 34
177
339
  "3.4.0"
340
+ when 35
341
+ "3.5.0"
178
342
  else
179
343
  "latest"
180
344
  end
181
345
  end
182
346
 
347
+ require_relative "parser/builder"
183
348
  require_relative "parser/compiler"
184
349
  require_relative "parser/lexer"
185
350
 
@@ -1,4 +1,4 @@
1
- require_relative "parser"
1
+ # frozen_string_literal: true
2
2
 
3
3
  module Prism
4
4
  module Translation
@@ -1,4 +1,4 @@
1
- require_relative "parser"
1
+ # frozen_string_literal: true
2
2
 
3
3
  module Prism
4
4
  module Translation
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Prism
4
+ module Translation
5
+ # This class is the entry-point for Ruby 3.5 of `Prism::Translation::Parser`.
6
+ class Parser35 < Parser
7
+ def version # :nodoc:
8
+ 35
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,125 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "../ripper"
4
+
5
+ module Prism
6
+ module Translation
7
+ class Ripper
8
+ # This class mirrors the ::Ripper::SexpBuilder subclass of ::Ripper that
9
+ # returns the arrays of [type, *children].
10
+ class SexpBuilder < Ripper
11
+ # :stopdoc:
12
+
13
+ attr_reader :error
14
+
15
+ private
16
+
17
+ def dedent_element(e, width)
18
+ if (n = dedent_string(e[1], width)) > 0
19
+ e[2][1] += n
20
+ end
21
+ e
22
+ end
23
+
24
+ def on_heredoc_dedent(val, width)
25
+ sub = proc do |cont|
26
+ cont.map! do |e|
27
+ if Array === e
28
+ case e[0]
29
+ when :@tstring_content
30
+ e = dedent_element(e, width)
31
+ when /_add\z/
32
+ e[1] = sub[e[1]]
33
+ end
34
+ elsif String === e
35
+ dedent_string(e, width)
36
+ end
37
+ e
38
+ end
39
+ end
40
+ sub[val]
41
+ val
42
+ end
43
+
44
+ events = private_instance_methods(false).grep(/\Aon_/) {$'.to_sym}
45
+ (PARSER_EVENTS - events).each do |event|
46
+ module_eval(<<-End, __FILE__, __LINE__ + 1)
47
+ def on_#{event}(*args)
48
+ args.unshift :#{event}
49
+ end
50
+ End
51
+ end
52
+
53
+ SCANNER_EVENTS.each do |event|
54
+ module_eval(<<-End, __FILE__, __LINE__ + 1)
55
+ def on_#{event}(tok)
56
+ [:@#{event}, tok, [lineno(), column()]]
57
+ end
58
+ End
59
+ end
60
+
61
+ def on_error(mesg)
62
+ @error = mesg
63
+ end
64
+ remove_method :on_parse_error
65
+ alias on_parse_error on_error
66
+ alias compile_error on_error
67
+
68
+ # :startdoc:
69
+ end
70
+
71
+ # This class mirrors the ::Ripper::SexpBuilderPP subclass of ::Ripper that
72
+ # returns the same values as ::Ripper::SexpBuilder except with a couple of
73
+ # niceties that flatten linked lists into arrays.
74
+ class SexpBuilderPP < SexpBuilder
75
+ # :stopdoc:
76
+
77
+ private
78
+
79
+ def on_heredoc_dedent(val, width)
80
+ val.map! do |e|
81
+ next e if Symbol === e and /_content\z/ =~ e
82
+ if Array === e and e[0] == :@tstring_content
83
+ e = dedent_element(e, width)
84
+ elsif String === e
85
+ dedent_string(e, width)
86
+ end
87
+ e
88
+ end
89
+ val
90
+ end
91
+
92
+ def _dispatch_event_new
93
+ []
94
+ end
95
+
96
+ def _dispatch_event_push(list, item)
97
+ list.push item
98
+ list
99
+ end
100
+
101
+ def on_mlhs_paren(list)
102
+ [:mlhs, *list]
103
+ end
104
+
105
+ def on_mlhs_add_star(list, star)
106
+ list.push([:rest_param, star])
107
+ end
108
+
109
+ def on_mlhs_add_post(list, post)
110
+ list.concat(post)
111
+ end
112
+
113
+ PARSER_EVENT_TABLE.each do |event, arity|
114
+ if /_new\z/ =~ event and arity == 0
115
+ alias_method "on_#{event}", :_dispatch_event_new
116
+ elsif /_add\z/ =~ event
117
+ alias_method "on_#{event}", :_dispatch_event_push
118
+ end
119
+ end
120
+
121
+ # :startdoc:
122
+ end
123
+ end
124
+ end
125
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This writes the prism ripper translation into the Ripper constant so that
4
+ # users can transparently use Ripper without any changes.
5
+ Ripper = Prism::Translation::Ripper