CloneSet2827


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8201.000statement_sequence[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1856
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ExtendedStringLiteral.java
2846
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/StringLiteralConcatenation.java
Clone Instance
1
Line Count
8
Source Line
56
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ExtendedStringLiteral.java

                //uddate the source
                int length = source.length;
                System.arraycopy(
                        source, 
                        0, 
                        source = new char[length + lit.source.length], 
                        0, 
                        length  );
                System.arraycopy(lit.source, 0, source, length, lit.source.length);


Clone Instance
2
Line Count
8
Source Line
46
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/StringLiteralConcatenation.java

                //uddate the source
                int length = source.length;
                System.arraycopy(
                        source, 
                        0, 
                        source = new char[length + lit.source.length], 
                        0, 
                        length  );
                System.arraycopy(lit.source, 0, source, length, lit.source.length);


Clone AbstractionParameter Count: 0Parameter Bindings

//uddate the source
int length = source.length;
System.arraycopy(source, 0, source = new char[length + lit.source.length], 0, length);
System.arraycopy(lit.source, 0, source, length, lit.source.length);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None