CloneSet1566


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8210.951statement_sequence[6]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18408
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocParser.java
28376
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/DocCommentParser.java
Clone Instance
1
Line Count
8
Source Line
408
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocParser.java

                                                if (this.scanner.currentCharacter == ' ' || ScannerHelper.isWhitespace(this.scanner.currentCharacter)) {
                                                        break tagNameToken;
                                                }
                                                token = readTokenAndConsume();
                                                char[] ident = this.scanner.getCurrentIdentifierSource();
                                                System.arraycopy(tagName, 0, tagName = new char[length + ident.length], 0, length);
                                                System.arraycopy(ident, 0, tagName, length, ident.length);
                                                this.tagSourceEnd = this.scanner.getCurrentTokenEndPosition();


Clone Instance
2
Line Count
8
Source Line
376
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/DocCommentParser.java

                                                if (this.scanner.currentCharacter == ' ' || ScannerHelper.isWhitespace(this.scanner.currentCharacter)) {
                                                        break tagNameToken;
                                                }
                                                token = readTokenAndConsume();
                                                char[] ident = this.scanner.getCurrentIdentifierSource();
                                                System.arraycopy(tagName, 0, tagName = new char[length + ident.length], 0, length);
                                                System.arraycopy(ident, 0, tagName, length, ident.length);
                                                break;


Clone AbstractionParameter Count: 1Parameter Bindings

if (this.scanner.currentCharacter == ' ' || ScannerHelper.isWhitespace(this.scanner.currentCharacter)) {
  break tagNameToken;
}
token = readTokenAndConsume();
char[] ident = this.scanner.getCurrentIdentifierSource();
System.arraycopy(tagName, 0, tagName = new char[length + ident.length], 0, length);
System.arraycopy(ident, 0, tagName, length, ident.length);
 [[#variable53948380]]
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#53948380]]
this.tagSourceEnd = this.scanner.getCurrentTokenEndPosition(); 
12[[#53948380]]
break;