CloneSet960


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6201.000statement_list[5]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1640
src/NHibernate/Dialect/Function/CharIndexFunction.cs
2644
src/NHibernate/Dialect/Function/PositionSubstringFunction.cs
Clone Instance
1
Line Count
6
Source Line
40
Source File
src/NHibernate/Dialect/Function/CharIndexFunction.cs

                        // TODO: QueryException if args.Count<2 (not present in H3.2) 
                        bool threeArgs = args.Count > 2;
                        object pattern = args[0];
                        object orgString = args[1];
                        object start = threeArgs ? args[2]:  null;

                        SqlStringBuilder buf = new SqlStringBuilder();


Clone Instance
2
Line Count
6
Source Line
44
Source File
src/NHibernate/Dialect/Function/PositionSubstringFunction.cs

                        bool threeArgs = args.Count > 2;
                        object pattern = args[0];
                        object orgString = args[1];
                        object start = threeArgs ? args[2]:  null;

                        SqlStringBuilder buf = new SqlStringBuilder();


Clone AbstractionParameter Count: 0Parameter Bindings

// TODO: QueryException if args.Count<2 (not present in H3.2) 
bool threeArgs = args.Count > 2;
object pattern = args[0];
object orgString = args[1];
object start = threeArgs ?
               args[2]: null;
SqlStringBuilder buf = new SqlStringBuilder();
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None