CloneSet3312


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12220.990class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1124652
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java
2134665
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java
Clone Instance
1
Line Count
12
Source Line
4652
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java

protected void consumePrimaryNoNewArrayNameSuper() {
        // PrimaryNoNewArray ::= Name '.' 'super'
        // handle type arguments
        pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]);
        pushOnGenericsLengthStack(0);
        TypeReference typeReference = getTypeReference(0);

        pushOnExpressionStack(
                new QualifiedSuperReference(
                        typeReference, 
                        this.intStack[this.intPtr-- ], 
                        this.endPosition   ));
}


Clone Instance
2
Line Count
13
Source Line
4665
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java

protected void consumePrimaryNoNewArrayNameThis() {
        // PrimaryNoNewArray ::= Name '.' 'this'
        // handle type arguments
        pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]);
        pushOnGenericsLengthStack(0); // handle type arguments

        TypeReference typeReference = getTypeReference(0);

        pushOnExpressionStack(
                new QualifiedThisReference(
                        typeReference, 
                        this.intStack[this.intPtr-- ], 
                        this.endPosition  ));
}


Clone AbstractionParameter Count: 2Parameter Bindings

protected void [[#variableb421c980]]() {
  // PrimaryNoNewArray ::= Name '.' 'super'
  // PrimaryNoNewArray ::= Name '.' 'this'
  // handle type arguments
  pushOnGenericsIdentifiersLengthStack(this.identifierLengthStack[this.identifierLengthPtr]);
  pushOnGenericsLengthStack(0); // handle type arguments
  TypeReference typeReference = getTypeReference(0);
  pushOnExpressionStack(new [[#variableb421c900]](typeReference, this.intStack[this.intPtr-- ], this.endPosition));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b421c980]]
consumePrimaryNoNewArrayNameSuper 
12[[#b421c980]]
consumePrimaryNoNewArrayNameThis 
21[[#b421c900]]
QualifiedSuperReference 
22[[#b421c900]]
QualifiedThisReference