CloneSet3649


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
14201.000switch_groups
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1141807
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/Signature.java
2141863
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/Signature.java
Clone Instance
1
Line Count
14
Source Line
1807
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/Signature.java

                        case '.':
                                if (depth == 0) {
                                        lastDot = i;
                                        break lastDotLookup;
                                }
                                break;
                        case '<':
                                depth--;
                                if (depth == 0) lastGenericStart = i;
                                break;
                        case '>':
                                if (depth == 0) lastGenericEnd = i;
                                depth++;
                                break;


Clone Instance
2
Line Count
14
Source Line
1863
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/Signature.java

                        case '.':
                                if (depth == 0) {
                                        lastDot = i;
                                        break lastDotLookup;
                                }
                                break;
                        case '<':
                                depth--;
                                if (depth == 0) lastGenericStart = i;
                                break;
                        case '>':
                                if (depth == 0) lastGenericEnd = i;
                                depth++;
                                break;


Clone AbstractionParameter Count: 0Parameter Bindings

case '.':
  if (depth == 0) {
    lastDot = i;
    break lastDotLookup;
  }
  break;
case '<':
  depth--;
  if (depth == 0)
    lastGenericStart = i;
  break;
case '>':
  if (depth == 0)
    lastGenericEnd = i;
  depth++;
  break;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None