CloneSet3601


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.989statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16639
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/NaiveASTFlattener.java
26649
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/NaiveASTFlattener.java
Clone Instance
1
Line Count
6
Source Line
639
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/NaiveASTFlattener.java

                for (Iterator it = node.initializers().iterator(); it.hasNext();)  {
                        Expression e = (Expression) it.next();
                        e.accept(this );
                        if (it.hasNext()) buffer.append(", "); //$NON-NLS-1$
                }
                this.buffer.append("; "); //$NON-NLS-1$


Clone Instance
2
Line Count
6
Source Line
649
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/NaiveASTFlattener.java

                for (Iterator it = node.updaters().iterator(); it.hasNext();)  {
                        Expression e = (Expression) it.next();
                        e.accept(this );
                        if (it.hasNext()) buffer.append(", "); //$NON-NLS-1$
                }
                this.buffer.append(") "); //$NON-NLS-1$


Clone AbstractionParameter Count: 2Parameter Bindings

for (Iterator it = node. [[#variablec18d7ee0]]().iterator(); it.hasNext();) {
  Expression e = (Expression) it.next();
  e.accept(this );
  if (it.hasNext())
    buffer.append(", "); //$NON-NLS-1$
}
this.buffer.append( [[#variablec18d6f00]]); //$NON-NLS-1$
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#c18d7ee0]]
updaters 
12[[#c18d7ee0]]
initializers 
21[[#c18d6f00]]
") " 
22[[#c18d6f00]]
"; "