TestingResearchIllinois/NonDex

View on GitHub
nondex-instrumentation/src/main/java/edu/illinois/nondex/instr/IdentityHashMapShufflingAdder.java

Summary

Maintainability
D
1 day
Test Coverage

Method visitMethod has 153 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    @Override
    public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
        if ("hasNext".equals(name)) {
            return super.visitMethod(access, "originalHasNext", desc, signature, exceptions);
        }

    Method addNextIndex has 79 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public void addNextIndex() {
            MethodVisitor mv = super.visitMethod(Opcodes.ACC_PROTECTED, "nextIndex", "()I", null, null);
            mv.visitCode();
            mv.visitVarInsn(Opcodes.ALOAD, 0);
            mv.visitFieldInsn(Opcodes.GETFIELD, "java/util/IdentityHashMap$IdentityHashMapIterator", "this$0",

      File IdentityHashMapShufflingAdder.java has 293 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      /*
      The MIT License (MIT)
      Copyright (c) 2015 Alex Gyori
      Copyright (c) 2022 Kaiyao Ke
      Copyright (c) 2015 Owolabi Legunsen

        Method visitMethod has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
        Open

            @Override
            public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
                if ("hasNext".equals(name)) {
                    return super.visitMethod(access, "originalHasNext", desc, signature, exceptions);
                }

        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 visitMethod has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {

          There are no issues that match your filters.

          Category
          Status