Showing 151 of 176 total issues
Avoid too many return
statements within this method. Open
Open
return client_settings.handle_cookie(analyze_memory)
Avoid too many return
statements within this method. Open
Open
return client_settings.handle_cookie(dump_exceptions exceptions)
Avoid too many return
statements within this method. Open
Open
return serve_flamegraph(env)
Avoid too many return
statements within this method. Open
Open
return client_settings.handle_cookie([status, headers, body])
Avoid too many return
statements within this method. Open
Open
return tool_disabled_message(client_settings) if !advanced_debugging_enabled?
Avoid too many return
statements within this method. Open
Open
return client_settings.handle_cookie([status, headers, body]) if skip_it
Avoid too many return
statements within this method. Open
Open
return serve_profile_memory(env, client_settings)
Avoid too many return
statements within this method. Open
Open
return client_settings.handle_cookie(dump_env env)
Avoid too many return
statements within this method. Open
Open
return client_settings.handle_cookie(result) if result
Method object_space_stats
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
def object_space_stats
stats = Hash.new(0).compare_by_identity
ids = Hash.new.compare_by_identity
@ignore << stats.__id__
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method move_custom
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
def move_custom(type, custom, destination)
if index = self[:custom_timings][type]&.index(custom)
custom[:parent_timing_id] = destination[:id]
custom.parent = destination
self[:custom_timings][type].slice!(index)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"