CloneSet867


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3230.964ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14260
Closure/closure/goog/dom/browserrange/abstractrange.js
23474
Closure/closure/goog/dom/textrange.js
Clone Instance
1
Line Count
4
Source Line
260
Source File
Closure/closure/goog/dom/browserrange/abstractrange.js

/**
 * Returns a RangeIterator over the contents of the range.  Regardless of the
 * direction of the range, the iterator will move in document order.
 * @param {boolean=} opt_keys Unused for this iterator.
 * @return {goog.dom.RangeIterator} An iterator over tags in the range.
 */
goog.dom.browserrange.AbstractRange.prototype.__iterator__=  function (
    opt_keys) {
  return new goog.dom.TextRangeIterator(this.getStartNode( ),
      this.getStartOffset( )            ,this.getEndNode( ),this.getEndOffset( ));
              } ;


Clone Instance
2
Line Count
3
Source Line
474
Source File
Closure/closure/goog/dom/textrange.js

/**
 * Returns a TextRangeIterator over the contents of the range.  Regardless of
 * the direction of the range, the iterator will move in document order.
 * @param {boolean=} opt_keys Unused for this iterator.
 * @return {goog.dom.TextRangeIterator} An iterator over tags in the range.
 */
goog.dom.TextRange.prototype.__iterator__=  function (opt_keys){
  return new goog.dom.TextRangeIterator(this.getStartNode( ),
      this.getStartOffset( )            ,this.getEndNode( ),this.getEndOffset( ));
                                                               } ;


Clone AbstractionParameter Count: 3Parameter Bindings

 [[#variable6164c1a0]]. [[#variable6164c140]]. [[#variable6164c0c0]].prototype.__iterator__= function (opt_keys)
                                                                                             { return new goog.dom.TextRangeIterator(this.getStartNode( ),this.getStartOffset( ),this.getEndNode( ),this.getEndOffset( ));
                                                                                             } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#6164c1a0]]
/**
 * Returns a TextRangeIterator over the contents of the range.  Regardless of
 * the direction of the range, the iterator will move in document order.
 * @param {boolean=} opt_keys Unused for this iterator.
 * @return {goog.dom.TextRangeIterator} An iterator over tags in the range.
 */
goog 
12[[#6164c1a0]]
/**
 * Returns a RangeIterator over the contents of the range.  Regardless of the
 * direction of the range, the iterator will move in document order.
 * @param {boolean=} opt_keys Unused for this iterator.
 * @return {goog.dom.RangeIterator} An iterator over tags in the range.
 */
goog.dom 
21[[#6164c140]]
dom 
22[[#6164c140]]
browserrange 
31[[#6164c0c0]]
TextRange 
32[[#6164c0c0]]
AbstractRange