CloneSet815


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4320.973Case
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14633
Closure/closure/goog/graphics/svggraphics.js
24637
Closure/closure/goog/graphics/svggraphics.js
34641
Closure/closure/goog/graphics/svggraphics.js
Clone Instance
1
Line Count
4
Source Line
633
Source File
Closure/closure/goog/graphics/svggraphics.js

      case goog.graphics.Path.Segment.MOVETO:
        list.push('M');
        Array.prototype.push.apply(list, args);
        break;


Clone Instance
2
Line Count
4
Source Line
637
Source File
Closure/closure/goog/graphics/svggraphics.js

      case goog.graphics.Path.Segment.LINETO:
        list.push('L');
        Array.prototype.push.apply(list, args);
        break;


Clone Instance
3
Line Count
4
Source Line
641
Source File
Closure/closure/goog/graphics/svggraphics.js

      case goog.graphics.Path.Segment.CURVETO:
        list.push('C');
        Array.prototype.push.apply(list, args);
        break;


Clone AbstractionParameter Count: 2Parameter Bindings

case goog.graphics.Path.Segment. [[#variable61bae680]]:
  list.push( [[#variable61bae560]]);
  Array.prototype.push.apply(list,args);
  break;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#61bae680]]
MOVETO 
12[[#61bae680]]
LINETO 
13[[#61bae680]]
CURVETO 
21[[#61bae560]]
'M' 
22[[#61bae560]]
'L' 
23[[#61bae560]]
'C'