We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fa3037 commit 906b40dCopy full SHA for 906b40d
2 files changed
Gemfile
@@ -8,7 +8,7 @@ gemspec
8
gem 'debug'
9
gem 'gouteur', '~> 1.0'
10
gem 'mini_racer', '~> 0.19'
11
-gem 'rake', '~> 13.0'
+gem 'rake', '~> 13.3'
12
gem 'rspec', '~> 3.13'
13
-gem 'rubocop', '~> 1.68'
+gem 'rubocop', '~> 1.79'
14
gem 'simplecov-cobertura'
lib/js_regex/converter/backreference_converter.rb
@@ -36,7 +36,7 @@ def convert_to_plain_num_ref
36
37
# Check if this backreference refers to a group that was recursively called
38
original_group = target_position
39
- if recursive_position = context.get_recursive_group_position(original_group)
+ if (recursive_position = context.get_recursive_group_position(original_group))
40
# Use the position of the group created by the recursive call
41
position = recursive_position
42
end
0 commit comments