CloneSet1489


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2220.977ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12645
Closure/closure/goog/math/integer.js
22686
Closure/closure/goog/math/long.js
Clone Instance
1
Line Count
2
Source Line
645
Source File
Closure/closure/goog/math/integer.js

/**
 * Returns this Integer modulo the given one.
 * @param {goog.math.Integer} other The Integer by which to mod.
 * @return {goog.math.Integer} This value modulo the given one.
 */
goog.math.Integer.prototype.modulo=  function (other){
  return this.subtract(this.divide(other).multiply(other));
                                                     } ;


Clone Instance
2
Line Count
2
Source Line
686
Source File
Closure/closure/goog/math/long.js

/**
 * Returns this Long modulo the given one.
 * @param {goog.math.Long} other Long by which to mod.
 * @return {goog.math.Long} This Long modulo the given one.
 */
goog.math.Long.prototype.modulo=  function (other){
  return this.subtract(this.div(other).multiply(other));
                                                  } ;


Clone AbstractionParameter Count: 2Parameter Bindings

/**
 * Returns this Integer modulo the given one.
 * @param {goog.math.Integer} other The Integer by which to mod.
 * @return {goog.math.Integer} This value modulo the given one.
 */
/**
 * Returns this Long modulo the given one.
 * @param {goog.math.Long} other Long by which to mod.
 * @return {goog.math.Long} This Long modulo the given one.
 */
goog.math. [[#variable573f4340]].prototype.modulo= function (other)
                                                   { return this.subtract(this. [[#variable573f42c0]](other).multiply(other));
                                                   } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#573f4340]]
Integer 
12[[#573f4340]]
Long 
21[[#573f42c0]]
divide 
22[[#573f42c0]]
div