CloneSet758


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
111380
Closure/closure/goog/math/integer.js
211428
Closure/closure/goog/math/long.js
Clone Instance
1
Line Count
11
Source Line
380
Source File
Closure/closure/goog/math/integer.js

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


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


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

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


/**
 * @param {goog.math.Long} other Long to compare against.
 * @return {boolean} Whether this Long is greater than or equal to the other.
 */
goog.math.Long.prototype.greaterThanOrEqual=  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 greater than the other.
 */
/**
 * @param {goog.math.Integer} other Integer to compare against.
 * @return {boolean} Whether this Integer is greater than the other.
 */
goog.math. [[#variable628bcea0]].prototype.greaterThan= function (other)
                                                        { return this.compare(other)>0;
                                                        } ;
/**
 * @param {goog.math.Long} other Long to compare against.
 * @return {boolean} Whether this Long is greater than or equal to the other.
 */
/**
 * @param {goog.math.Integer} other Integer to compare against.
 * @return {boolean} Whether this Integer is greater than or equal to the other.
 */
goog.math. [[#variable628bcea0]].prototype.greaterThanOrEqual= function (other)
                                                               { return this.compare(other)>=0;
                                                               } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#628bcea0]]
Long 
12[[#628bcea0]]
Integer