gpt4 book ai didi

c# - 从头开始构建语法树

转载 作者:IT王子 更新时间:2023-10-29 04:21:50 29 4
gpt4 key购买 nike

我之前问过这个问题,并得到了回答,但有人提出了一个建议,可能会帮助我在前进的过程中避免犯类似的错误。

Adding Auto-Implemented Property to class using Roslyn

建议我自下而上而不是自上而下构建语法树。有人可以提供一个小演示或链接来展示我将如何从头开始做这件事吗?

这里是代码:

var root = (CompilationUnitSyntax)document.GetSyntaxRoot();

// Add the namespace
var namespaceAnnotation = new SyntaxAnnotation();
root = root.WithMembers(
Syntax.NamespaceDeclaration(
Syntax.ParseName("ACO"))
.NormalizeWhitespace()
.WithAdditionalAnnotations(namespaceAnnotation));
document = document.UpdateSyntaxRoot(root);

// Add a class to the newly created namespace, and update the document
var namespaceNode = (NamespaceDeclarationSyntax)root
.GetAnnotatedNodesAndTokens(namespaceAnnotation)
.Single()
.AsNode();

var classAnnotation = new SyntaxAnnotation();
var baseTypeName = Syntax.ParseTypeName("System.Windows.Forms.Form");
SyntaxTokenList syntaxTokenList = new SyntaxTokenList()
{
Syntax.Token(SyntaxKind.PublicKeyword)
};

var newNamespaceNode = namespaceNode
.WithMembers(
Syntax.List<MemberDeclarationSyntax>(
Syntax.ClassDeclaration("MainForm")
.WithAdditionalAnnotations(classAnnotation)
.AddBaseListTypes(baseTypeName)
.WithModifiers(Syntax.Token(SyntaxKind.PublicKeyword))));

root = root.ReplaceNode(namespaceNode, newNamespaceNode).NormalizeWhitespace();
document = document.UpdateSyntaxRoot(root);


var attributes = Syntax.List(Syntax.AttributeDeclaration(Syntax.SeparatedList(Syntax.Attribute(Syntax.ParseName("STAThread")))));


// Find the class just created, add a method to it and update the document
var classNode = (ClassDeclarationSyntax)root
.GetAnnotatedNodesAndTokens(classAnnotation)
.Single()
.AsNode();

var syntaxList = Syntax.List<MemberDeclarationSyntax>(
Syntax.MethodDeclaration(
Syntax.ParseTypeName("void"), "Main")
.WithModifiers(Syntax.TokenList(Syntax.Token(SyntaxKind.PublicKeyword)))
.WithAttributes(attributes)
.WithBody(
Syntax.Block()));
syntaxList = syntaxList.Add(Syntax.PropertyDeclaration(Syntax.ParseTypeName("System.Windows.Forms.Timer"), "Ticker"));
var newClassNode = classNode
.WithMembers(syntaxList);

root = root.ReplaceNode(classNode, newClassNode).NormalizeWhitespace();
document = document.UpdateSyntaxRoot(root);

那么我该如何做同样的事情,但是从头开始呢?

提前致谢

鲍勃

附言我的属性(property)也缺少“获取;设置;”其中的文字。有人可以评论我忘记添加导致将此文本添加到属性的内容吗?

最佳答案

信不信由你,我写了一个工具叫Roslyn Code Quoter特别是回答这个问题。

http://roslynquoter.azurewebsites.net

该工具可以采用任何 C# 程序并自动生成一段代码,就像 Matt 上面写的那样。由于它还可以完美地生成所有内容,包括所有空格,因此代码可能会变得相当笨拙。但是您可以排除生成琐事的部分,然后只需在结果节点上调用 NormalizeWhitespace(),它会自动插入琐事,以便代码格式正确。

为了完整起见,我发布了代码的所有详细信息,以便您了解如何构造空白和所有这些小细节。

CompilationUnit().WithMembers(
SingletonList<MemberDeclarationSyntax>(
NamespaceDeclaration(
IdentifierName("ACO"))
.WithMembers(
SingletonList<MemberDeclarationSyntax>(
ClassDeclaration("MainForm")
.WithModifiers(
TokenList(
Token(SyntaxKind.PublicKeyword)))
.WithBaseList(
BaseList(
SingletonSeparatedList<BaseTypeSyntax>(
SimpleBaseType(
QualifiedName(
QualifiedName(
QualifiedName(
IdentifierName("System"),
IdentifierName("Windows")),
IdentifierName("Forms")),
IdentifierName("Form"))))))
.WithMembers(
List<MemberDeclarationSyntax>(
new MemberDeclarationSyntax[]{
PropertyDeclaration(
QualifiedName(
QualifiedName(
QualifiedName(
IdentifierName("System"),
IdentifierName("Windows")),
IdentifierName("Forms")),
IdentifierName("Timer")),
Identifier("Ticker"))
.WithModifiers(
TokenList(
Token(SyntaxKind.PublicKeyword)))
.WithAccessorList(
AccessorList(
List<AccessorDeclarationSyntax>(
new AccessorDeclarationSyntax[]{
AccessorDeclaration(
SyntaxKind.GetAccessorDeclaration)
.WithSemicolonToken(
Token(SyntaxKind.SemicolonToken)),
AccessorDeclaration(
SyntaxKind.SetAccessorDeclaration)
.WithSemicolonToken(
Token(SyntaxKind.SemicolonToken))}))),
MethodDeclaration(
PredefinedType(
Token(SyntaxKind.VoidKeyword)),
Identifier("Main"))
.WithAttributeLists(
SingletonList<AttributeListSyntax>(
AttributeList(
SingletonSeparatedList<AttributeSyntax>(
Attribute(
IdentifierName("STAThread"))))))
.WithModifiers(
TokenList(
Token(SyntaxKind.PublicKeyword)))
.WithBody(
Block())}))))))
.NormalizeWhitespace()

关于c# - 从头开始构建语法树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11351977/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com