CloneSet2141


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5320.983statement_sequence_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15443
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
25450
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
35457
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
Clone Instance
1
Line Count
5
Source Line
443
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_LocalVariableAttribute)) != null) {
                        if (GENERATE.equals(optionValue)) {
                                this.produceDebugAttributes |= ClassFileConstants.ATTR_VARS;
                        }
                        else   if (DO_NOT_GENERATE.equals(optionValue)) {
                                this.produceDebugAttributes &= ~ClassFileConstants.ATTR_VARS;
                               }
                }


Clone Instance
2
Line Count
5
Source Line
450
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_LineNumberAttribute)) != null) {
                        if (GENERATE.equals(optionValue)) {
                                this.produceDebugAttributes |= ClassFileConstants.ATTR_LINES;
                        }
                        else   if (DO_NOT_GENERATE.equals(optionValue)) {
                                this.produceDebugAttributes &= ~ClassFileConstants.ATTR_LINES;
                               }
                }


Clone Instance
3
Line Count
5
Source Line
457
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_SourceFileAttribute)) != null) {
                        if (GENERATE.equals(optionValue)) {
                                this.produceDebugAttributes |= ClassFileConstants.ATTR_SOURCE;
                        }
                        else   if (DO_NOT_GENERATE.equals(optionValue)) {
                                this.produceDebugAttributes &= ~ClassFileConstants.ATTR_SOURCE;
                               }
                }


Clone AbstractionParameter Count: 2Parameter Bindings

if ((optionValue = optionsMap.get( [[#variable64eff180]])) != null) {
  if (GENERATE.equals(optionValue)) {
    this.produceDebugAttributes |= ClassFileConstants. [[#variable64efef60]];
  }
  else
    if (DO_NOT_GENERATE.equals(optionValue)) {
      this.produceDebugAttributes &= ~ClassFileConstants. [[#variable64efef60]];
    }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#64eff180]]
OPTION_SourceFileAttribute 
12[[#64eff180]]
OPTION_LineNumberAttribute 
13[[#64eff180]]
OPTION_LocalVariableAttribute 
21[[#64efef60]]
ATTR_SOURCE 
22[[#64efef60]]
ATTR_LINES 
23[[#64efef60]]
ATTR_VARS