mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.8 KiB
71 lines
1.8 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under MIT X11 license (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using ICSharpCode.NRefactory.CSharp; |
|
using ICSharpCode.NRefactory.PatternMatching; |
|
|
|
namespace ICSharpCode.Decompiler.Ast |
|
{ |
|
static class NRefactoryExtensions |
|
{ |
|
public static T WithAnnotation<T>(this T node, object annotation) where T : AstNode |
|
{ |
|
if (annotation != null) |
|
node.AddAnnotation(annotation); |
|
return node; |
|
} |
|
|
|
public static T CopyAnnotationsFrom<T>(this T node, AstNode other) where T : AstNode |
|
{ |
|
foreach (object annotation in other.Annotations) { |
|
node.AddAnnotation(annotation); |
|
} |
|
return node; |
|
} |
|
|
|
public static T Detach<T>(this T node) where T : AstNode |
|
{ |
|
node.Remove(); |
|
return node; |
|
} |
|
|
|
public static Expression WithName(this Expression node, string patternGroupName) |
|
{ |
|
return new NamedNode(patternGroupName, node); |
|
} |
|
|
|
public static Statement WithName(this Statement node, string patternGroupName) |
|
{ |
|
return new NamedNode(patternGroupName, node); |
|
} |
|
|
|
public static void AddNamedArgument(this NRefactory.CSharp.Attribute attribute, string name, Expression argument) |
|
{ |
|
attribute.Arguments.Add(new AssignmentExpression(new IdentifierExpression(name), argument)); |
|
} |
|
|
|
public static AstType ToType(this Pattern pattern) |
|
{ |
|
return pattern; |
|
} |
|
|
|
public static Expression ToExpression(this Pattern pattern) |
|
{ |
|
return pattern; |
|
} |
|
|
|
public static Statement ToStatement(this Pattern pattern) |
|
{ |
|
return pattern; |
|
} |
|
|
|
public static Statement GetNextStatement(this Statement statement) |
|
{ |
|
AstNode next = statement.NextSibling; |
|
while (next != null && !(next is Statement)) |
|
next = next.NextSibling; |
|
return (Statement)next; |
|
} |
|
} |
|
}
|
|
|