Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
16 | 2 | 1 | 0.984 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 16 | 1 | src/NHibernate/Properties/IOptimizableGetter.cs |
2 | 18 | 1 | src/NHibernate/Properties/IOptimizableSetter.cs |
| ||||
using System; using System.Reflection.Emit; namespace NHibernate.Properties { /// <summary> /// An <see cref="IGetter" /> that can emit IL to get the property value. /// </summary> public interface IOptimizableGetter { /// <summary> /// Emit IL to get the property value from the object on top of the stack. /// </summary> void Emit(ILGenerator il); } } |
| ||||
using System; using System.Reflection.Emit; namespace NHibernate.Properties { /// <summary> /// An <see cref="ISetter" /> that can emit IL to set the property value. /// </summary> public interface IOptimizableSetter { /// <summary> /// Emit IL to set the property of an object to the value. The object /// is loaded onto the stack first, then the value, then this method /// is called. /// </summary> void Emit(ILGenerator il); } } |
| |||
using System; using System.Reflection.Emit; namespace NHibernate.Properties { /// <summary> /// An <see cref="IGetter" /> that can emit IL to get the property value. /// An <see cref="ISetter" /> that can emit IL to set the property value. /// </summary> public interface [[#variable56154ea0]] { /// <summary> /// Emit IL to get the property value from the object on top of the stack. /// Emit IL to set the property of an object to the value. The object /// is loaded onto the stack first, then the value, then this method /// is called. /// </summary> void Emit(ILGenerator il); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#56154ea0]] | IOptimizableGetter |
1 | 2 | [[#56154ea0]] | IOptimizableSetter |