CloneSet1503


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12230.953SourceElements[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
116390
Closure/closure/goog/debug/logger.js
212186
Closure/closure/goog/debug/logrecord.js
Clone Instance
1
Line Count
16
Source Line
390
Source File
Closure/closure/goog/debug/logger.js

/**
 * Set the log level specifying which message levels will be logged by this
 * logger. Message levels lower than this value will be discarded.
 * The level value Level.OFF can be used to turn off logging. If the new level
 * is null, it means that this node should inherit its level from its nearest
 * ancestor with a specific (non-null) level value.
 *
 * @param {goog.debug.Logger.Level} level The new level.
 */
goog.debug.Logger.prototype.setLevel=  function (level){
  this.level_=  level;
                                                       } ;


/**
 * Gets the log level specifying which message levels will be logged by this
 * logger. Message levels lower than this value will be discarded.
 * The level value Level.OFF can be used to turn off logging. If the level
 * is null, it means that this node should inherit its level from its nearest
 * ancestor with a specific (non-null) level value.
 *
 * @return {goog.debug.Logger.Level} The level.
 */
goog.debug.Logger.prototype.getLevel=  function ( )
                                                  {
  return this.level_;
                                                  } ;


Clone Instance
2
Line Count
12
Source Line
186
Source File
Closure/closure/goog/debug/logrecord.js

/**
 * Set the logging message level, for example Level.SEVERE.
 * @param {goog.debug.Logger.Level} level the logging message level.
 */
goog.debug.LogRecord.prototype.setLevel=  function (level){
  this.level_=  level;
                                                          } ;


/**
 * Get the "raw" log message, before localization or formatting.
 *
 * @return {string} the raw message string.
 */
goog.debug.LogRecord.prototype.getMessage=  function ( )
                                                       {
  return this.msg_;
                                                       } ;


Clone AbstractionParameter Count: 3Parameter Bindings

/**
 * Set the logging message level, for example Level.SEVERE.
 * @param {goog.debug.Logger.Level} level the logging message level.
 */
/**
 * Set the log level specifying which message levels will be logged by this
 * logger. Message levels lower than this value will be discarded.
 * The level value Level.OFF can be used to turn off logging. If the new level
 * is null, it means that this node should inherit its level from its nearest
 * ancestor with a specific (non-null) level value.
 *
 * @param {goog.debug.Logger.Level} level The new level.
 */
goog.debug. [[#variable63468540]].prototype.setLevel= function (level)
                                                      { this.level_=level;
                                                      } ;
/**
 * Get the "raw" log message, before localization or formatting.
 *
 * @return {string} the raw message string.
 */
/**
 * Gets the log level specifying which message levels will be logged by this
 * logger. Message levels lower than this value will be discarded.
 * The level value Level.OFF can be used to turn off logging. If the level
 * is null, it means that this node should inherit its level from its nearest
 * ancestor with a specific (non-null) level value.
 *
 * @return {goog.debug.Logger.Level} The level.
 */
goog.debug. [[#variable63468540]].prototype. [[#variable634684c0]]= function ( )
                                                                    { return this. [[#variable63468e80]];
                                                                    } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#63468540]]
LogRecord 
12[[#63468540]]
Logger 
21[[#634684c0]]
getMessage 
22[[#634684c0]]
getLevel 
31[[#63468e80]]
msg_ 
32[[#63468e80]]
level_