CloneSet2632


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7220.987class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1725
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/IntLiteral.java
2822
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/LongLiteral.java
Clone Instance
1
Line Count
7
Source Line
25
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/IntLiteral.java

        static final Constant FORMAT_ERROR = DoubleConstant.fromValue(1.0 / 0.0); // NaN;

public IntLiteral(char[] token, int s, int e) {
        super(token, s, e);
}

public IntLiteral(char[] token, int s, int e, int value) {
        this(token, s, e);
        this.value = value;
}


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

        static final Constant FORMAT_ERROR = DoubleConstant.fromValue(1.0 / 0.0); // NaN; 

public LongLiteral(char[] token, int s, int e) {
        super(token, s, e);
}

public LongLiteral(char[] token, int s, int e, long value) {
        this(token, s, e);
        this.value = value;
}


Clone AbstractionParameter Count: 2Parameter Bindings

static final Constant FORMAT_ERROR = DoubleConstant.fromValue(1.0 / 0.0); // NaN; // NaN; 

public [[#variable564dde60]](char[] token, int s, int e) {
  super(token, s, e);
}

public [[#variable564dde60]](char[] token, int s, int e, [[#variable564dc0c0]] value) {
  this(token, s, e);
  this.value = value;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#564dde60]]
IntLiteral 
12[[#564dde60]]
LongLiteral 
21[[#564dc0c0]]
int 
22[[#564dc0c0]]
long