CloneSet759


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11210.984SourceElements[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111398
Closure/closure/goog/math/integer.js
211410
Closure/closure/goog/math/long.js
Clone Instance
1
Line Count
11
Source Line
398
Source File
Closure/closure/goog/math/integer.js

/**
 * @param {goog.math.Integer} other Integer to compare against.
 * @return {boolean} Whether this Integer is less than the other.
 */
goog.math.Integer.prototype.lessThan=  function (other){
  return this.compare(other)<  0;
                                                       } ;


/**
 * @param {goog.math.Integer} other Integer to compare against.
 * @return {boolean} Whether this Integer is less than or equal to the other.
 */
goog.math.Integer.prototype.lessThanOrEqual=  function (other){
  return this.compare(other)<=  0;
                                                              } ;


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

/**
 * @param {goog.math.Long} other Long to compare against.
 * @return {boolean} Whether this Long is less than the other.
 */
goog.math.Long.prototype.lessThan=  function (other){
  return this.compare(other)<  0;
                                                    } ;


/**
 * @param {goog.math.Long} other Long to compare against.
 * @return {boolean} Whether this Long is less than or equal to the other.
 */
goog.math.Long.prototype.lessThanOrEqual=  function (other){
  return this.compare(other)<=  0;
                                                           } ;


Clone AbstractionParameter Count: 1Parameter Bindings

/**
 * @param {goog.math.Long} other Long to compare against.
 * @return {boolean} Whether this Long is less than the other.
 */
/**
 * @param {goog.math.Integer} other Integer to compare against.
 * @return {boolean} Whether this Integer is less than the other.
 */
goog.math. [[#variable62a20800]].prototype.lessThan= function (other)
                                                     { return this.compare(other)<0;
                                                     } ;
/**
 * @param {goog.math.Long} other Long to compare against.
 * @return {boolean} Whether this Long is less than or equal to the other.
 */
/**
 * @param {goog.math.Integer} other Integer to compare against.
 * @return {boolean} Whether this Integer is less than or equal to the other.
 */
goog.math. [[#variable62a20800]].prototype.lessThanOrEqual= function (other)
                                                            { return this.compare(other)<=0;
                                                            } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#62a20800]]
Long 
12[[#62a20800]]
Integer