| 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.979 | SourceElements[2] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 4 | 193 | Closure/closure/goog/debug/formatter.js |
| 2 | 4 | 272 | Closure/closure/goog/debug/formatter.js |
| ||||
/**
* Formatter that returns formatted html. See formatRecord for the classes
* it uses for various types of formatted output.
*
* @param {string=} opt_prefix The prefix to place before text records.
* @constructor
* @extends {goog.debug.Formatter}
*/
goog.debug.HtmlFormatter= function (opt_prefix){
goog.debug.Formatter.call(this, opt_prefix);
} ;
goog.inherits(goog.debug.HtmlFormatter, goog.debug.Formatter);
|
| ||||
/**
* Formatter that returns formatted plain text
*
* @param {string=} opt_prefix The prefix to place before text records.
* @constructor
* @extends {goog.debug.Formatter}
*/
goog.debug.TextFormatter= function (opt_prefix){
goog.debug.Formatter.call(this, opt_prefix);
} ;
goog.inherits(goog.debug.TextFormatter, goog.debug.Formatter);
|
| |||
/**
* Formatter that returns formatted html. See formatRecord for the classes
* it uses for various types of formatted output.
*
* @param {string=} opt_prefix The prefix to place before text records.
* @constructor
* @extends {goog.debug.Formatter}
*/
/**
* Formatter that returns formatted plain text
*
* @param {string=} opt_prefix The prefix to place before text records.
* @constructor
* @extends {goog.debug.Formatter}
*/
goog.debug. [[#variable1e0e31e0]]= function (opt_prefix)
{ goog.debug.Formatter.call(this,opt_prefix);
} ;
goog.inherits(goog.debug. [[#variable1e0e31e0]],goog.debug.Formatter);
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#1e0e31e0]] | HtmlFormatter |
| 1 | 2 | [[#1e0e31e0]] | TextFormatter |