Assignment Branch Condition size for _deserialize_dictionary is too high. [37.55/20] Open
def _deserialize_dictionary(cfdictionary)
if cfdictionary.value.key?('NS.rectval')
return self._deserialize_object(cfdictionary.value['NS.rectval'])
end
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric
Assignment Branch Condition size for _deserialize_object is too high. [20.62/20] Open
def _deserialize_object(object)
if object.is_a?(CFPropertyList::CFUid)
self._deserialize_object(@objects[object.value])
elsif object.is_a?(CFPropertyList::CFString) && object.value == '$null'
nil
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric
Method _deserialize_uid
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
def _deserialize_uid(uid)
object = @objects[uid.value]
if object.is_a?(CFPropertyList::CFUid)
_deserialize_uid(uid)
- Read upRead up
- Create a ticketCreate a ticket
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 _deserialize_object
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def _deserialize_object(object)
if object.is_a?(CFPropertyList::CFUid)
self._deserialize_object(@objects[object.value])
elsif object.is_a?(CFPropertyList::CFString) && object.value == '$null'
nil
- Read upRead up
- Create a ticketCreate a ticket
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 _deserialize_dictionary
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def _deserialize_dictionary(cfdictionary)
if cfdictionary.value.key?('NS.rectval')
return self._deserialize_object(cfdictionary.value['NS.rectval'])
end
- Read upRead up
- Create a ticketCreate a ticket
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"