| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 4 | 2 | 1 | 0.974 | SourceElements[2] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 4 | 45 | Closure/closure/goog/module/basemodule.js |
| 2 | 4 | 45 | Closure/closure/goog/module/basemoduleloader.js |
| ||||
/**
* A basic module object that represents a module of Javascript code that can
* be dynamically loaded.
*
* @constructor
* @extends {goog.Disposable}
*/
goog.module.BaseModule= function ( )
{
goog.Disposable.call(this );
} ;
goog.inherits(goog.module.BaseModule, goog.Disposable);
|
| ||||
/**
* A class that loads Javascript modules.
* @constructor
* @extends {goog.Disposable}
* @implements {goog.module.AbstractModuleLoader}
*/
goog.module.BaseModuleLoader= function ( )
{
goog.Disposable.call(this );
} ;
goog.inherits(goog.module.BaseModuleLoader, goog.Disposable);
|
| |||
/**
* A class that loads Javascript modules.
* @constructor
* @extends {goog.Disposable}
* @implements {goog.module.AbstractModuleLoader}
*/
/**
* A basic module object that represents a module of Javascript code that can
* be dynamically loaded.
*
* @constructor
* @extends {goog.Disposable}
*/
goog.module. [[#variable1f192fc0]]= function ( )
{ goog.Disposable.call(this );
} ;
goog.inherits(goog.module. [[#variable1f192fc0]],goog.Disposable);
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#1f192fc0]] | BaseModuleLoader |
| 1 | 2 | [[#1f192fc0]] | BaseModule |