Files
2026-08-27 10:56:38 -06:00

99 lines
4.0 KiB
C#

using System.Collections.Generic;
using Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax;
namespace Microsoft.CodeAnalysis.CSharp.Syntax;
public sealed class QueryContinuationSyntax : CSharpSyntaxNode
{
private QueryBodySyntax? body;
public SyntaxToken IntoKeyword => new SyntaxToken((SyntaxNode)(object)this, (GreenNode)(object)((Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax.QueryContinuationSyntax)(object)((SyntaxNode)this).Green).intoKeyword, ((SyntaxNode)this).Position, 0);
public SyntaxToken Identifier => new SyntaxToken((SyntaxNode)(object)this, (GreenNode)(object)((Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax.QueryContinuationSyntax)(object)((SyntaxNode)this).Green).identifier, ((SyntaxNode)this).GetChildPosition(1), ((SyntaxNode)this).GetChildIndex(1));
public QueryBodySyntax Body => ((SyntaxNode)this).GetRed<QueryBodySyntax>(ref body, 2);
internal QueryContinuationSyntax(Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax.CSharpSyntaxNode green, SyntaxNode? parent, int position)
: base((GreenNode)(object)green, parent, position)
{
}
internal override SyntaxNode? GetNodeSlot(int index)
{
if (index != 2)
{
return null;
}
return (SyntaxNode?)(object)((SyntaxNode)this).GetRed<QueryBodySyntax>(ref body, 2);
}
internal override SyntaxNode? GetCachedSlot(int index)
{
if (index != 2)
{
return null;
}
return (SyntaxNode?)(object)body;
}
public override void Accept(CSharpSyntaxVisitor visitor)
{
visitor.VisitQueryContinuation(this);
}
public override TResult? Accept<TResult>(CSharpSyntaxVisitor<TResult> visitor)
{
return visitor.VisitQueryContinuation(this);
}
public QueryContinuationSyntax Update(SyntaxToken intoKeyword, SyntaxToken identifier, QueryBodySyntax body)
{
//IL_0000: Unknown result type (might be due to invalid IL or missing references)
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
//IL_000e: Unknown result type (might be due to invalid IL or missing references)
//IL_0010: Unknown result type (might be due to invalid IL or missing references)
if (intoKeyword != IntoKeyword || identifier != Identifier || body != Body)
{
QueryContinuationSyntax queryContinuationSyntax = SyntaxFactory.QueryContinuation(intoKeyword, identifier, body);
SyntaxAnnotation[] annotations = ((SyntaxNode)this).GetAnnotations();
if (annotations == null || annotations.Length == 0)
{
return queryContinuationSyntax;
}
return queryContinuationSyntax.WithAnnotations(annotations);
}
return this;
}
public QueryContinuationSyntax WithIntoKeyword(SyntaxToken intoKeyword)
{
//IL_0001: Unknown result type (might be due to invalid IL or missing references)
//IL_0003: Unknown result type (might be due to invalid IL or missing references)
return Update(intoKeyword, Identifier, Body);
}
public QueryContinuationSyntax WithIdentifier(SyntaxToken identifier)
{
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
//IL_0007: Unknown result type (might be due to invalid IL or missing references)
return Update(IntoKeyword, identifier, Body);
}
public QueryContinuationSyntax WithBody(QueryBodySyntax body)
{
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
//IL_0008: Unknown result type (might be due to invalid IL or missing references)
return Update(IntoKeyword, Identifier, body);
}
public QueryContinuationSyntax AddBodyClauses(params QueryClauseSyntax[] items)
{
//IL_000d: Unknown result type (might be due to invalid IL or missing references)
//IL_0012: Unknown result type (might be due to invalid IL or missing references)
//IL_0016: Unknown result type (might be due to invalid IL or missing references)
return WithBody(Body.WithClauses(Body.Clauses.AddRange((IEnumerable<QueryClauseSyntax>)items)));
}
}