CloneSet694


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7220.971StatementList[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1772
Closure/closure/goog/gears/managedresourcestore.js
21462
Closure/closure/goog/gears/urlcapture.js
Clone Instance
1
Line Count
7
Source Line
72
Source File
Closure/closure/goog/gears/managedresourcestore.js

  this.name_=  goog.gears.makeSafeFileName(name);
  if (name!=  this.name_) {
    this.logger_.info(
        'managed resource store name '+  name+  '->'+  this.name_);
                          }

  this.requiredCookie_=  requiredCookie
                         ?                String(requiredCookie)
                         :                                         null;


Clone Instance
2
Line Count
14
Source Line
62
Source File
Closure/closure/goog/gears/urlcapture.js

  /**
   * Name of resource store.
   * @type {string}
   * @private
   */
  this.storeName_=  goog.gears.makeSafeFileName(name);
  if (name!=  this.storeName_) {
    this.logger_.info(
        'local store name '+  name+  '->'+  this.storeName_);
                               }

  /**
   * A cookie that must be present for the store to be active.
   * Should have the form "foo=bar". String cast is a safety measure since
   * Gears behaves very badly when it gets an unexpected data type.
   * @type {?string}
   * @private
   */
  this.requiredCookie_=  requiredCookie
                         ?                String(requiredCookie)
                         :                                         null;


Clone AbstractionParameter Count: 2Parameter Bindings

/**
   * Name of resource store.
   * @type {string}
   * @private
   */
this. [[#variable62e1dbe0]]=goog.gears.makeSafeFileName(name);
if (name!=this. [[#variable62e1dbe0]])
  { this.logger_.info( [[#variable2002a820]]+name+'->'+this. [[#variable62e1dbe0]]);
  }
/**
   * A cookie that must be present for the store to be active.
   * Should have the form "foo=bar". String cast is a safety measure since
   * Gears behaves very badly when it gets an unexpected data type.
   * @type {?string}
   * @private
   */
this.requiredCookie_=requiredCookie
                     ?String(requiredCookie)
                     :null;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#62e1dbe0]]
name_ 
12[[#62e1dbe0]]
storeName_ 
21[[#2002a820]]
'managed resource store name ' 
22[[#2002a820]]
'local store name '