CloneSet3380


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12201.000statement_sequence[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
112328
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadocParser.java
212422
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java
Clone Instance
1
Line Count
12
Source Line
328
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/complete/CompletionJavadocParser.java

                        // Read argument type reference
                        try {
                                typeRef = parseQualifiedName(false);
                                if (this.abort) return null; // May be aborted by specialized parser
                        } catch (InvalidInputException e) {
                                break nextArg;
                          }
                        boolean firstArg = modulo == 0;
                        if (firstArg) { // verify position
                                if (iToken != 0)
                                        break nextArg;
                        }
                        else   if ((iToken % modulo) != 0) {
                                        break nextArg;
                               }


Clone Instance
2
Line Count
12
Source Line
422
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/AbstractCommentParser.java

                        // Read argument type reference
                        try {
                                typeRef = parseQualifiedName(false);
                                if (this.abort) return null; // May be aborted by specialized parser
                        } catch (InvalidInputException e) {
                                break nextArg;
                          }
                        boolean firstArg = modulo == 0;
                        if (firstArg) { // verify position
                                if (iToken != 0)
                                        break nextArg;
                        }
                        else   if ((iToken % modulo) != 0) {
                                        break nextArg;
                               }


Clone AbstractionParameter Count: 0Parameter Bindings

// Read argument type reference
try {
  typeRef = parseQualifiedName(false);
  if (this.abort)
    return null; // May be aborted by specialized parser
}
catch (InvalidInputException e) {
  break nextArg;
}
boolean firstArg = modulo == 0;
if (firstArg) { // verify position
  if (iToken != 0)
    break nextArg;
}
else
  if ((iToken % modulo) != 0) {
    break nextArg;
  }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None