CloneSet906


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
12210.994class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11296
src/NHibernate/Hql/Ast/ANTLR/Tree/AbstractNullnessCheckNode.cs
215238
src/NHibernate/Hql/Ast/ANTLR/Tree/BinaryLogicOperatorNode.cs
Clone Instance
1
Line Count
12
Source Line
96
Source File
src/NHibernate/Hql/Ast/ANTLR/Tree/AbstractNullnessCheckNode.cs

                private static IType ExtractDataType(IASTNode operand)
                {
                        IType type = null;
                        if ( operand is SqlNode)
                        {
                                type = ( ( SqlNode)  operand). DataType;
                        }
                        if ( type == null && operand is IExpectedTypeAwareNode)
                        {
                                type = ( ( IExpectedTypeAwareNode)  operand). ExpectedType;
                        }
                        return type;
                }



Clone Instance
2
Line Count
15
Source Line
238
Source File
src/NHibernate/Hql/Ast/ANTLR/Tree/BinaryLogicOperatorNode.cs

                protected static IType ExtractDataType(IASTNode operand)
                {
                        IType type = null;

                        if ( operand is SqlNode)
                        {
                                type = ( ( SqlNode)  operand). DataType;
                        }

                        if ( type == null && operand is IExpectedTypeAwareNode)
                        {
                                type = ( ( IExpectedTypeAwareNode)  operand). ExpectedType;
                        }

                        return type;
                }



Clone AbstractionParameter Count: 1Parameter Bindings

 [[#variable53cebf60]]static IType ExtractDataType(IASTNode operand)
{
   IType type = null;
   if (operand is SqlNode)
   {
      type = ((SqlNode)operand).DataType;
   }
   if (type == null && operand is IExpectedTypeAwareNode)
   {
      type = ((IExpectedTypeAwareNode)operand).ExpectedType;
   }
   return type;
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#53cebf60]]
private 
12[[#53cebf60]]
protected