CloneSet631


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7220.981StatementList[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17202
Closure/closure/goog/graphics/path.js
27232
Closure/closure/goog/graphics/path.js
Clone Instance
1
Line Count
7
Source Line
202
Source File
Closure/closure/goog/graphics/path.js

  var lastSegment=  goog.array.peek(this.segments_);
  if (lastSegment==  null) {
    throw Error('Path cannot start with lineTo');
                           }
  if (lastSegment!=  goog.graphics.Path.Segment.LINETO) {
    this.segments_.push(goog.graphics.Path.Segment.LINETO);
    this.count_.push(0);
                                                        }


Clone Instance
2
Line Count
7
Source Line
232
Source File
Closure/closure/goog/graphics/path.js

  var lastSegment=  goog.array.peek(this.segments_);
  if (lastSegment==  null) {
    throw Error('Path cannot start with curve');
                           }
  if (lastSegment!=  goog.graphics.Path.Segment.CURVETO) {
    this.segments_.push(goog.graphics.Path.Segment.CURVETO);
    this.count_.push(0);
                                                         }


Clone AbstractionParameter Count: 2Parameter Bindings

var lastSegment=goog.array.peek(this.segments_);
if (lastSegment==null)
  { throw Error( [[#variable62d5b260]]);
  }
if (lastSegment!=goog.graphics.Path.Segment. [[#variable62ed4800]])
  { this.segments_.push(goog.graphics.Path.Segment. [[#variable62ed4800]]);
    this.count_.push(0);
  }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#62d5b260]]
'Path cannot start with lineTo' 
12[[#62d5b260]]
'Path cannot start with curve' 
21[[#62ed4800]]
LINETO 
22[[#62ed4800]]
CURVETO