CloneSet1405


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3230.957ExpressionStatement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13115
Closure/closure/goog/graphics/ext/group.js
231080
Closure/closure/goog/ui/component.js
Clone Instance
1
Line Count
3
Source Line
115
Source File
Closure/closure/goog/graphics/ext/group.js

/**
 * Calls the given function on each of this component's children in order.  If
 * {@code opt_obj} is provided, it will be used as the 'this' object in the
 * function when called.  The function should take two arguments:  the child
 * component and its 0-based index.  The return value is ignored.
 * @param {Function} f The function to call for every child component; should
 *    take 2 arguments (the child and its index).
 * @param {Object=} opt_obj Used as the 'this' object in f when called.
 */
goog.graphics.ext.Group.prototype.forEachChild=  function (f, opt_obj){
  if (this.children_) {
    goog.array.forEach(this.children_, f, opt_obj);
                      }
                                                                      } ;


Clone Instance
2
Line Count
3
Source Line
1080
Source File
Closure/closure/goog/ui/component.js

/**
 * Calls the given function on each of this component's children in order.  If
 * {@code opt_obj} is provided, it will be used as the 'this' object in the
 * function when called.  The function should take two arguments:  the child
 * component and its 0-based index.  The return value is ignored.
 * @param {Function} f The function to call for every child component; should
 *    take 2 arguments (the child and its index).
 * @param {Object=} opt_obj Used as the 'this' object in f when called.
 */
goog.ui.Component.prototype.forEachChild=  function (f, opt_obj){
  if (this.children_) {
    goog.array.forEach(this.children_, f, opt_obj);
                      }
                                                                } ;


Clone AbstractionParameter Count: 3Parameter Bindings

 [[#variable5816c2c0]]. [[#variable5816c240]]. [[#variable5816c120]].prototype.forEachChild= function (f,opt_obj)
                                                                                             { if (this.children_)
                                                                                                 { goog.array.forEach(this.children_,f,opt_obj);
                                                                                                 }
                                                                                             } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5816c2c0]]
/**
 * Calls the given function on each of this component's children in order.  If
 * {@code opt_obj} is provided, it will be used as the 'this' object in the
 * function when called.  The function should take two arguments:  the child
 * component and its 0-based index.  The return value is ignored.
 * @param {Function} f The function to call for every child component; should
 *    take 2 arguments (the child and its index).
 * @param {Object=} opt_obj Used as the 'this' object in f when called.
 */
goog.graphics 
12[[#5816c2c0]]
/**
 * Calls the given function on each of this component's children in order.  If
 * {@code opt_obj} is provided, it will be used as the 'this' object in the
 * function when called.  The function should take two arguments:  the child
 * component and its 0-based index.  The return value is ignored.
 * @param {Function} f The function to call for every child component; should
 *    take 2 arguments (the child and its index).
 * @param {Object=} opt_obj Used as the 'this' object in f when called.
 */
goog 
21[[#5816c240]]
ext 
22[[#5816c240]]
ui 
31[[#5816c120]]
Group 
32[[#5816c120]]
Component