rubocop-ast 1.38.1 → 1.40.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7fd9852873f22808386ddc6962f7373509ec03930f3e5c667475d512480b705
4
- data.tar.gz: b6d36926cd045b8486679af378d1fdd21875b941d3f5916fbb6876f04ef75e11
3
+ metadata.gz: 572b1323e4358215b5e093fa0326fb04dc3d7986746143b75bd0d58223d2dc9e
4
+ data.tar.gz: 96d40dd742d28e480ca3be7dd7fd16bf9f410e7631373d4c441a74530bfc0314
5
5
  SHA512:
6
- metadata.gz: b83bb3a5b3c20a8831d6ad8e075d536b3ff8042d873ce6062161fbe1556e80da5fc4646499dc0432864ecb034ffe3ade83f7ac2f37562a9df22620b486e61e5a
7
- data.tar.gz: d6f98f800797330d515911991c9215e8fa616cdcde7a73666aa0d25ff05b70b9274a1f0df689f8a820a6573c391bca487100a258a142c21a60f3fd8ea6e5c5e8
6
+ metadata.gz: fd75e5325a907aead5239937ee34447d16da764f1fe2a31d140c9d4f5398b4c4a81c5f88a697bb62149845fc24691b53d526cc5ac05b1060472e92fceaceefae
7
+ data.tar.gz: d04d2d4dcf76bd6b23e9f6b2a44af18562d8bed8d9767b0511e58feabe762f90fba42f73869500fbe8c34ec1d0e4b6bebe74e7b3bbee18a83b284a97c05d477c
@@ -2,20 +2,13 @@
2
2
 
3
3
  module RuboCop
4
4
  module AST
5
- # `RuboCop::AST::Builder` is an AST builder that is utilized to let `Parser`
6
- # generate ASTs with {RuboCop::AST::Node}.
7
- #
8
- # @example
9
- # buffer = Parser::Source::Buffer.new('(string)')
10
- # buffer.source = 'puts :foo'
11
- #
12
- # builder = RuboCop::AST::Builder.new
13
- # require 'parser/ruby25'
14
- # parser = Parser::Ruby25.new(builder)
15
- # root_node = parser.parse(buffer)
16
- class Builder < Parser::Builders::Default
17
- self.emit_forward_arg = true if respond_to?(:emit_forward_arg=)
18
- self.emit_match_pattern = true if respond_to?(:emit_match_pattern=)
5
+ # Common functionality between the parser and prism builder
6
+ # @api private
7
+ module BuilderExtensions
8
+ def self.included(base)
9
+ base.emit_forward_arg = true
10
+ base.emit_match_pattern = true
11
+ end
19
12
 
20
13
  # @api private
