本文整理汇总了C#中MethodCall.Clone方法的典型用法代码示例。如果您正苦于以下问题:C# MethodCall.Clone方法的具体用法?C# MethodCall.Clone怎么用?C# MethodCall.Clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MethodCall
的用法示例。
在下文中一共展示了MethodCall.Clone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: VisitMethodCall
public virtual Differences VisitMethodCall(MethodCall call1, MethodCall call2){
Differences differences = new Differences(call1, call2);
if (call1 == null || call2 == null){
if (call1 != call2) differences.NumberOfDifferences++; else differences.NumberOfSimilarities++;
return differences;
}
MethodCall changes = (MethodCall)call2.Clone();
MethodCall deletions = (MethodCall)call2.Clone();
MethodCall insertions = (MethodCall)call2.Clone();
Differences diff = this.VisitExpression(call1.Callee, call2.Callee);
if (diff == null){Debug.Assert(false); return differences;}
changes.Callee = diff.Changes as Expression;
deletions.Callee = diff.Deletions as Expression;
insertions.Callee = diff.Insertions as Expression;
Debug.Assert(diff.Changes == changes.Callee && diff.Deletions == deletions.Callee && diff.Insertions == insertions.Callee);
differences.NumberOfDifferences += diff.NumberOfDifferences;
differences.NumberOfSimilarities += diff.NumberOfSimilarities;
if (call1.IsTailCall == call2.IsTailCall) differences.NumberOfSimilarities++; else differences.NumberOfDifferences++;
ExpressionList exprChanges, exprDeletions, exprInsertions;
diff = this.VisitExpressionList(call1.Operands, call2.Operands, out exprChanges, out exprDeletions, out exprInsertions);
if (diff == null){Debug.Assert(false); return differences;}
changes.Operands = exprChanges;
deletions.Operands = exprDeletions;
insertions.Operands = exprInsertions;
differences.NumberOfDifferences += diff.NumberOfDifferences;
differences.NumberOfSimilarities += diff.NumberOfSimilarities;
if (differences.NumberOfDifferences == 0){
differences.Changes = null;
differences.Deletions = null;
differences.Insertions = null;
}else{
differences.Changes = changes;
differences.Deletions = deletions;
differences.Insertions = insertions;
}
return differences;
}
示例2: VisitMethodCall
public override Expression VisitMethodCall(MethodCall call)
{
if (call == null) return null;
return base.VisitMethodCall((MethodCall)call.Clone());
}