| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 3 | 3 | 1 | 0.979 | statement_sequence_member |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 3 | 56 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/Block.java |
| 2 | 3 | 225 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ForStatement.java |
| 3 | 3 | 285 | plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ForStatement.java |
| ||||
if (statements != null) {
for (int i = 0, max = statements.length; i < max; i++) {
statements[i].generateCode(scope, codeStream);
}
} // for local variable debug attributes
|
| ||||
// generate the initializations
if (initializations != null) {
for (int i = 0, max = initializations.length; i < max; i++) {
initializations[i].generateCode(scope, codeStream);
}
}
|
| ||||
// generate the increments for next iteration
if (increments != null) {
for (int i = 0, max = increments.length; i < max; i++) {
increments[i].generateCode(scope, codeStream);
}
}
|
| |||
// generate the initializations
// generate the increments for next iteration
if ( [[#variable993e1800]]!= null) {
for (int i = 0, max = [[#variable993e1800]].length; i < max; i++) {
[[#variable993e1800]][i].generateCode(scope, codeStream);
}
} // for local variable debug attributes
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#993e1800]] | initializations |
| 1 | 2 | [[#993e1800]] | increments |
| 1 | 3 | [[#993e1800]] | statements |