CloneSet1488


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2210.977ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1270
Closure/closure/goog/math/coordinate3.js
22121
Closure/closure/goog/math/vec3.js
Clone Instance
1
Line Count
2
Source Line
70
Source File
Closure/closure/goog/math/coordinate3.js

/**
 * Returns a new copy of the coordinate.
 *
 * @return {goog.math.Coordinate3} A clone of this coordinate.
 */
goog.math.Coordinate3.prototype.clone=  function ( )
                                                   {
  return new goog.math.Coordinate3(this.x, this.y, this.z);
                                                   } ;


Clone Instance
2
Line Count
2
Source Line
121
Source File
Closure/closure/goog/math/vec3.js

/**
 * Creates a new copy of this Vec3.
 *
 * @return {goog.math.Vec3} A new vector with the same coordinates as this one.
 */
goog.math.Vec3.prototype.clone=  function ( )
                                            {
  return new goog.math.Vec3(this.x, this.y, this.z);
                                            } ;


Clone AbstractionParameter Count: 1Parameter Bindings

/**
 * Returns a new copy of the coordinate.
 *
 * @return {goog.math.Coordinate3} A clone of this coordinate.
 */
/**
 * Creates a new copy of this Vec3.
 *
 * @return {goog.math.Vec3} A new vector with the same coordinates as this one.
 */
goog.math. [[#variable634a31e0]].prototype.clone= function ( )
                                                  { return new goog.math. [[#variable634a31e0]](this.x,this.y,this.z);
                                                  } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#634a31e0]]
Coordinate3 
12[[#634a31e0]]
Vec3