CloneSet536


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8201.000block
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18573
E:/TSE/Projects-CloneDR/jEdit-4.2/src/org/objectweb/asm/CodeWriter.java
28636
E:/TSE/Projects-CloneDR/jEdit-4.2/src/org/objectweb/asm/CodeWriter.java
Next
Last
Clone Instance
1
Line Count
8
Source Line
573
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/org/objectweb/asm/CodeWriter.java

{
  // updates current and max stack sizes only if opcode == NEWARRAY
  // (stack size variation = 0 for BIPUSH or SIPUSH)
  int size = stackSize + 1;
  if (size > maxStackSize) {
    maxStackSize = size;
  }
  stackSize = size;
}


First
Previous
Clone Instance
2
Line Count
8
Source Line
636
Source File
E:/TSE/Projects-CloneDR/jEdit-4.2/src/org/objectweb/asm/CodeWriter.java

{
  // updates current and max stack sizes only if opcode == NEW
  // (stack size variation = 0 for ANEWARRAY, CHECKCAST, INSTANCEOF)
  int size = stackSize + 1;
  if (size > maxStackSize) {
    maxStackSize = size;
  }
  stackSize = size;
}


Clone AbstractionParameter Count: 0Parameter Bindings

{
  // updates current and max stack sizes only if opcode == NEWARRAY
  // (stack size variation = 0 for BIPUSH or SIPUSH)
  // updates current and max stack sizes only if opcode == NEW
  // (stack size variation = 0 for ANEWARRAY, CHECKCAST, INSTANCEOF)
  int size = stackSize + 1;
  if (size > maxStackSize) {
    maxStackSize = size;
  }
  stackSize = size;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None