Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
8 | 3 | 3 | 0.972 | class_body_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 8 | 1786 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
2 | 8 | 1861 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
3 | 8 | 3295 | plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/ASTInstructionCompiler.java |
| ||||
/** * @see ASTVisitor#visit(BooleanLiteral) */ public boolean visit(BooleanLiteral node) { if ( !isActive()) { return false; } push(new PushBoolean(node.booleanValue())); return true; } |
| ||||
/** * @see ASTVisitor#visit(CharacterLiteral) */ public boolean visit(CharacterLiteral node) { if ( !isActive()) { return false; } push(new PushChar(node.charValue())); return true; } |
| ||||
/** * @see ASTVisitor#visit(StringLiteral) */ public boolean visit(StringLiteral node) { if ( !isActive()) { return false; } push(new PushString(node.getLiteralValue())); return true; } |
| |||
/** * @see ASTVisitor#visit(BooleanLiteral) */ /** * @see ASTVisitor#visit(CharacterLiteral) */ /** * @see ASTVisitor#visit(StringLiteral) */ public boolean visit( [[#variablea51d0b40]] node) { if ( !isActive()) { return false; } push(new [[#variablea51d0ac0]](node. [[#variablea51d09e0]]())); return true; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#a51d0b40]] | BooleanLiteral |
1 | 2 | [[#a51d0b40]] | CharacterLiteral |
1 | 3 | [[#a51d0b40]] | StringLiteral |
2 | 1 | [[#a51d0ac0]] | PushBoolean |
2 | 2 | [[#a51d0ac0]] | PushChar |
2 | 3 | [[#a51d0ac0]] | PushString |
3 | 1 | [[#a51d09e0]] | booleanValue |
3 | 2 | [[#a51d09e0]] | charValue |
3 | 3 | [[#a51d09e0]] | getLiteralValue |