本文整理汇总了C#中DestructorDeclaration.Annotation方法的典型用法代码示例。如果您正苦于以下问题:C# DestructorDeclaration.Annotation方法的具体用法?C# DestructorDeclaration.Annotation怎么用?C# DestructorDeclaration.Annotation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DestructorDeclaration
的用法示例。
在下文中一共展示了DestructorDeclaration.Annotation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: VisitDestructorDeclaration
public virtual void VisitDestructorDeclaration(DestructorDeclaration destructorDeclaration)
{
StartNode(destructorDeclaration);
var builder = destructorDeclaration.Annotation<MethodDebugInfoBuilder>();
if (builder != null)
builder.StartPosition = writer.GetLocation();
WriteAttributes(destructorDeclaration.Attributes);
WriteModifiers(destructorDeclaration.ModifierTokens);
var oldRef = currentMethodReference;
currentMethodReference = new object();
// Writer doesn't write the comment before destructorDeclaration if nothing has been printed yet.
// The following code works with our added comments.
if (destructorDeclaration.Attributes.Count == 0 && !destructorDeclaration.ModifierTokens.Any()) {
int count = 0;
foreach (var child in destructorDeclaration.Children) {
if (count-- <= 0) {
cancellationToken.ThrowIfCancellationRequested();
count = CANCEL_CHECK_LOOP_COUNT;
}
var cmt = child as Comment;
if (cmt == null)
break;
cmt.AcceptVisitor(this);
}
}
WriteToken(DestructorDeclaration.TildeRole, BoxedTextColor.Operator);
TypeDeclaration type = destructorDeclaration.Parent as TypeDeclaration;
var method = destructorDeclaration.Annotation<dnlib.DotNet.MethodDef>();
var textToken = method == null ? BoxedTextColor.Type : CSharpMetadataTextColorProvider.Instance.GetColor(method.DeclaringType);
if (type != null && type.Name != destructorDeclaration.Name)
WriteIdentifier((Identifier)type.NameToken.Clone(), textToken);
else
WriteIdentifier(destructorDeclaration.NameToken, textToken);
Space(policy.SpaceBeforeConstructorDeclarationParentheses);
var braceHelper = BraceHelper.LeftParen(this, CodeBracesRangeFlags.Parentheses);
braceHelper.RightParen();
WriteMethodBody(destructorDeclaration.Body);
if (builder != null)
builder.EndPosition = writer.GetLocation();
currentMethodReference = oldRef;
EndNode(destructorDeclaration);
}
示例2: VisitDestructorDeclaration
public virtual void VisitDestructorDeclaration(DestructorDeclaration destructorDeclaration)
{
StartNode(destructorDeclaration);
WriteAttributes(destructorDeclaration.Attributes);
WriteModifiers(destructorDeclaration.ModifierTokens);
// Writer doesn't write the comment before destructorDeclaration if nothing has been printed yet.
// The following code works with our added comments.
if (destructorDeclaration.Attributes.Count == 0 && !destructorDeclaration.ModifierTokens.Any()) {
int count = 0;
foreach (var child in destructorDeclaration.Children) {
if (count-- <= 0) {
cancellationToken.ThrowIfCancellationRequested();
count = CANCEL_CHECK_LOOP_COUNT;
}
var cmt = child as Comment;
if (cmt == null)
break;
cmt.AcceptVisitor(this);
}
}
WriteToken(DestructorDeclaration.TildeRole);
TypeDeclaration type = destructorDeclaration.Parent as TypeDeclaration;
var method = destructorDeclaration.Annotation<dnlib.DotNet.MethodDef>();
var textToken = method == null ? TextTokenType.Type : TextTokenHelper.GetTextTokenType(method.DeclaringType);
if (type != null && type.Name != destructorDeclaration.Name)
WriteIdentifier((Identifier)type.NameToken.Clone(), textToken);
else
WriteIdentifier(destructorDeclaration.NameToken, textToken);
Space(policy.SpaceBeforeConstructorDeclarationParentheses);
LPar();
RPar();
WriteMethodBody(destructorDeclaration.Body);
EndNode(destructorDeclaration);
}