CloneSet178


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2820.975ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12485
Closure/closure/goog/debug/logger.js
22497
Closure/closure/goog/debug/logger.js
32509
Closure/closure/goog/debug/logger.js
42521
Closure/closure/goog/debug/logger.js
52533
Closure/closure/goog/debug/logger.js
62545
Closure/closure/goog/debug/logger.js
72557
Closure/closure/goog/debug/logger.js
82569
Closure/closure/goog/debug/logger.js
Clone Instance
1
Line Count
2
Source Line
485
Source File
Closure/closure/goog/debug/logger.js

/**
 * Log a message at the Logger.Level.SHOUT level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype.shout=  function (msg, opt_exception){
  this.log(goog.debug.Logger.Level.SHOUT, msg, opt_exception);
                                                                 } ;


Clone Instance
2
Line Count
2
Source Line
497
Source File
Closure/closure/goog/debug/logger.js

/**
 * Log a message at the Logger.Level.SEVERE level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype.severe=  function (msg, opt_exception){
  this.log(goog.debug.Logger.Level.SEVERE, msg, opt_exception);
                                                                  } ;


Clone Instance
3
Line Count
2
Source Line
509
Source File
Closure/closure/goog/debug/logger.js

/**
 * Log a message at the Logger.Level.WARNING level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype.warning=  function (msg, opt_exception){
  this.log(goog.debug.Logger.Level.WARNING, msg, opt_exception);
                                                                   } ;


Clone Instance
4
Line Count
2
Source Line
521
Source File
Closure/closure/goog/debug/logger.js

/**
 * Log a message at the Logger.Level.INFO level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype.info=  function (msg, opt_exception){
  this.log(goog.debug.Logger.Level.INFO, msg, opt_exception);
                                                                } ;


Clone Instance
5
Line Count
2
Source Line
533
Source File
Closure/closure/goog/debug/logger.js

/**
 * Log a message at the Logger.Level.CONFIG level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype.config=  function (msg, opt_exception){
  this.log(goog.debug.Logger.Level.CONFIG, msg, opt_exception);
                                                                  } ;


Clone Instance
6
Line Count
2
Source Line
545
Source File
Closure/closure/goog/debug/logger.js

/**
 * Log a message at the Logger.Level.FINE level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype.fine=  function (msg, opt_exception){
  this.log(goog.debug.Logger.Level.FINE, msg, opt_exception);
                                                                } ;


Clone Instance
7
Line Count
2
Source Line
557
Source File
Closure/closure/goog/debug/logger.js

/**
 * Log a message at the Logger.Level.FINER level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype.finer=  function (msg, opt_exception){
  this.log(goog.debug.Logger.Level.FINER, msg, opt_exception);
                                                                 } ;


Clone Instance
8
Line Count
2
Source Line
569
Source File
Closure/closure/goog/debug/logger.js

/**
 * Log a message at the Logger.Level.FINEST level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype.finest=  function (msg, opt_exception){
  this.log(goog.debug.Logger.Level.FINEST, msg, opt_exception);
                                                                  } ;


Clone AbstractionParameter Count: 2Parameter Bindings

/**
 * Log a message at the Logger.Level.FINEST level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
/**
 * Log a message at the Logger.Level.FINER level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
/**
 * Log a message at the Logger.Level.FINE level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
/**
 * Log a message at the Logger.Level.CONFIG level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
/**
 * Log a message at the Logger.Level.INFO level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
/**
 * Log a message at the Logger.Level.WARNING level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
/**
 * Log a message at the Logger.Level.SEVERE level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
/**
 * Log a message at the Logger.Level.SHOUT level.
 * If the logger is currently enabled for the given message level then the
 * given message is forwarded to all the registered output Handler objects.
 * @param {string} msg The string message.
 * @param {Error=} opt_exception An exception associated with the message.
 */
goog.debug.Logger.prototype. [[#variable61694f40]]= function (msg,opt_exception)
                                                    { this.log(goog.debug.Logger.Level. [[#variable5d890cc0]],msg,opt_exception);
                                                    } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#61694f40]]
finest 
12[[#61694f40]]
finer 
13[[#61694f40]]
fine 
14[[#61694f40]]
config 
15[[#61694f40]]
info 
16[[#61694f40]]
warning 
17[[#61694f40]]
severe 
18[[#61694f40]]
shout 
21[[#5d890cc0]]
FINEST 
22[[#5d890cc0]]
FINER 
23[[#5d890cc0]]
FINE 
24[[#5d890cc0]]
CONFIG 
25[[#5d890cc0]]
INFO 
26[[#5d890cc0]]
WARNING 
27[[#5d890cc0]]
SEVERE 
28[[#5d890cc0]]
SHOUT