Module: RuboCop::Cop::Util
Overview
This module contains a collection of useful utility methods. rubocop:disable Metrics/ModuleLength
Constant Summary
collapse
- LITERAL_REGEX =
Match literal regex characters, not including anchors, character classes, alternatives, groups, repetitions, references, etc
%r{[\w\s\-,"'!#%&<>=;:`~/]|\\[^AbBdDgGhHkpPRwWXsSzZ0-9]}.freeze
Constants included
from PathUtil
PathUtil::HIDDEN_FILE_PATTERN
Class Method Summary
collapse
-
.add_parentheses(node, corrector) ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/MethodLength.
-
.any_descendant?(node, *types) ⇒ Boolean
rubocop:enable Metrics/AbcSize, Metrics/MethodLength.
-
.args_begin(node) ⇒ Object
-
.args_end(node) ⇒ Object
-
.begins_its_line?(range) ⇒ Boolean
-
.comment_line?(line_source) ⇒ Boolean
-
.comment_lines?(node) ⇒ Boolean
deprecated
Deprecated.
Use ‘ProcessedSource#line_with_comment?`, `contains_comment?` or similar
-
.double_quotes_required?(string) ⇒ Boolean
If converting a string to Ruby string literal source code, must double quotes be used?.
-
.escape_string(string) ⇒ Object
-
.first_part_of_call_chain(node) ⇒ Object
Returns, for example, a bare ‘if` node if the given node is an `if` with calls chained to the end of it.
-
.indent(node, offset: 0) ⇒ Object
-
.interpret_string_escapes(string) ⇒ Object
-
.line(node_or_range) ⇒ Object
-
.line_range(node) ⇒ Object
-
.needs_escaping?(string) ⇒ Boolean
-
.on_node(syms, sexp, excludes = []) {|sexp| ... } ⇒ Object
-
.parentheses?(node) ⇒ Boolean
-
.same_line?(node1, node2) ⇒ Boolean
-
.to_string_literal(string) ⇒ Object
-
.to_supported_styles(enforced_style) ⇒ Object
-
.trim_string_interpolation_escape_character(str) ⇒ Object
Methods included from PathUtil
absolute?, glob?, hidden_dir?, hidden_file?, hidden_file_in_not_hidden_dir?, match_path?, maybe_hidden_file?, relative_path, smart_path
Class Method Details
.add_parentheses(node, corrector) ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/MethodLength
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# File 'lib/rubocop/cop/util.rb', line 39
def add_parentheses(node, corrector)
if node.args_type?
arguments_range = node.source_range
args_with_space = range_with_surrounding_space(arguments_range, side: :left)
leading_space = range_between(args_with_space.begin_pos, arguments_range.begin_pos)
corrector.replace(leading_space, '(')
corrector.insert_after(arguments_range, ')')
elsif !node.respond_to?(:arguments)
corrector.wrap(node, '(', ')')
elsif node.arguments.empty?
corrector.insert_after(node, '()')
else
args_begin = args_begin(node)
corrector.remove(args_begin)
corrector.insert_before(args_begin, '(')
corrector.insert_after(args_end(node), ')')
end
end
|
.any_descendant?(node, *types) ⇒ Boolean
rubocop:enable Metrics/AbcSize, Metrics/MethodLength
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# File 'lib/rubocop/cop/util.rb', line 60
def any_descendant?(node, *types)
if block_given?
node.each_descendant(*types) do |descendant|
return true if yield(descendant)
end
else
node.each_descendant do return true
end
end
false
end
|
.args_begin(node) ⇒ Object
75
76
77
78
79
80
81
82
83
84
85
|
# File 'lib/rubocop/cop/util.rb', line 75
def args_begin(node)
loc = node.loc
selector = if node.super_type? || node.yield_type?
loc.keyword
elsif node.def_type? || node.defs_type?
loc.name
else
loc.selector
end
selector.end.resize(1)
end
|
.args_end(node) ⇒ Object
87
88
89
|
# File 'lib/rubocop/cop/util.rb', line 87
def args_end(node)
node.source_range.end
end
|
.begins_its_line?(range) ⇒ Boolean
108
109
110
111
112
113
114
|
# File 'lib/rubocop/cop/util.rb', line 108
def begins_its_line?(range)
if (regex = LINE_BEGINS_REGEX_CACHE[range.column])
range.source_line.match?(regex)
else
range.source_line.index(/\S/) == range.column
end
end
|
17
18
19
|
# File 'lib/rubocop/cop/util.rb', line 17
def (line_source)
/^\s*#/.match?(line_source)
end
|
Deprecated.
Use ‘ProcessedSource#line_with_comment?`, `contains_comment?` or similar
22
23
24
25
26
27
28
|
# File 'lib/rubocop/cop/util.rb', line 22
def (node)
warn Rainbow(<<~WARNING).yellow, uplevel: 1
`comment_lines?` is deprecated. Use `ProcessedSource#line_with_comment?`, `contains_comment?` or similar instead.
WARNING
processed_source[line_range(node)].any? { |line| (line) }
end
|
.double_quotes_required?(string) ⇒ Boolean
If converting a string to Ruby string literal source code, must double quotes be used?
134
135
136
137
138
139
140
141
142
|
# File 'lib/rubocop/cop/util.rb', line 134
def double_quotes_required?(string)
/'|(?<! \\) \\{2}* \\ (?![\\"])/x.match?(string)
end
|
.escape_string(string) ⇒ Object
148
149
150
|
# File 'lib/rubocop/cop/util.rb', line 148
def escape_string(string)
string.inspect[1..-2].tap { |s| s.gsub!('\\"', '"') }
end
|
.first_part_of_call_chain(node) ⇒ Object
Returns, for example, a bare ‘if` node if the given node is an `if` with calls chained to the end of it.
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# File 'lib/rubocop/cop/util.rb', line 118
def first_part_of_call_chain(node)
while node
case node.type
when :send
node = node.receiver
when :block
node = node.send_node
else
break
end
end
node
end
|
.indent(node, offset: 0) ⇒ Object
185
186
187
|
# File 'lib/rubocop/cop/util.rb', line 185
def indent(node, offset: 0)
' ' * (node.loc.column + offset)
end
|
.interpret_string_escapes(string) ⇒ Object
165
166
167
|
# File 'lib/rubocop/cop/util.rb', line 165
def interpret_string_escapes(string)
StringInterpreter.interpret(string)
end
|
.line(node_or_range) ⇒ Object
169
170
171
172
173
174
175
|
# File 'lib/rubocop/cop/util.rb', line 169
def line(node_or_range)
if node_or_range.respond_to?(:line)
node_or_range.line
elsif node_or_range.respond_to?(:loc)
node_or_range.loc.line
end
end
|
.line_range(node) ⇒ Object
30
31
32
|
# File 'lib/rubocop/cop/util.rb', line 30
def line_range(node)
node.first_line..node.last_line
end
|
.needs_escaping?(string) ⇒ Boolean
144
145
146
|
# File 'lib/rubocop/cop/util.rb', line 144
def needs_escaping?(string)
double_quotes_required?(escape_string(string))
end
|
.on_node(syms, sexp, excludes = []) {|sexp| ... } ⇒ Object
91
92
93
94
95
96
97
98
|
# File 'lib/rubocop/cop/util.rb', line 91
def on_node(syms, sexp, excludes = [], &block)
return to_enum(:on_node, syms, sexp, excludes) unless block
yield sexp if include_or_equal?(syms, sexp.type)
return if include_or_equal?(excludes, sexp.type)
sexp.each_child_node { |elem| on_node(syms, elem, excludes, &block) }
end
|
.parentheses?(node) ⇒ Boolean
34
35
36
|
# File 'lib/rubocop/cop/util.rb', line 34
def parentheses?(node)
node.loc.respond_to?(:end) && node.loc.end&.is?(')')
end
|
.same_line?(node1, node2) ⇒ Boolean
177
178
179
180
181
182
183
|
# File 'lib/rubocop/cop/util.rb', line 177
def same_line?(node1, node2)
line1 = line(node1)
line2 = line(node2)
return false unless line1 && line2
line1 == line2
end
|
.to_string_literal(string) ⇒ Object
152
153
154
155
156
157
158
159
|
# File 'lib/rubocop/cop/util.rb', line 152
def to_string_literal(string)
if needs_escaping?(string) && compatible_external_encoding_for?(string)
string.inspect
else
"'#{string.gsub('\\') { '\\\\' }.gsub('\"', '"')}'"
end
end
|
.to_supported_styles(enforced_style) ⇒ Object
191
192
193
194
|
# File 'lib/rubocop/cop/util.rb', line 191
def to_supported_styles(enforced_style)
@to_supported_styles_cache[enforced_style] ||=
enforced_style.sub(/^Enforced/, 'Supported').sub('Style', 'Styles')
end
|
.trim_string_interpolation_escape_character(str) ⇒ Object
161
162
163
|
# File 'lib/rubocop/cop/util.rb', line 161
def trim_string_interpolation_escape_character(str)
str.gsub(/\\\#\{(.*?)\}/) { "\#{#{Regexp.last_match(1)}}" }
end
|