21
14
  NODE_MAP = {
@@ -107,7 +100,7 @@ module RuboCop
107
100
  node_klass(type).new(type, children, location: source_map)
108
101
  end
109
102
 
110
- # TODO: Figure out what to do about literal encoding handling...
103
+ # Overwrite the base method to allow strings with invalid encoding
111
104
  # More details here https://github.com/whitequark/parser/issues/283
112
105
  def string_value(token)
113
106
  value(token)
@@ -119,5 +112,20 @@ module RuboCop
119
112
  NODE_MAP[type] || Node
120
113
  end
121
114
  end
115
+
116
+ # `RuboCop::AST::Builder` is an AST builder that is utilized to let `Parser`
117
+ # generate ASTs with {RuboCop::AST::Node}.
118
+ #
119
+ # @example
120
+ # buffer = Parser::Source::Buffer.new('(string)')
121
+ # buffer.source = 'puts :foo'
122
+ #
123
+ # builder = RuboCop::AST::Builder.new
124
+ # require 'parser/ruby25'
125
+ # parser = Parser::Ruby25.new(builder)
126
+ # root_node = parser.parse(buffer)
127
+ class Builder < Parser::Builders::Default
128
+ include BuilderExtensions
129
+ end
122
130
  end
123
131
  end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RuboCop
4
+ module AST
5
+ # A parser builder, based on the one provided by prism,
6
+ # which is capable of emitting AST for more recent Rubies.
7
+ class BuilderPrism < Prism::Translation::Parser::Builder
8
+ include BuilderExtensions
9
+ end
10
+ end
11
+ end
@@ -685,7 +685,7 @@ module RuboCop
685
685
  def case_if_value_used?
686
686
  # (case <condition> <when...>)
687
687
  # (if <condition> <truebranch> <falsebranch>)
688
- sibling_index.zero? ? true : parent.value_used?
688
+ sibling_index.zero? || parent.value_used?
689
689
  end
690
690
 
691
691
  def while_until_value_used?
@@ -4,6 +4,27 @@ require 'digest/sha1'
4
4
 
5
5
  module RuboCop
6
6
  module AST
7
+ # A `Prism` interface's class that provides a fixed `Prism::ParseLexResult` instead of parsing.
8
+ #
9
+ # This class implements the `parse_lex` method to return a preparsed `Prism::ParseLexResult`
10
+ # rather than parsing the source code. When the parse result is already available externally,
11
+ # such as in Ruby LSP, the Prism parsing process can be bypassed.
12
+ class PrismPreparsed
13
+ def initialize(prism_result)
14
+ unless prism_result.is_a?(Prism::ParseLexResult)
15
+ raise ArgumentError, <<~MESSAGE
16
+ Expected a `Prism::ParseLexResult` object, but received `#{prism_result.class}`.
17
+ MESSAGE
18
+ end
19
+
20
+ @prism_result = prism_result
21
+ end
22
+
23
+ def parse_lex(_source, **_prism_options)
24
+ @prism_result
25
+ end
26
+ end
27
+
7
28
  # ProcessedSource contains objects which are generated by Parser
8
29
  # and other information such as disabled lines for cops.
9
30
  # It also provides a convenient way to access source lines.
@@ -25,7 +46,9 @@ module RuboCop
25
46
  new(file, ruby_version, path, parser_engine: parser_engine)
26
47
  end
27
48
 
28
- def initialize(source, ruby_version, path = nil, parser_engine: :parser_whitequark)
49
+ def initialize(
50
+ source, ruby_version, path = nil, parser_engine: :parser_whitequark, prism_result: nil
51
+ )
29
52
  parser_engine = parser_engine.to_sym
30
53
  unless PARSER_ENGINES.include?(parser_engine)
31
54
  raise ArgumentError, 'The keyword argument `parser_engine` accepts `parser_whitequark` ' \
@@ -44,7 +67,7 @@ module RuboCop
44
67
  @parser_engine = parser_engine
45
68
  @parser_error = nil
46
69
 
47
- parse(source, ruby_version, parser_engine)
70
+ parse(source, ruby_version, parser_engine, prism_result)
48
71
  end
49
72
 
50
73
  def ast_with_comments
@@ -202,7 +225,7 @@ module RuboCop
202
225
  end
203
226
  end
204
227
 
205
- def parse(source, ruby_version, parser_engine)
228
+ def parse(source, ruby_version, parser_engine, prism_result)
206
229
  buffer_name = @path || STRING_SOURCE_NAME
207
230
  @buffer = Parser::Source::Buffer.new(buffer_name, 1)
208
231
 
@@ -216,7 +239,9 @@ module RuboCop
216
239
  return
217
240
  end
218
241
 
219
- @ast, @comments, @tokens = tokenize(create_parser(ruby_version, parser_engine))
242
+ parser = create_parser(ruby_version, parser_engine, prism_result)
243
+
244
+ @ast, @comments, @tokens = tokenize(parser)
220
245
  end
221
246
 
222
247
  def tokenize(parser)
@@ -289,10 +314,10 @@ module RuboCop
289
314
 
290
315
  case ruby_version
291
316
  when 3.3
292
- require_prism_translation_parser(ruby_version)
317
+ require 'prism/translation/parser33'
293
318
  Prism::Translation::Parser33
294
319
  when 3.4
295
- require_prism_translation_parser(ruby_version)
320
+ require 'prism/translation/parser34'
296
321
  Prism::Translation::Parser34
297
322
  else
298
323
  raise ArgumentError, 'RuboCop supports target Ruby versions 3.3 and above with Prism. ' \
@@ -301,35 +326,64 @@ module RuboCop
301
326
  end
302
327
  end
303
328
 
329
+ def builder_class(parser_engine)
330
+ case parser_engine
331
+ when :parser_whitequark
332
+ RuboCop::AST::Builder
333
+ when :parser_prism
334
+ require_prism
335
+ require_relative 'builder_prism'
336
+ RuboCop::AST::BuilderPrism
337
+ end
338
+ end
339
+
304
340
  # Prism is a native extension, a `LoadError` will be raised if linked to an incompatible
305
341
  # Ruby version. Only raise if it really was caused by Prism not being present.
342
+ # rubocop:disable Metrics/MethodLength
306
343
  def require_prism
307
344
  require 'prism'
345
+ required_prism_version = '1.4.0'
346
+ if required_prism_version > Prism::VERSION
347
+ # While Prism is not yet a dependency, users may run with outdated versions that
348
+ # don't have all the parsers.
349
+ warn <<~MESSAGE
350
+ Error: Prism version #{Prism::VERSION} was loaded, but rubocop-ast requires #{required_prism_version}.
351
+ * If you're using Bundler and don't yet have `gem 'prism'` as a dependency, add it now.
352
+ * If you're using Bundler and already have `gem 'prism'` as a dependency, update it to the most recent version.
353
+ * If you don't use Bundler, run `gem update prism`.
354
+ MESSAGE
355
+ exit!
356
+ end
308
357
  rescue LoadError => e
309
358
  raise unless e.path == 'prism'
310
359
 
311
360
  warn "Error: Unable to load Prism. Add `gem 'prism'` to your Gemfile."
312
361
  exit!
313
362
  end
363
+ # rubocop:enable Metrics/MethodLength
314
364
 
315
- # While Prism is not yet a dependency, users may run with outdated versions that
316
- # don't have all the parsers.
317
- def require_prism_translation_parser(version)
318
- require "prism/translation/parser#{version.to_s.delete('.')}"
319
- rescue LoadError
320
- warn <<~MESSAGE
321
- Error: Unable to load Prism parser for Ruby #{version}.
322
- * If you're using Bundler and don't yet have `gem 'prism'` as a dependency, add it now.
323
- * If you're using Bundler and already have `gem 'prism'` as a dependency, update it to the most recent version.
324
- * If you don't use Bundler, run `gem update prism`.
325
- MESSAGE
326
- exit!
327
- end
365
+ # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
366
+ def create_parser(ruby_version, parser_engine, prism_result)
367
+ builder = builder_class(parser_engine).new
368
+
369
+ parser_class = parser_class(ruby_version, parser_engine)
370
+
371
+ # NOTE: Check if the `Prism#initialize` method has the `:parser` keyword argument.
372
+ # The `:parser` keyword argument cannot be used to switch parsers because older versions of
373
+ # Prism do not support it.
374
+ parser_switch_available = parser_class.instance_method(:initialize).parameters.assoc(:key)
328
375
 
329
- def create_parser(ruby_version, parser_engine)
330
- builder = RuboCop::AST::Builder.new
376
+ parser_instance = if prism_result && parser_switch_available
377
+ # NOTE: Since it is intended for use with Ruby LSP, it targets only Prism.
378
+ # If there is no reuse of a pre-parsed result, such as in Ruby LSP,
379
+ # regular parsing with Prism occurs, and `else` branch will be executed.
380
+ prism_reparsed = PrismPreparsed.new(prism_result)
381
+ parser_class.new(builder, parser: prism_reparsed)
382
+ else
383
+ parser_class.new(builder)
384
+ end
331
385
 
332
- parser_class(ruby_version, parser_engine).new(builder).tap do |parser|
386
+ parser_instance.tap do |parser|
333
387
  # On JRuby there's a risk that we hang in tokenize() if we
334
388
  # don't set the all errors as fatal flag. The problem is caused by a bug
335
389
  # in Racc that is discussed in issue #93 of the whitequark/parser
@@ -341,6 +395,7 @@ module RuboCop
341
395
  end
342
396
  end
343
397
  end
398
+ # rubocop:enable Metrics/AbcSize, Metrics/MethodLength
344
399
 
345
400
  def first_token_index(range_or_node)
346
401
  begin_pos = source_range(range_or_node).begin_pos
@@ -26,16 +26,18 @@ module RuboCop
26
26
  SEND = 'send(TYPE_TO_METHOD[child.type], child)'
27
27
  assign_code = 'child = node.children[%<index>i]'
28
28
  code = "#{assign_code}\n#{SEND}"
29
+ # How a particular child node should be visited. For example, if a child node
30
+ # can be nil it should be guarded behind a nil check. Or, if a child node is a literal
31
+ # (like a symbol) then the literal itself should not be visited.
29
32
  TEMPLATE = {
30
33
  skip: '',
31
34
  always: code,
32
35
  nil?: "#{code} if child"
33
36
  }.freeze
34
37
 
35
- def def_callback(type, *signature,
36
- arity: signature.size..signature.size,
37
- arity_check: ENV.fetch('RUBOCOP_DEBUG', nil) && self.arity_check(arity),
38
- body: self.body(signature, arity_check))
38
+ def def_callback(type, *child_node_types,
39
+ expected_children_count: child_node_types.size..child_node_types.size,
40
+ body: self.body(child_node_types, expected_children_count))
39
41
  type, *aliases = type
40
42
  lineno = caller_locations(1, 1).first.lineno
41
43
  module_eval(<<~RUBY, __FILE__, lineno)
@@ -49,16 +51,23 @@ module RuboCop
49
51
  end
50
52
  end
51
53
 
52
- def body(signature, prelude)
53
- signature
54
- .map.with_index do |arg, i|
55
- TEMPLATE[arg].gsub('%<index>i', i.to_s)
54
+ def body(child_node_types, expected_children_count)
55
+ visit_children_code =
56
+ child_node_types
57
+ .map.with_index do |child_type, i|
58
+ TEMPLATE.fetch(child_type).gsub('%<index>i', i.to_s)
56
59
  end
57
- .unshift(prelude)
58
60
  .join("\n")
61
+
62
+ <<~BODY
63
+ #{children_count_check_code(expected_children_count)}
64
+ #{visit_children_code}
65
+ BODY
59
66
  end
60
67
 
61
- def arity_check(range)
68
+ def children_count_check_code(range)
69
+ return '' unless ENV.fetch('RUBOCOP_DEBUG', false)
70
+
62
71
  <<~RUBY
63
72
  n = node.children.size
64
73
  raise DebugError, [
@@ -72,18 +81,18 @@ module RuboCop
72
81
  extend CallbackCompiler
73
82
  send_code = CallbackCompiler::SEND
74
83
 
75
- ### arity == 0
84
+ ### children count == 0
76
85
  no_children = %i[true false nil self cbase zsuper redo retry
77
86
  forward_args forwarded_args match_nil_pattern
78
87
  forward_arg forwarded_restarg forwarded_kwrestarg
79
88
  lambda empty_else kwnilarg
80
89
  __FILE__ __LINE__ __ENCODING__]
81
90
 
82
- ### arity == 0..1
91
+ ### children count == 0..1
83
92
  opt_symbol_child = %i[restarg kwrestarg]
84
93
  opt_node_child = %i[splat kwsplat match_rest]
85
94
 
86
- ### arity == 1
95
+ ### children count == 1
87
96
  literal_child = %i[int float complex
88
97
  rational str sym lvar
89
98
  ivar cvar gvar nth_ref back_ref
@@ -100,12 +109,12 @@ module RuboCop
100
109
  NO_CHILD_NODES = (no_children + opt_symbol_child + literal_child).to_set.freeze
101
110
  private_constant :NO_CHILD_NODES # Used by Commissioner
102
111
 
103
- ### arity > 1
112
+ ### children count > 1
104
113
  symbol_then_opt_node = %i[lvasgn ivasgn cvasgn gvasgn]
105
114
  symbol_then_node_or_nil = %i[optarg kwoptarg]
106
115
  node_then_opt_node = %i[while until module sclass]
107
116
 
108
- ### variable arity
117
+ ### variable children count
109
118
  many_node_children = %i[dstr dsym xstr regexp array hash pair
110
119
  mlhs masgn or_asgn and_asgn rasgn mrasgn
111
120
  undef alias args super yield or and
@@ -121,18 +130,18 @@ module RuboCop
121
130
 
122
131
  ### Callbacks for above
123
132
  def_callback no_children
124
- def_callback opt_symbol_child, :skip, arity: 0..1
125
- def_callback opt_node_child, :nil?, arity: 0..1
133
+ def_callback opt_symbol_child, :skip, expected_children_count: 0..1
134
+ def_callback opt_node_child, :nil?, expected_children_count: 0..1
126
135
 
127
136
  def_callback literal_child, :skip
128
137
  def_callback node_child, :always
129
138
  def_callback node_or_nil_child, :nil?
130
139
 
131
- def_callback symbol_then_opt_node, :skip, :nil?, arity: 1..2
140
+ def_callback symbol_then_opt_node, :skip, :nil?, expected_children_count: 1..2
132
141
  def_callback symbol_then_node_or_nil, :skip, :nil?
133
142
  def_callback node_then_opt_node, :always, :nil?
134
143
 
135
- def_callback many_symbol_children, :skip, arity_check: nil
144
+ def_callback many_symbol_children, :skip, expected_children_count: (0..)
136
145
  def_callback many_node_children, body: <<~RUBY
137
146
  node.children.each { |child| #{send_code} }
138
147
  RUBY
@@ -143,7 +152,7 @@ module RuboCop
143
152
 
144
153
  ### Other particular cases
145
154
  def_callback :const, :nil?, :skip
146
- def_callback :casgn, :nil?, :skip, :nil?, arity: 2..3
155
+ def_callback :casgn, :nil?, :skip, :nil?, expected_children_count: 2..3
147
156
  def_callback :class, :always, :nil?, :nil?
148
157
  def_callback :def, :skip, :always, :nil?
149
158
  def_callback :op_asgn, :always, :skip, :always
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module AST
5
5
  module Version
6
- STRING = '1.38.1'
6
+ STRING = '1.40.0'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-ast
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.1
4
+ version: 1.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bozhidar Batsov
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-02-25 00:00:00.000000000 Z
13
+ date: 2025-03-19 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: parser
@@ -39,6 +39,7 @@ files:
39
39
  - lib/rubocop-ast.rb
40
40
  - lib/rubocop/ast.rb
41
41
  - lib/rubocop/ast/builder.rb
42
+ - lib/rubocop/ast/builder_prism.rb
42
43
  - lib/rubocop/ast/ext/range.rb
43
44
  - lib/rubocop/ast/node.rb
44
45
  - lib/rubocop/ast/node/alias_node.rb