CloneSet1164


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4220.981ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1368
Closure/closure/goog/cssom/cssom.js
2481
Closure/closure/goog/cssom/cssom.js
Clone Instance
1
Line Count
3
Source Line
68
Source File
Closure/closure/goog/cssom/cssom.js

/**
 * Recursively gets all CSS as text, optionally starting from a given
 * CSSStyleSheet.
 * @param {CSSStyleSheet=} opt_styleSheet The CSSStyleSheet.
 * @return {string} css text.
 */
goog.cssom.getAllCssText=  function (opt_styleSheet){
  var styleSheet=  opt_styleSheet
                   ||                document.styleSheets;
  return /** @type {string} */
                               (goog.cssom.getAllCss_(styleSheet, true));
                                                    } ;


Clone Instance
2
Line Count
4
Source Line
81
Source File
Closure/closure/goog/cssom/cssom.js

/**
 * Recursively gets all CSSStyleRules, optionally starting from a given
 * CSSStyleSheet.
 * Note that this excludes any CSSImportRules, CSSMediaRules, etc..
 * @param {CSSStyleSheet=} opt_styleSheet The CSSStyleSheet.
 * @return {Array.<CSSStyleRule>} A list of CSSStyleRules.
 */
goog.cssom.getAllCssStyleRules=  function (opt_styleSheet){
  var styleSheet=  opt_styleSheet
                   ||                document.styleSheets;
  return /** @type {Array.<CSSStyleRule>} */
                                             (
      goog.cssom.getAllCss_(styleSheet, false));
                                                          } ;


Clone AbstractionParameter Count: 2Parameter Bindings

/**
 * Recursively gets all CSSStyleRules, optionally starting from a given
 * CSSStyleSheet.
 * Note that this excludes any CSSImportRules, CSSMediaRules, etc..
 * @param {CSSStyleSheet=} opt_styleSheet The CSSStyleSheet.
 * @return {Array.<CSSStyleRule>} A list of CSSStyleRules.
 */
/**
 * Recursively gets all CSS as text, optionally starting from a given
 * CSSStyleSheet.
 * @param {CSSStyleSheet=} opt_styleSheet The CSSStyleSheet.
 * @return {string} css text.
 */
goog.cssom. [[#variable62f473c0]]= function (opt_styleSheet)
                                   { var styleSheet=opt_styleSheet
                                                    || document.styleSheets;
                                     return /** @type {Array.<CSSStyleRule>} */ /** @type {string} */
                                     (goog.cssom.getAllCss_(styleSheet, [[#variable62f472a0]]));
                                   } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#62f473c0]]
getAllCssStyleRules 
12[[#62f473c0]]
getAllCssText 
21[[#62f472a0]]
false 
22[[#62f472a0]]
true