CloneSet386


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6230.984ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
16228
Closure/closure/goog/dom/tagiterator.js
26241
Closure/closure/goog/dom/tagiterator.js
Clone Instance
1
Line Count
6
Source Line
228
Source File
Closure/closure/goog/dom/tagiterator.js

/**
 * Skip the current tag.
 */
goog.dom.TagIterator.prototype.skipTag=  function ( )
                                                    {
  var check=  this.reversed
              ?               goog.dom.TagWalkType.END_TAG
              :goog.dom.TagWalkType.START_TAG;
  if (this.tagType==  check) {
    this.tagType=  /** @type {goog.dom.TagWalkType} */
                                                       (check*  -1);
    this.depth+=  this.tagType*  (this.reversed
                                  ?               -1
                                  :                    1);
                             }
                                                    } ;


Clone Instance
2
Line Count
6
Source Line
241
Source File
Closure/closure/goog/dom/tagiterator.js

/**
 * Restart the current tag.
 */
goog.dom.TagIterator.prototype.restartTag=  function ( )
                                                       {
  var check=  this.reversed
              ?               goog.dom.TagWalkType.START_TAG
              :goog.dom.TagWalkType.END_TAG;
  if (this.tagType==  check) {
    this.tagType=  /** @type {goog.dom.TagWalkType} */
                                                       (check*  -1);
    this.depth+=  this.tagType*  (this.reversed
                                  ?               -1
                                  :                    1);
                             }
                                                       } ;


Clone AbstractionParameter Count: 3Parameter Bindings

/**
 * Restart the current tag.
 */
/**
 * Skip the current tag.
 */
goog.dom.TagIterator.prototype. [[#variable62f22b00]]= function ( )
                                                       { var check=this.reversed
                                                                   ?goog.dom.TagWalkType. [[#variable62f22aa0]]
                                                                   :goog.dom.TagWalkType. [[#variable62f22a40]];
                                                         if (this.tagType==check)
                                                           { this.tagType= /** @type {goog.dom.TagWalkType} */
                                                             (check*-1);
                                                             this.depth+=this.tagType*(this.reversed
                                                                                       ?-1
                                                                                       : 1);
                                                           }
                                                       } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#62f22b00]]
restartTag 
12[[#62f22b00]]
skipTag 
21[[#62f22aa0]]
START_TAG 
22[[#62f22aa0]]
END_TAG 
31[[#62f22a40]]
END_TAG 
32[[#62f22a40]]
START_TAG