| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 8 | 9 | 3 | 0.971 | class_body_declaration |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 8 | 1960 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| 2 | 7 | 2007 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| 3 | 6 | 2019 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| 4 | 8 | 2252 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| 5 | 6 | 2575 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| 6 | 6 | 3185 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| 7 | 6 | 3592 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| 8 | 8 | 3646 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| 9 | 7 | 3747 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| ||||
/**
* @see ASTVisitor#visit(ConditionalExpression)
*/
public boolean visit(ConditionalExpression node) {
if ( !isActive()) {
return true;
}
push(new NoOp(fCounter));
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(DoStatement)
*/
public boolean visit(DoStatement node) {
if ( !isActive()) {
return false;
}
push(new NoOp(fCounter));
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(EmptyStatement)
*/
public boolean visit(EmptyStatement node) {
if ( !isActive()) {
return false;
}
push(new NoOp(fCounter));
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(IfStatement)
*/
public boolean visit(IfStatement node) {
if ( !isActive()) {
return false;
}
push(new NoOp(fCounter));
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(InstanceofExpression)
*/
public boolean visit(InstanceofExpression node) {
if ( !isActive()) {
return false;
}
push(new InstanceOfOperator(fCounter));
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ReturnStatement)
*/
public boolean visit(ReturnStatement node) {
if ( !isActive()) {
return false;
}
push(new ReturnInstruction(fCounter));
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(ThrowStatement)
*/
public boolean visit(ThrowStatement node) {
if ( !isActive()) {
return false;
}
push(new ThrowInstruction(fCounter));
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(TypeLiteral)
*/
public boolean visit(TypeLiteral node) {
if ( !isActive()) {
return false;
}
push(new PushClassLiteralValue(fCounter));
return true;
}
|
| ||||
/**
* @see ASTVisitor#visit(WhileStatement)
*/
public boolean visit(WhileStatement node) {
if ( !isActive()) {
return false;
}
push(new NoOp(fCounter));
return true;
}
|
| |||
/**
* @see ASTVisitor#visit(ConditionalExpression)
*/
/**
* @see ASTVisitor#visit(DoStatement)
*/
/**
* @see ASTVisitor#visit(EmptyStatement)
*/
/**
* @see ASTVisitor#visit(IfStatement)
*/
/**
* @see ASTVisitor#visit(InstanceofExpression)
*/
/**
* @see ASTVisitor#visit(ReturnStatement)
*/
/**
* @see ASTVisitor#visit(ThrowStatement)
*/
/**
* @see ASTVisitor#visit(TypeLiteral)
*/
/**
* @see ASTVisitor#visit(WhileStatement)
*/
public boolean visit( [[#variableb7c35c80]] node) {
if ( !isActive()) {
return [[#variableb7c35c20]];
}
push(new [[#variableb7c35bc0]](fCounter));
return true;
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#b7c35c80]] | ConditionalExpression |
| 1 | 2 | [[#b7c35c80]] | DoStatement |
| 1 | 3 | [[#b7c35c80]] | EmptyStatement |
| 1 | 4 | [[#b7c35c80]] | IfStatement |
| 1 | 5 | [[#b7c35c80]] | InstanceofExpression |
| 1 | 6 | [[#b7c35c80]] | ReturnStatement |
| 1 | 7 | [[#b7c35c80]] | ThrowStatement |
| 1 | 8 | [[#b7c35c80]] | TypeLiteral |
| 1 | 9 | [[#b7c35c80]] | WhileStatement |
| 2 | 1 | [[#b7c35c20]] | true |
| 2 | 2 | [[#b7c35c20]] | false |
| 2 | 3 | [[#b7c35c20]] | false |
| 2 | 4 | [[#b7c35c20]] | false |
| 2 | 5 | [[#b7c35c20]] | false |
| 2 | 6 | [[#b7c35c20]] | false |
| 2 | 7 | [[#b7c35c20]] | false |
| 2 | 8 | [[#b7c35c20]] | false |
| 2 | 9 | [[#b7c35c20]] | false |
| 3 | 1 | [[#b7c35bc0]] | NoOp |
| 3 | 2 | [[#b7c35bc0]] | NoOp |
| 3 | 3 | [[#b7c35bc0]] | NoOp |
| 3 | 4 | [[#b7c35bc0]] | NoOp |
| 3 | 5 | [[#b7c35bc0]] | InstanceOfOperator |
| 3 | 6 | [[#b7c35bc0]] | ReturnInstruction |
| 3 | 7 | [[#b7c35bc0]] | ThrowInstruction |
| 3 | 8 | [[#b7c35bc0]] | PushClassLiteralValue |
| 3 | 9 | [[#b7c35bc0]] | NoOp |