CloneSet1436


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10230.956SourceElements[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110599
Closure/closure/goog/ui/tree/basenode.js
210732
Closure/closure/goog/ui/tree/basenode.js
Clone Instance
1
Line Count
10
Source Line
599
Source File
Closure/closure/goog/ui/tree/basenode.js

/**
 * Selects the node.
 */
goog.ui.tree.BaseNode.prototype.select=  function ( )
                                                    {
  this.setSelected_( true);
                                                    } ;

/**
 * Deselects the node.
 */
goog.ui.tree.BaseNode.prototype.deselect=  function ( )
                                                      {
  this.setSelected_( false);
                                                      } ;


Clone Instance
2
Line Count
10
Source Line
732
Source File
Closure/closure/goog/ui/tree/basenode.js

/**
 * Expands the node.
 */
goog.ui.tree.BaseNode.prototype.expand=  function ( )
                                                    {
  this.setExpanded( true);
                                                    } ;

/**
 * Collapses the node.
 */
goog.ui.tree.BaseNode.prototype.collapse=  function ( )
                                                      {
  this.setExpanded( false);
                                                      } ;


Clone AbstractionParameter Count: 3Parameter Bindings

/**
 * Expands the node.
 */
/**
 * Selects the node.
 */
goog.ui.tree.BaseNode.prototype. [[#variable3ada9b00]]= function ( )
                                                        { this. [[#variable3ada9a60]]( true);
                                                        } ;
/**
 * Collapses the node.
 */
/**
 * Deselects the node.
 */
goog.ui.tree.BaseNode.prototype. [[#variable3ada9960]]= function ( )
                                                        { this. [[#variable3ada9a60]]( false);
                                                        } ;
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#3ada9b00]]
expand 
12[[#3ada9b00]]
select 
21[[#3ada9a60]]
setExpanded 
22[[#3ada9a60]]
setSelected_ 
31[[#3ada9960]]
collapse 
32[[#3ada9960]]
deselect