CloneSet1223


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
13230.950SourceElements[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11935
Closure/closure/goog/dom/pattern/nodetype.js
21337
Closure/closure/goog/dom/pattern/text.js
Clone Instance
1
Line Count
19
Source Line
35
Source File
Closure/closure/goog/dom/pattern/nodetype.js

goog.require('goog.dom.pattern.MatchType');



/**
 * Pattern object that matches any node of the given type.
 * @param {goog.dom.NodeType} nodeType The node type to match.
 * @constructor
 * @extends {goog.dom.pattern.AbstractPattern}
 */
goog.dom.pattern.NodeType=  function (nodeType){
  /**
   * The node type to match.
   * @type {goog.dom.NodeType}
   * @private
   */
  this.nodeType_=  nodeType;
                                               } ;
goog.inherits(goog.dom.pattern.NodeType, goog.dom.pattern.AbstractPattern);


Clone Instance
2
Line Count
13
Source Line
37
Source File
Closure/closure/goog/dom/pattern/text.js

goog.require('goog.dom.pattern.MatchType');

/**
 * Pattern object that matches text by exact matching or regular expressions.
 *
 * @param {string|RegExp} match String or regular expression to match against.
 * @constructor
 * @extends {goog.dom.pattern.AbstractPattern}
 */
goog.dom.pattern.Text=  function (match){
  this.match_=  match;
                                        } ;
goog.inherits(goog.dom.pattern.Text, goog.dom.pattern.AbstractPattern);


Clone AbstractionParameter Count: 3Parameter Bindings

goog.require('goog.dom.pattern.MatchType');
/**
 * Pattern object that matches text by exact matching or regular expressions.
 *
 * @param {string|RegExp} match String or regular expression to match against.
 * @constructor
 * @extends {goog.dom.pattern.AbstractPattern}
 */
/**
 * Pattern object that matches any node of the given type.
 * @param {goog.dom.NodeType} nodeType The node type to match.
 * @constructor
 * @extends {goog.dom.pattern.AbstractPattern}
 */
goog.dom.pattern. [[#variable1fd48420]]= function ( [[#variable21089d00]])
                                         {
                                           /**
                                              * The node type to match.
                                              * @type {goog.dom.NodeType}
                                              * @private
                                              */
                                           this. [[#variable57580100]]= [[#variable21089d00]];
                                         } ;
goog.inherits(goog.dom.pattern. [[#variable1fd48420]],goog.dom.pattern.AbstractPattern);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1fd48420]]
Text 
12[[#1fd48420]]
NodeType 
21[[#21089d00]]
match 
22[[#21089d00]]
nodeType 
31[[#57580100]]
match_ 
32[[#57580100]]
nodeType_