CloneSet1400


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12220.957SourceElements[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1121025
Closure/closure/goog/date/date.js
2121066
Closure/closure/goog/date/date.js
Clone Instance
1
Line Count
12
Source Line
1025
Source File
Closure/closure/goog/date/date.js

/**
 * Sets the month part of the date.
 *
 * @param {number} month The month, where 0 = Jan, 11 = Dec.
 */
goog.date.Date.prototype.setMonth=  function (month){
  this.date_.setMonth(month);
                                                    } ;


/**
 * Sets the day part of the date.
 *
 * @param {number} date The day part.
 */
goog.date.Date.prototype.setDate=  function (date){
  this.date_.setDate(date);
                                                  } ;


Clone Instance
2
Line Count
12
Source Line
1066
Source File
Closure/closure/goog/date/date.js

/**
 * Sets the month part of the date according to universal time.
 *
 * @param {number} month The month, where 0 = Jan, 11 = Dec.
 */
goog.date.Date.prototype.setUTCMonth=  function (month){
  this.date_.setUTCMonth(month);
                                                       } ;


/**
 * Sets the day part of the date according to universal time.
 *
 * @param {number} date The UTC date.
 */
goog.date.Date.prototype.setUTCDate=  function (date){
  this.date_.setUTCDate(date);
                                                     } ;


Clone AbstractionParameter Count: 2Parameter Bindings

/**
 * Sets the month part of the date.
 *
 * @param {number} month The month, where 0 = Jan, 11 = Dec.
 */
/**
 * Sets the month part of the date according to universal time.
 *
 * @param {number} month The month, where 0 = Jan, 11 = Dec.
 */
goog.date.Date.prototype. [[#variable41b80580]]= function (month)
                                                 { this.date_. [[#variable41b80580]](month);
                                                 } ;
/**
 * Sets the day part of the date.
 *
 * @param {number} date The day part.
 */
/**
 * Sets the day part of the date according to universal time.
 *
 * @param {number} date The UTC date.
 */
goog.date.Date.prototype. [[#variable41b80540]]= function (date)
                                                 { this.date_. [[#variable41b80540]](date);
                                                 } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#41b80580]]
setMonth 
12[[#41b80580]]
setUTCMonth 
21[[#41b80540]]
setDate 
22[[#41b80540]]
setUTCDate