rubocop-ast 1.19.1 → 1.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e32d1b0d664c33b761e14d1b1dec62fff12fdd2f04fb12dfd5e44fbbd19911b3
4
- data.tar.gz: f4d130950092a65aca3faa24b5666b987de09a80e454257158bbf849d83f3be4
3
+ metadata.gz: 3042a6ea6c8061c98af6f9266c3c25753d9c6fa44da970def28268322e1a95d4
4
+ data.tar.gz: 6ca67765b5da2f93381655e0669eba37cfe9c12a81b8e29e0c3a57ce9fd98c55
5
5
  SHA512:
6
- metadata.gz: 88422179e07e4f7b3aa971502f1e5246bdae6cbdd5ba8de4d5d80fc1761eeaca6be0762c870054faef50734e727127931d207773b8ef41cc08c4a7d663112e47
7
- data.tar.gz: '0974549ce865ae025d0a3ca441cb090f2b4518fa0a40132ce72b8a823dccc93d3e45c914216bdb9eac19706d625d887205206cdc3458c30fb62f3f874e172f47'
6
+ metadata.gz: 5f2eb5ee0b03efc771f32464253980ac8bd4a583db82eb7e59f7b4784ac29cf22e63f118aff1493d215d60e4a9a25843912f72f8d11baea8554d4be1135e76b7
7
+ data.tar.gz: 2dfd094259a9585e0376034f21b8073736fa681799b16fd420511bea725878573e1e0aa3a52211dc5f3672e9812c440270727e7e4f06ffacaaa592c742ba37ae
@@ -249,7 +249,7 @@ module RuboCop
249
249
  ^{ # or the parent is...
250
250
  sclass class module class_constructor? # a class-like node
251
251
  [ { # or some "wrapper"
252
- kwbegin begin block
252
+ kwbegin begin block numblock
253
253
  (if _condition <%0 _>) # note: we're excluding the condition of `if` nodes
254
254
  }
255
255
  #in_macro_scope? # that is itself in a macro scope
@@ -11,6 +11,7 @@ module RuboCop
11
11
  i: Regexp::IGNORECASE,
12
12
  m: Regexp::MULTILINE,
13
13
  n: Regexp::NOENCODING,
14
+ u: Regexp::FIXEDENCODING,
14
15
  o: 0
15
16
  }.freeze
16
17
  private_constant :OPTIONS
@@ -87,6 +88,11 @@ module RuboCop
87
88
  regopt_include?(:n)
88
89
  end
89
90
 
91
+ # @return [Bool] if regexp uses the fixed-encoding regopt
92
+ def fixed_encoding?
93
+ regopt_include?(:u)
94
+ end
95
+
90
96
  private
91
97
 
92
98
  def regopt_include?(option)
@@ -100,6 +100,10 @@ module RuboCop
100
100
  type == :tCOMMA
101
101
  end
102
102
 
103
+ def dot?
104
+ type == :tDOT
105
+ end
106
+
103
107
  def regexp_dots?
104
108
  %i[tDOT2 tDOT3].include?(type)
105
109
  end
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module AST
5
5
  module Version
6
- STRING = '1.19.1'
6
+ STRING = '1.21.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.19.1
4
+ version: 1.21.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: 2022-07-10 00:00:00.000000000 Z
13
+ date: 2022-08-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: parser