CloneSet1527


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
13210.997class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11388
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeParameter.java
213103
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeParameter.java
Clone Instance
1
Line Count
13
Source Line
88
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeParameter.java

        public void traverse(ASTVisitor visitor, BlockScope scope) {
                if (visitor.visit(this, scope)) {
                        if (type != null) {
                                type.traverse(visitor, scope);
                        }
                        if (bounds != null) {
                                int boundsLength = this.bounds.length;
                                for (int i = 0; i < boundsLength; i++) {
                                        this.bounds[i].traverse(visitor, scope);
                                }
                        }
                }
                visitor.endVisit(this, scope);
        }


Clone Instance
2
Line Count
13
Source Line
103
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/TypeParameter.java

        public void traverse(ASTVisitor visitor, ClassScope scope) {
                if (visitor.visit(this, scope)) {
                        if (type != null) {
                                type.traverse(visitor, scope);
                        }
                        if (bounds != null) {
                                int boundsLength = this.bounds.length;
                                for (int i = 0; i < boundsLength; i++) {
                                        this.bounds[i].traverse(visitor, scope);
                                }
                        }
                }
                visitor.endVisit(this, scope);
        }


Clone AbstractionParameter Count: 1Parameter Bindings

public void traverse(ASTVisitor visitor, [[#variableb1a45640]] scope) {
  if (visitor.visit(this, scope)) {
    if (type != null) {
      type.traverse(visitor, scope);
    }
    if (bounds != null) {
      int boundsLength = this.bounds.length;
      for (int i = 0; i < boundsLength; i++) {
        this.bounds[i].traverse(visitor, scope);
      }
    }
  }
  visitor.endVisit(this, scope);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b1a45640]]
BlockScope 
12[[#b1a45640]]
ClassScope