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

2769 lines
197 KiB
C#

using System;
using System.Diagnostics.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Syntax;
namespace Microsoft.CodeAnalysis.CSharp;
public abstract class CSharpSyntaxRewriter : CSharpSyntaxVisitor<SyntaxNode?>
{
private readonly bool _visitIntoStructuredTrivia;
private int _recursionDepth;
public virtual bool VisitIntoStructuredTrivia => _visitIntoStructuredTrivia;
public CSharpSyntaxRewriter(bool visitIntoStructuredTrivia = false)
{
_visitIntoStructuredTrivia = visitIntoStructuredTrivia;
}
[return: NotNullIfNotNull("node")]
public override SyntaxNode? Visit(SyntaxNode? node)
{
if (node != null)
{
_recursionDepth++;
StackGuard.EnsureSufficientExecutionStack(_recursionDepth);
SyntaxNode? result = ((CSharpSyntaxNode)(object)node).Accept(this);
_recursionDepth--;
return result;
}
return null;
}
public virtual SyntaxToken VisitToken(SyntaxToken token)
{
//IL_000b: 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_002a: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_00eb: Unknown result type (might be due to invalid IL or missing references)
//IL_00c9: Unknown result type (might be due to invalid IL or missing references)
//IL_00ce: Unknown result type (might be due to invalid IL or missing references)
//IL_00d3: Unknown result type (might be due to invalid IL or missing references)
//IL_00e3: Unknown result type (might be due to invalid IL or missing references)
//IL_00e5: Unknown result type (might be due to invalid IL or missing references)
//IL_00df: Unknown result type (might be due to invalid IL or missing references)
//IL_00a5: Unknown result type (might be due to invalid IL or missing references)
//IL_00a6: Unknown result type (might be due to invalid IL or missing references)
//IL_00a1: Unknown result type (might be due to invalid IL or missing references)
//IL_0061: Unknown result type (might be due to invalid IL or missing references)
//IL_0066: Unknown result type (might be due to invalid IL or missing references)
//IL_006b: Unknown result type (might be due to invalid IL or missing references)
//IL_0079: Unknown result type (might be due to invalid IL or missing references)
//IL_007a: Unknown result type (might be due to invalid IL or missing references)
//IL_007f: Unknown result type (might be due to invalid IL or missing references)
//IL_008f: Unknown result type (might be due to invalid IL or missing references)
//IL_0091: Unknown result type (might be due to invalid IL or missing references)
//IL_008b: Unknown result type (might be due to invalid IL or missing references)
GreenNode node = ((SyntaxToken)(ref token)).Node;
if (node == null)
{
return token;
}
GreenNode leadingTriviaCore = node.GetLeadingTriviaCore();
GreenNode trailingTriviaCore = node.GetTrailingTriviaCore();
if (leadingTriviaCore != null)
{
SyntaxTriviaList val = this.VisitList(new SyntaxTriviaList(ref token, leadingTriviaCore));
if (trailingTriviaCore != null)
{
int num = ((!leadingTriviaCore.IsList) ? 1 : leadingTriviaCore.SlotCount);
SyntaxTriviaList val2 = this.VisitList(new SyntaxTriviaList(ref token, trailingTriviaCore, ((SyntaxToken)(ref token)).Position + node.FullWidth - trailingTriviaCore.FullWidth, num));
if (((SyntaxTriviaList)(ref val)).Node != leadingTriviaCore)
{
token = ((SyntaxToken)(ref token)).WithLeadingTrivia(val);
}
if (((SyntaxTriviaList)(ref val2)).Node == trailingTriviaCore)
{
return token;
}
return ((SyntaxToken)(ref token)).WithTrailingTrivia(val2);
}
if (((SyntaxTriviaList)(ref val)).Node == leadingTriviaCore)
{
return token;
}
return ((SyntaxToken)(ref token)).WithLeadingTrivia(val);
}
if (trailingTriviaCore != null)
{
SyntaxTriviaList val3 = this.VisitList(new SyntaxTriviaList(ref token, trailingTriviaCore, ((SyntaxToken)(ref token)).Position + node.FullWidth - trailingTriviaCore.FullWidth, 0));
if (((SyntaxTriviaList)(ref val3)).Node == trailingTriviaCore)
{
return token;
}
return ((SyntaxToken)(ref token)).WithTrailingTrivia(val3);
}
return token;
}
public virtual SyntaxTrivia VisitTrivia(SyntaxTrivia trivia)
{
//IL_0043: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0041: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Unknown result type (might be due to invalid IL or missing references)
if (VisitIntoStructuredTrivia && ((SyntaxTrivia)(ref trivia)).HasStructure)
{
CSharpSyntaxNode cSharpSyntaxNode = (CSharpSyntaxNode)(object)((SyntaxTrivia)(ref trivia)).GetStructure();
StructuredTriviaSyntax structuredTriviaSyntax = (StructuredTriviaSyntax)(object)Visit((SyntaxNode?)(object)cSharpSyntaxNode);
if (structuredTriviaSyntax != cSharpSyntaxNode)
{
if (structuredTriviaSyntax != null)
{
return SyntaxFactory.Trivia(structuredTriviaSyntax);
}
return default(SyntaxTrivia);
}
}
return trivia;
}
public virtual SyntaxList<TNode> VisitList<TNode>(SyntaxList<TNode> list) where TNode : SyntaxNode
{
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
//IL_0094: Unknown result type (might be due to invalid IL or missing references)
//IL_008e: Unknown result type (might be due to invalid IL or missing references)
//IL_0048: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: Unknown result type (might be due to invalid IL or missing references)
SyntaxListBuilder<TNode> val = default(SyntaxListBuilder<TNode>);
int i = 0;
for (int count = list.Count; i < count; i++)
{
TNode val2 = list[i];
TNode val3 = VisitListElement(val2);
if ((object)val2 != (object)val3 && val.IsNull)
{
val._002Ector(count);
val.AddRange(list, 0, i);
}
if (!val.IsNull && val3 != null && !((SyntaxNode?)(object)val3).IsKind(SyntaxKind.None))
{
val.Add(val3);
}
}
if (!val.IsNull)
{
return val.ToList();
}
return list;
}
public virtual TNode? VisitListElement<TNode>(TNode? node) where TNode : SyntaxNode
{
return (TNode)(object)Visit((SyntaxNode?)(object)node);
}
public virtual SeparatedSyntaxList<TNode> VisitList<TNode>(SeparatedSyntaxList<TNode> list) where TNode : SyntaxNode
{
//IL_0012: Unknown result type (might be due to invalid IL or missing references)
//IL_0036: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_003e: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0045: Unknown result type (might be due to invalid IL or missing references)
//IL_0078: Unknown result type (might be due to invalid IL or missing references)
//IL_0060: Unknown result type (might be due to invalid IL or missing references)
//IL_0062: Unknown result type (might be due to invalid IL or missing references)
//IL_014a: Unknown result type (might be due to invalid IL or missing references)
//IL_0144: Unknown result type (might be due to invalid IL or missing references)
//IL_0094: Unknown result type (might be due to invalid IL or missing references)
//IL_0117: Unknown result type (might be due to invalid IL or missing references)
//IL_00b2: Unknown result type (might be due to invalid IL or missing references)
//IL_0133: Unknown result type (might be due to invalid IL or missing references)
int count = list.Count;
int separatorCount = list.SeparatorCount;
SeparatedSyntaxListBuilder<TNode> val = default(SeparatedSyntaxListBuilder<TNode>);
int i;
for (i = 0; i < separatorCount; i++)
{
TNode val2 = list[i];
TNode val3 = VisitListElement(val2);
SyntaxToken separator = list.GetSeparator(i);
SyntaxToken val4 = VisitListSeparator(separator);
if (val.IsNull && ((object)val2 != (object)val3 || separator != val4))
{
val._002Ector(count);
val.AddRange(ref list, i);
}
if (val.IsNull)
{
continue;
}
if (val3 != null)
{
val.Add(val3);
if (((SyntaxToken)(ref val4)).RawKind == 0)
{
throw new InvalidOperationException(CodeAnalysisResources.SeparatorIsExpected);
}
val.AddSeparator(ref val4);
}
else if (val3 == null)
{
throw new InvalidOperationException(CodeAnalysisResources.ElementIsExpected);
}
}
if (i < count)
{
TNode val5 = list[i];
TNode val6 = VisitListElement(val5);
if (val.IsNull && (object)val5 != (object)val6)
{
val._002Ector(count);
val.AddRange(ref list, i);
}
if (!val.IsNull && val6 != null)
{
val.Add(val6);
}
}
if (!val.IsNull)
{
return val.ToList();
}
return list;
}
public virtual SyntaxToken VisitListSeparator(SyntaxToken separator)
{
//IL_0001: 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)
return VisitToken(separator);
}
public virtual SyntaxTokenList VisitList(SyntaxTokenList list)
{
//IL_000e: Unknown result type (might be due to invalid IL or missing references)
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_001d: Unknown result type (might be due to invalid IL or missing references)
//IL_0024: 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_002b: Unknown result type (might be due to invalid IL or missing references)
//IL_002d: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_006c: Unknown result type (might be due to invalid IL or missing references)
//IL_004e: Unknown result type (might be due to invalid IL or missing references)
//IL_003c: Unknown result type (might be due to invalid IL or missing references)
//IL_0042: Expected O, but got Unknown
//IL_0043: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
SyntaxTokenListBuilder val = null;
int count = ((SyntaxTokenList)(ref list)).Count;
int num = -1;
Enumerator enumerator = ((SyntaxTokenList)(ref list)).GetEnumerator();
while (((Enumerator)(ref enumerator)).MoveNext())
{
SyntaxToken current = ((Enumerator)(ref enumerator)).Current;
num++;
SyntaxToken val2 = VisitToken(current);
if (current != val2 && val == null)
{
val = new SyntaxTokenListBuilder(count);
val.Add(list, 0, num);
}
if (val != null && val2.Kind() != SyntaxKind.None)
{
val.Add(val2);
}
}
if (val != null)
{
return val.ToList();
}
return list;
}
public virtual SyntaxTriviaList VisitList(SyntaxTriviaList list)
{
//IL_0077: Unknown result type (might be due to invalid IL or missing references)
//IL_0011: 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)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_0029: Unknown result type (might be due to invalid IL or missing references)
//IL_002e: Unknown result type (might be due to invalid IL or missing references)
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_0032: Unknown result type (might be due to invalid IL or missing references)
//IL_0071: Unknown result type (might be due to invalid IL or missing references)
//IL_0052: Unknown result type (might be due to invalid IL or missing references)
//IL_003f: Unknown result type (might be due to invalid IL or missing references)
//IL_0045: Expected O, but got Unknown
//IL_005c: Unknown result type (might be due to invalid IL or missing references)
int count = ((SyntaxTriviaList)(ref list)).Count;
if (count != 0)
{
SyntaxTriviaListBuilder val = null;
int num = -1;
Enumerator enumerator = ((SyntaxTriviaList)(ref list)).GetEnumerator();
while (((Enumerator)(ref enumerator)).MoveNext())
{
SyntaxTrivia current = ((Enumerator)(ref enumerator)).Current;
num++;
SyntaxTrivia val2 = VisitListElement(current);
if (val2 != current && val == null)
{
val = new SyntaxTriviaListBuilder(count);
val.Add(ref list, 0, num);
}
if (val != null && val2.Kind() != SyntaxKind.None)
{
val.Add(val2);
}
}
if (val != null)
{
return val.ToList();
}
}
return list;
}
public virtual SyntaxTrivia VisitListElement(SyntaxTrivia element)
{
//IL_0001: 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)
return VisitTrivia(element);
}
public override SyntaxNode? VisitIdentifierName(IdentifierNameSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Identifier));
}
public override SyntaxNode? VisitQualifiedName(QualifiedNameSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((NameSyntax)(object)Visit((SyntaxNode?)(object)node.Left)) ?? throw new ArgumentNullException("left"), VisitToken(node.DotToken), ((SimpleNameSyntax)(object)Visit((SyntaxNode?)(object)node.Right)) ?? throw new ArgumentNullException("right"));
}
public override SyntaxNode? VisitGenericName(GenericNameSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Identifier), ((TypeArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.TypeArgumentList)) ?? throw new ArgumentNullException("typeArgumentList"));
}
public override SyntaxNode? VisitTypeArgumentList(TypeArgumentListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.LessThanToken), VisitList<TypeSyntax>(node.Arguments), VisitToken(node.GreaterThanToken));
}
public override SyntaxNode? VisitAliasQualifiedName(AliasQualifiedNameSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((IdentifierNameSyntax)(object)Visit((SyntaxNode?)(object)node.Alias)) ?? throw new ArgumentNullException("alias"), VisitToken(node.ColonColonToken), ((SimpleNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"));
}
public override SyntaxNode? VisitPredefinedType(PredefinedTypeSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword));
}
public override SyntaxNode? VisitArrayType(ArrayTypeSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.ElementType)) ?? throw new ArgumentNullException("elementType"), VisitList<ArrayRankSpecifierSyntax>(node.RankSpecifiers));
}
public override SyntaxNode? VisitArrayRankSpecifier(ArrayRankSpecifierSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBracketToken), VisitList<ExpressionSyntax>(node.Sizes), VisitToken(node.CloseBracketToken));
}
public override SyntaxNode? VisitPointerType(PointerTypeSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.ElementType)) ?? throw new ArgumentNullException("elementType"), VisitToken(node.AsteriskToken));
}
public override SyntaxNode? VisitFunctionPointerType(FunctionPointerTypeSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.DelegateKeyword), VisitToken(node.AsteriskToken), (FunctionPointerCallingConventionSyntax)(object)Visit((SyntaxNode?)(object)node.CallingConvention), ((FunctionPointerParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"));
}
public override SyntaxNode? VisitFunctionPointerParameterList(FunctionPointerParameterListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.LessThanToken), VisitList<FunctionPointerParameterSyntax>(node.Parameters), VisitToken(node.GreaterThanToken));
}
public override SyntaxNode? VisitFunctionPointerCallingConvention(FunctionPointerCallingConventionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.ManagedOrUnmanagedKeyword), (FunctionPointerUnmanagedCallingConventionListSyntax)(object)Visit((SyntaxNode?)(object)node.UnmanagedCallingConventionList));
}
public override SyntaxNode? VisitFunctionPointerUnmanagedCallingConventionList(FunctionPointerUnmanagedCallingConventionListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBracketToken), VisitList<FunctionPointerUnmanagedCallingConventionSyntax>(node.CallingConventions), VisitToken(node.CloseBracketToken));
}
public override SyntaxNode? VisitFunctionPointerUnmanagedCallingConvention(FunctionPointerUnmanagedCallingConventionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Name));
}
public override SyntaxNode? VisitNullableType(NullableTypeSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.ElementType)) ?? throw new ArgumentNullException("elementType"), VisitToken(node.QuestionToken));
}
public override SyntaxNode? VisitTupleType(TupleTypeSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitList<TupleElementSyntax>(node.Elements), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitTupleElement(TupleElementSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitToken(node.Identifier));
}
public override SyntaxNode? VisitOmittedTypeArgument(OmittedTypeArgumentSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.OmittedTypeArgumentToken));
}
public override SyntaxNode? VisitRefType(RefTypeSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.RefKeyword), VisitToken(node.ReadOnlyKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"));
}
public override SyntaxNode? VisitScopedType(ScopedTypeSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.ScopedKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"));
}
public override SyntaxNode? VisitParenthesizedExpression(ParenthesizedExpressionSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitTupleExpression(TupleExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitList<ArgumentSyntax>(node.Arguments), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitPrefixUnaryExpression(PrefixUnaryExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.OperatorToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Operand)) ?? throw new ArgumentNullException("operand"));
}
public override SyntaxNode? VisitAwaitExpression(AwaitExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.AwaitKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitPostfixUnaryExpression(PostfixUnaryExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Operand)) ?? throw new ArgumentNullException("operand"), VisitToken(node.OperatorToken));
}
public override SyntaxNode? VisitMemberAccessExpression(MemberAccessExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.OperatorToken), ((SimpleNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"));
}
public override SyntaxNode? VisitConditionalAccessExpression(ConditionalAccessExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.OperatorToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.WhenNotNull)) ?? throw new ArgumentNullException("whenNotNull"));
}
public override SyntaxNode? VisitMemberBindingExpression(MemberBindingExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.OperatorToken), ((SimpleNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"));
}
public override SyntaxNode? VisitElementBindingExpression(ElementBindingExpressionSyntax node)
{
return (SyntaxNode?)(object)node.Update(((BracketedArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList)) ?? throw new ArgumentNullException("argumentList"));
}
public override SyntaxNode? VisitRangeExpression(RangeExpressionSyntax node)
{
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_0019: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.LeftOperand), VisitToken(node.OperatorToken), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.RightOperand));
}
public override SyntaxNode? VisitImplicitElementAccess(ImplicitElementAccessSyntax node)
{
return (SyntaxNode?)(object)node.Update(((BracketedArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList)) ?? throw new ArgumentNullException("argumentList"));
}
public override SyntaxNode? VisitBinaryExpression(BinaryExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Left)) ?? throw new ArgumentNullException("left"), VisitToken(node.OperatorToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Right)) ?? throw new ArgumentNullException("right"));
}
public override SyntaxNode? VisitAssignmentExpression(AssignmentExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Left)) ?? throw new ArgumentNullException("left"), VisitToken(node.OperatorToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Right)) ?? throw new ArgumentNullException("right"));
}
public override SyntaxNode? VisitConditionalExpression(ConditionalExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
//IL_004f: Unknown result type (might be due to invalid IL or missing references)
//IL_0054: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition)) ?? throw new ArgumentNullException("condition"), VisitToken(node.QuestionToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.WhenTrue)) ?? throw new ArgumentNullException("whenTrue"), VisitToken(node.ColonToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.WhenFalse)) ?? throw new ArgumentNullException("whenFalse"));
}
public override SyntaxNode? VisitThisExpression(ThisExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Token));
}
public override SyntaxNode? VisitBaseExpression(BaseExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Token));
}
public override SyntaxNode? VisitLiteralExpression(LiteralExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Token));
}
public override SyntaxNode? VisitMakeRefExpression(MakeRefExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitRefTypeExpression(RefTypeExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitRefValueExpression(RefValueExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0067: Unknown result type (might be due to invalid IL or missing references)
//IL_006c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.Comma), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitCheckedExpression(CheckedExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitDefaultExpression(DefaultExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), VisitToken(node.OpenParenToken), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitTypeOfExpression(TypeOfExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), VisitToken(node.OpenParenToken), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitSizeOfExpression(SizeOfExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), VisitToken(node.OpenParenToken), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitInvocationExpression(InvocationExpressionSyntax node)
{
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), ((ArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList)) ?? throw new ArgumentNullException("argumentList"));
}
public override SyntaxNode? VisitElementAccessExpression(ElementAccessExpressionSyntax node)
{
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), ((BracketedArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList)) ?? throw new ArgumentNullException("argumentList"));
}
public override SyntaxNode? VisitArgumentList(ArgumentListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitList<ArgumentSyntax>(node.Arguments), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitBracketedArgumentList(BracketedArgumentListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBracketToken), VisitList<ArgumentSyntax>(node.Arguments), VisitToken(node.CloseBracketToken));
}
public override SyntaxNode? VisitArgument(ArgumentSyntax node)
{
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_0019: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update((NameColonSyntax)(object)Visit((SyntaxNode?)(object)node.NameColon), VisitToken(node.RefKindKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitExpressionColon(ExpressionColonSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.ColonToken));
}
public override SyntaxNode? VisitNameColon(NameColonSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((IdentifierNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.ColonToken));
}
public override SyntaxNode? VisitDeclarationExpression(DeclarationExpressionSyntax node)
{
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), ((VariableDesignationSyntax)(object)Visit((SyntaxNode?)(object)node.Designation)) ?? throw new ArgumentNullException("designation"));
}
public override SyntaxNode? VisitCastExpression(CastExpressionSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitToken(node.CloseParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitAnonymousMethodExpression(AnonymousMethodExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList(node.Modifiers), VisitToken(node.DelegateKeyword), (ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList), ((BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Block)) ?? throw new ArgumentNullException("block"), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody));
}
public override SyntaxNode? VisitSimpleLambdaExpression(SimpleLambdaExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((ParameterSyntax)(object)Visit((SyntaxNode?)(object)node.Parameter)) ?? throw new ArgumentNullException("parameter"), VisitToken(node.ArrowToken), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Block), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody));
}
public override SyntaxNode? VisitRefExpression(RefExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.RefKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitParenthesizedLambdaExpression(ParenthesizedLambdaExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0051: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), (TypeSyntax)(object)Visit((SyntaxNode?)(object)node.ReturnType), ((ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), VisitToken(node.ArrowToken), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Block), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody));
}
public override SyntaxNode? VisitInitializerExpression(InitializerExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBraceToken), VisitList<ExpressionSyntax>(node.Expressions), VisitToken(node.CloseBraceToken));
}
public override SyntaxNode? VisitImplicitObjectCreationExpression(ImplicitObjectCreationExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.NewKeyword), ((ArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList)) ?? throw new ArgumentNullException("argumentList"), (InitializerExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer));
}
public override SyntaxNode? VisitObjectCreationExpression(ObjectCreationExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.NewKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), (ArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList), (InitializerExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer));
}
public override SyntaxNode? VisitWithExpression(WithExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.WithKeyword), ((InitializerExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer)) ?? throw new ArgumentNullException("initializer"));
}
public override SyntaxNode? VisitAnonymousObjectMemberDeclarator(AnonymousObjectMemberDeclaratorSyntax node)
{
return (SyntaxNode?)(object)node.Update((NameEqualsSyntax)(object)Visit((SyntaxNode?)(object)node.NameEquals), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitAnonymousObjectCreationExpression(AnonymousObjectCreationExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.NewKeyword), VisitToken(node.OpenBraceToken), VisitList<AnonymousObjectMemberDeclaratorSyntax>(node.Initializers), VisitToken(node.CloseBraceToken));
}
public override SyntaxNode? VisitArrayCreationExpression(ArrayCreationExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.NewKeyword), ((ArrayTypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), (InitializerExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer));
}
public override SyntaxNode? VisitImplicitArrayCreationExpression(ImplicitArrayCreationExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.NewKeyword), VisitToken(node.OpenBracketToken), VisitList(node.Commas), VisitToken(node.CloseBracketToken), ((InitializerExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer)) ?? throw new ArgumentNullException("initializer"));
}
public override SyntaxNode? VisitStackAllocArrayCreationExpression(StackAllocArrayCreationExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.StackAllocKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), (InitializerExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer));
}
public override SyntaxNode? VisitImplicitStackAllocArrayCreationExpression(ImplicitStackAllocArrayCreationExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.StackAllocKeyword), VisitToken(node.OpenBracketToken), VisitToken(node.CloseBracketToken), ((InitializerExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer)) ?? throw new ArgumentNullException("initializer"));
}
public override SyntaxNode? VisitCollectionExpression(CollectionExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBracketToken), VisitList<CollectionElementSyntax>(node.Elements), VisitToken(node.CloseBracketToken));
}
public override SyntaxNode? VisitExpressionElement(ExpressionElementSyntax node)
{
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitSpreadElement(SpreadElementSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.OperatorToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitQueryExpression(QueryExpressionSyntax node)
{
return (SyntaxNode?)(object)node.Update(((FromClauseSyntax)(object)Visit((SyntaxNode?)(object)node.FromClause)) ?? throw new ArgumentNullException("fromClause"), ((QueryBodySyntax)(object)Visit((SyntaxNode?)(object)node.Body)) ?? throw new ArgumentNullException("body"));
}
public override SyntaxNode? VisitQueryBody(QueryBodySyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitList<QueryClauseSyntax>(node.Clauses), ((SelectOrGroupClauseSyntax)(object)Visit((SyntaxNode?)(object)node.SelectOrGroup)) ?? throw new ArgumentNullException("selectOrGroup"), (QueryContinuationSyntax)(object)Visit((SyntaxNode?)(object)node.Continuation));
}
public override SyntaxNode? VisitFromClause(FromClauseSyntax node)
{
//IL_0003: 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)
//IL_0020: 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_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0031: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.FromKeyword), (TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type), VisitToken(node.Identifier), VisitToken(node.InKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitLetClause(LetClauseSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.LetKeyword), VisitToken(node.Identifier), VisitToken(node.EqualsToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitJoinClause(JoinClauseSyntax node)
{
//IL_0003: 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)
//IL_0020: 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_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0031: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_005d: Unknown result type (might be due to invalid IL or missing references)
//IL_0084: Unknown result type (might be due to invalid IL or missing references)
//IL_0089: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.JoinKeyword), (TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type), VisitToken(node.Identifier), VisitToken(node.InKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.InExpression)) ?? throw new ArgumentNullException("inExpression"), VisitToken(node.OnKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.LeftExpression)) ?? throw new ArgumentNullException("leftExpression"), VisitToken(node.EqualsKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.RightExpression)) ?? throw new ArgumentNullException("rightExpression"), (JoinIntoClauseSyntax)(object)Visit((SyntaxNode?)(object)node.Into));
}
public override SyntaxNode? VisitJoinIntoClause(JoinIntoClauseSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.IntoKeyword), VisitToken(node.Identifier));
}
public override SyntaxNode? VisitWhereClause(WhereClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.WhereKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition)) ?? throw new ArgumentNullException("condition"));
}
public override SyntaxNode? VisitOrderByClause(OrderByClauseSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OrderByKeyword), VisitList<OrderingSyntax>(node.Orderings));
}
public override SyntaxNode? VisitOrdering(OrderingSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.AscendingOrDescendingKeyword));
}
public override SyntaxNode? VisitSelectClause(SelectClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.SelectKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitGroupClause(GroupClauseSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.GroupKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.GroupExpression)) ?? throw new ArgumentNullException("groupExpression"), VisitToken(node.ByKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.ByExpression)) ?? throw new ArgumentNullException("byExpression"));
}
public override SyntaxNode? VisitQueryContinuation(QueryContinuationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.IntoKeyword), VisitToken(node.Identifier), ((QueryBodySyntax)(object)Visit((SyntaxNode?)(object)node.Body)) ?? throw new ArgumentNullException("body"));
}
public override SyntaxNode? VisitOmittedArraySizeExpression(OmittedArraySizeExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.OmittedArraySizeExpressionToken));
}
public override SyntaxNode? VisitInterpolatedStringExpression(InterpolatedStringExpressionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.StringStartToken), VisitList<InterpolatedStringContentSyntax>(node.Contents), VisitToken(node.StringEndToken));
}
public override SyntaxNode? VisitIsPatternExpression(IsPatternExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.IsKeyword), ((PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Pattern)) ?? throw new ArgumentNullException("pattern"));
}
public override SyntaxNode? VisitThrowExpression(ThrowExpressionSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.ThrowKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitWhenClause(WhenClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.WhenKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition)) ?? throw new ArgumentNullException("condition"));
}
public override SyntaxNode? VisitDiscardPattern(DiscardPatternSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.UnderscoreToken));
}
public override SyntaxNode? VisitDeclarationPattern(DeclarationPatternSyntax node)
{
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), ((VariableDesignationSyntax)(object)Visit((SyntaxNode?)(object)node.Designation)) ?? throw new ArgumentNullException("designation"));
}
public override SyntaxNode? VisitVarPattern(VarPatternSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.VarKeyword), ((VariableDesignationSyntax)(object)Visit((SyntaxNode?)(object)node.Designation)) ?? throw new ArgumentNullException("designation"));
}
public override SyntaxNode? VisitRecursivePattern(RecursivePatternSyntax node)
{
return (SyntaxNode?)(object)node.Update((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type), (PositionalPatternClauseSyntax)(object)Visit((SyntaxNode?)(object)node.PositionalPatternClause), (PropertyPatternClauseSyntax)(object)Visit((SyntaxNode?)(object)node.PropertyPatternClause), (VariableDesignationSyntax)(object)Visit((SyntaxNode?)(object)node.Designation));
}
public override SyntaxNode? VisitPositionalPatternClause(PositionalPatternClauseSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitList<SubpatternSyntax>(node.Subpatterns), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitPropertyPatternClause(PropertyPatternClauseSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBraceToken), VisitList<SubpatternSyntax>(node.Subpatterns), VisitToken(node.CloseBraceToken));
}
public override SyntaxNode? VisitSubpattern(SubpatternSyntax node)
{
return (SyntaxNode?)(object)node.Update((BaseExpressionColonSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionColon), ((PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Pattern)) ?? throw new ArgumentNullException("pattern"));
}
public override SyntaxNode? VisitConstantPattern(ConstantPatternSyntax node)
{
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitParenthesizedPattern(ParenthesizedPatternSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), ((PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Pattern)) ?? throw new ArgumentNullException("pattern"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitRelationalPattern(RelationalPatternSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.OperatorToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitTypePattern(TypePatternSyntax node)
{
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"));
}
public override SyntaxNode? VisitBinaryPattern(BinaryPatternSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Left)) ?? throw new ArgumentNullException("left"), VisitToken(node.OperatorToken), ((PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Right)) ?? throw new ArgumentNullException("right"));
}
public override SyntaxNode? VisitUnaryPattern(UnaryPatternSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.OperatorToken), ((PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Pattern)) ?? throw new ArgumentNullException("pattern"));
}
public override SyntaxNode? VisitListPattern(ListPatternSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBracketToken), VisitList<PatternSyntax>(node.Patterns), VisitToken(node.CloseBracketToken), (VariableDesignationSyntax)(object)Visit((SyntaxNode?)(object)node.Designation));
}
public override SyntaxNode? VisitSlicePattern(SlicePatternSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.DotDotToken), (PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Pattern));
}
public override SyntaxNode? VisitInterpolatedStringText(InterpolatedStringTextSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.TextToken));
}
public override SyntaxNode? VisitInterpolation(InterpolationSyntax node)
{
//IL_0003: 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)
//IL_0051: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBraceToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), (InterpolationAlignmentClauseSyntax)(object)Visit((SyntaxNode?)(object)node.AlignmentClause), (InterpolationFormatClauseSyntax)(object)Visit((SyntaxNode?)(object)node.FormatClause), VisitToken(node.CloseBraceToken));
}
public override SyntaxNode? VisitInterpolationAlignmentClause(InterpolationAlignmentClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.CommaToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Value)) ?? throw new ArgumentNullException("value"));
}
public override SyntaxNode? VisitInterpolationFormatClause(InterpolationFormatClauseSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.ColonToken), VisitToken(node.FormatStringToken));
}
public override SyntaxNode? VisitGlobalStatement(GlobalStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitBlock(BlockSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.OpenBraceToken), VisitList<StatementSyntax>(node.Statements), VisitToken(node.CloseBraceToken));
}
public override SyntaxNode? VisitLocalFunctionStatement(LocalFunctionStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0078: Unknown result type (might be due to invalid IL or missing references)
//IL_007d: Unknown result type (might be due to invalid IL or missing references)
//IL_00a6: Unknown result type (might be due to invalid IL or missing references)
//IL_00ab: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.ReturnType)) ?? throw new ArgumentNullException("returnType"), VisitToken(node.Identifier), (TypeParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.TypeParameterList), ((ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), VisitList<TypeParameterConstraintClauseSyntax>(node.ConstraintClauses), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Body), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitLocalDeclarationStatement(LocalDeclarationStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0053: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.AwaitKeyword), VisitToken(node.UsingKeyword), VisitList(node.Modifiers), ((VariableDeclarationSyntax)(object)Visit((SyntaxNode?)(object)node.Declaration)) ?? throw new ArgumentNullException("declaration"), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitVariableDeclaration(VariableDeclarationSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitList<VariableDeclaratorSyntax>(node.Variables));
}
public override SyntaxNode? VisitVariableDeclarator(VariableDeclaratorSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Identifier), (BracketedArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList), (EqualsValueClauseSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer));
}
public override SyntaxNode? VisitEqualsValueClause(EqualsValueClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.EqualsToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Value)) ?? throw new ArgumentNullException("value"));
}
public override SyntaxNode? VisitSingleVariableDesignation(SingleVariableDesignationSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.Identifier));
}
public override SyntaxNode? VisitDiscardDesignation(DiscardDesignationSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.UnderscoreToken));
}
public override SyntaxNode? VisitParenthesizedVariableDesignation(ParenthesizedVariableDesignationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitList<VariableDesignationSyntax>(node.Variables), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitExpressionStatement(ExpressionStatementSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitEmptyStatement(EmptyStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitLabeledStatement(LabeledStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.Identifier), VisitToken(node.ColonToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitGotoStatement(GotoStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.GotoKeyword), VisitToken(node.CaseOrDefaultKeyword), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitBreakStatement(BreakStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.BreakKeyword), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitContinueStatement(ContinueStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.ContinueKeyword), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitReturnStatement(ReturnStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0031: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.ReturnKeyword), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitThrowStatement(ThrowStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0031: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.ThrowKeyword), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitYieldStatement(YieldStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.YieldKeyword), VisitToken(node.ReturnOrBreakKeyword), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitWhileStatement(WhileStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.WhileKeyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition)) ?? throw new ArgumentNullException("condition"), VisitToken(node.CloseParenToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitDoStatement(DoStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0073: Unknown result type (might be due to invalid IL or missing references)
//IL_0078: Unknown result type (might be due to invalid IL or missing references)
//IL_007f: Unknown result type (might be due to invalid IL or missing references)
//IL_0084: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.DoKeyword), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"), VisitToken(node.WhileKeyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition)) ?? throw new ArgumentNullException("condition"), VisitToken(node.CloseParenToken), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitForStatement(ForStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
//IL_0044: Unknown result type (might be due to invalid IL or missing references)
//IL_0049: Unknown result type (might be due to invalid IL or missing references)
//IL_0061: Unknown result type (might be due to invalid IL or missing references)
//IL_0066: Unknown result type (might be due to invalid IL or missing references)
//IL_006d: Unknown result type (might be due to invalid IL or missing references)
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_0079: Unknown result type (might be due to invalid IL or missing references)
//IL_007e: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.ForKeyword), VisitToken(node.OpenParenToken), (VariableDeclarationSyntax)(object)Visit((SyntaxNode?)(object)node.Declaration), VisitList<ExpressionSyntax>(node.Initializers), VisitToken(node.FirstSemicolonToken), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition), VisitToken(node.SecondSemicolonToken), VisitList<ExpressionSyntax>(node.Incrementors), VisitToken(node.CloseParenToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitForEachStatement(ForEachStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0053: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_005f: Unknown result type (might be due to invalid IL or missing references)
//IL_0064: Unknown result type (might be due to invalid IL or missing references)
//IL_008b: Unknown result type (might be due to invalid IL or missing references)
//IL_0090: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.AwaitKeyword), VisitToken(node.ForEachKeyword), VisitToken(node.OpenParenToken), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitToken(node.Identifier), VisitToken(node.InKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitForEachVariableStatement(ForEachVariableStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0053: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_007f: Unknown result type (might be due to invalid IL or missing references)
//IL_0084: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.AwaitKeyword), VisitToken(node.ForEachKeyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Variable)) ?? throw new ArgumentNullException("variable"), VisitToken(node.InKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitUsingStatement(UsingStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0055: Unknown result type (might be due to invalid IL or missing references)
//IL_005a: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.AwaitKeyword), VisitToken(node.UsingKeyword), VisitToken(node.OpenParenToken), (VariableDeclarationSyntax)(object)Visit((SyntaxNode?)(object)node.Declaration), (ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression), VisitToken(node.CloseParenToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitFixedStatement(FixedStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.FixedKeyword), VisitToken(node.OpenParenToken), ((VariableDeclarationSyntax)(object)Visit((SyntaxNode?)(object)node.Declaration)) ?? throw new ArgumentNullException("declaration"), VisitToken(node.CloseParenToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitCheckedStatement(CheckedStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.Keyword), ((BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Block)) ?? throw new ArgumentNullException("block"));
}
public override SyntaxNode? VisitUnsafeStatement(UnsafeStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.UnsafeKeyword), ((BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Block)) ?? throw new ArgumentNullException("block"));
}
public override SyntaxNode? VisitLockStatement(LockStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.LockKeyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitIfStatement(IfStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.IfKeyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition)) ?? throw new ArgumentNullException("condition"), VisitToken(node.CloseParenToken), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"), (ElseClauseSyntax)(object)Visit((SyntaxNode?)(object)node.Else));
}
public override SyntaxNode? VisitElseClause(ElseClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.ElseKeyword), ((StatementSyntax)(object)Visit((SyntaxNode?)(object)node.Statement)) ?? throw new ArgumentNullException("statement"));
}
public override SyntaxNode? VisitSwitchStatement(SwitchStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0053: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_005f: Unknown result type (might be due to invalid IL or missing references)
//IL_0064: Unknown result type (might be due to invalid IL or missing references)
//IL_006b: Unknown result type (might be due to invalid IL or missing references)
//IL_0070: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.SwitchKeyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken), VisitToken(node.OpenBraceToken), VisitList<SwitchSectionSyntax>(node.Sections), VisitToken(node.CloseBraceToken));
}
public override SyntaxNode? VisitSwitchSection(SwitchSectionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<SwitchLabelSyntax>(node.Labels), VisitList<StatementSyntax>(node.Statements));
}
public override SyntaxNode? VisitCasePatternSwitchLabel(CasePatternSwitchLabelSyntax node)
{
//IL_0003: 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)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0045: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), ((PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Pattern)) ?? throw new ArgumentNullException("pattern"), (WhenClauseSyntax)(object)Visit((SyntaxNode?)(object)node.WhenClause), VisitToken(node.ColonToken));
}
public override SyntaxNode? VisitCaseSwitchLabel(CaseSwitchLabelSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Value)) ?? throw new ArgumentNullException("value"), VisitToken(node.ColonToken));
}
public override SyntaxNode? VisitDefaultSwitchLabel(DefaultSwitchLabelSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Keyword), VisitToken(node.ColonToken));
}
public override SyntaxNode? VisitSwitchExpression(SwitchExpressionSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.GoverningExpression)) ?? throw new ArgumentNullException("governingExpression"), VisitToken(node.SwitchKeyword), VisitToken(node.OpenBraceToken), VisitList<SwitchExpressionArmSyntax>(node.Arms), VisitToken(node.CloseBraceToken));
}
public override SyntaxNode? VisitSwitchExpressionArm(SwitchExpressionArmSyntax node)
{
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_0039: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((PatternSyntax)(object)Visit((SyntaxNode?)(object)node.Pattern)) ?? throw new ArgumentNullException("pattern"), (WhenClauseSyntax)(object)Visit((SyntaxNode?)(object)node.WhenClause), VisitToken(node.EqualsGreaterThanToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitTryStatement(TryStatementSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.TryKeyword), ((BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Block)) ?? throw new ArgumentNullException("block"), VisitList<CatchClauseSyntax>(node.Catches), (FinallyClauseSyntax)(object)Visit((SyntaxNode?)(object)node.Finally));
}
public override SyntaxNode? VisitCatchClause(CatchClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.CatchKeyword), (CatchDeclarationSyntax)(object)Visit((SyntaxNode?)(object)node.Declaration), (CatchFilterClauseSyntax)(object)Visit((SyntaxNode?)(object)node.Filter), ((BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Block)) ?? throw new ArgumentNullException("block"));
}
public override SyntaxNode? VisitCatchDeclaration(CatchDeclarationSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), VisitToken(node.Identifier), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitCatchFilterClause(CatchFilterClauseSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.WhenKeyword), VisitToken(node.OpenParenToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.FilterExpression)) ?? throw new ArgumentNullException("filterExpression"), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitFinallyClause(FinallyClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.FinallyKeyword), ((BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Block)) ?? throw new ArgumentNullException("block"));
}
public override SyntaxNode? VisitCompilationUnit(CompilationUnitSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<ExternAliasDirectiveSyntax>(node.Externs), VisitList<UsingDirectiveSyntax>(node.Usings), VisitList<AttributeListSyntax>(node.AttributeLists), VisitList<MemberDeclarationSyntax>(node.Members), VisitToken(node.EndOfFileToken));
}
public override SyntaxNode? VisitExternAliasDirective(ExternAliasDirectiveSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.ExternKeyword), VisitToken(node.AliasKeyword), VisitToken(node.Identifier), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitUsingDirective(UsingDirectiveSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0064: Unknown result type (might be due to invalid IL or missing references)
//IL_0069: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.GlobalKeyword), VisitToken(node.UsingKeyword), VisitToken(node.StaticKeyword), VisitToken(node.UnsafeKeyword), (NameEqualsSyntax)(object)Visit((SyntaxNode?)(object)node.Alias), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.NamespaceOrType)) ?? throw new ArgumentNullException("namespaceOrType"), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitNamespaceDeclaration(NamespaceDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0053: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_005f: Unknown result type (might be due to invalid IL or missing references)
//IL_0064: Unknown result type (might be due to invalid IL or missing references)
//IL_006b: Unknown result type (might be due to invalid IL or missing references)
//IL_0070: Unknown result type (might be due to invalid IL or missing references)
//IL_0077: Unknown result type (might be due to invalid IL or missing references)
//IL_007c: Unknown result type (might be due to invalid IL or missing references)
//IL_0083: Unknown result type (might be due to invalid IL or missing references)
//IL_0088: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.NamespaceKeyword), ((NameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.OpenBraceToken), VisitList<ExternAliasDirectiveSyntax>(node.Externs), VisitList<UsingDirectiveSyntax>(node.Usings), VisitList<MemberDeclarationSyntax>(node.Members), VisitToken(node.CloseBraceToken), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitFileScopedNamespaceDeclaration(FileScopedNamespaceDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0053: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_005f: Unknown result type (might be due to invalid IL or missing references)
//IL_0064: Unknown result type (might be due to invalid IL or missing references)
//IL_006b: Unknown result type (might be due to invalid IL or missing references)
//IL_0070: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.NamespaceKeyword), ((NameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.SemicolonToken), VisitList<ExternAliasDirectiveSyntax>(node.Externs), VisitList<UsingDirectiveSyntax>(node.Usings), VisitList<MemberDeclarationSyntax>(node.Members));
}
public override SyntaxNode? VisitAttributeList(AttributeListSyntax node)
{
//IL_0003: 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)
//IL_0020: 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_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0031: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBracketToken), (AttributeTargetSpecifierSyntax)(object)Visit((SyntaxNode?)(object)node.Target), VisitList<AttributeSyntax>(node.Attributes), VisitToken(node.CloseBracketToken));
}
public override SyntaxNode? VisitAttributeTargetSpecifier(AttributeTargetSpecifierSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Identifier), VisitToken(node.ColonToken));
}
public override SyntaxNode? VisitAttribute(AttributeSyntax node)
{
return (SyntaxNode?)(object)node.Update(((NameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), (AttributeArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList));
}
public override SyntaxNode? VisitAttributeArgumentList(AttributeArgumentListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitList<AttributeArgumentSyntax>(node.Arguments), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitAttributeArgument(AttributeArgumentSyntax node)
{
return (SyntaxNode?)(object)node.Update((NameEqualsSyntax)(object)Visit((SyntaxNode?)(object)node.NameEquals), (NameColonSyntax)(object)Visit((SyntaxNode?)(object)node.NameColon), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitNameEquals(NameEqualsSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((IdentifierNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.EqualsToken));
}
public override SyntaxNode? VisitTypeParameterList(TypeParameterListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.LessThanToken), VisitList<TypeParameterSyntax>(node.Parameters), VisitToken(node.GreaterThanToken));
}
public override SyntaxNode? VisitTypeParameter(TypeParameterSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitToken(node.VarianceKeyword), VisitToken(node.Identifier));
}
public override SyntaxNode? VisitClassDeclaration(ClassDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0066: Unknown result type (might be due to invalid IL or missing references)
//IL_006b: Unknown result type (might be due to invalid IL or missing references)
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_0077: Unknown result type (might be due to invalid IL or missing references)
//IL_007e: Unknown result type (might be due to invalid IL or missing references)
//IL_0083: Unknown result type (might be due to invalid IL or missing references)
//IL_008a: Unknown result type (might be due to invalid IL or missing references)
//IL_008f: Unknown result type (might be due to invalid IL or missing references)
//IL_0096: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.Keyword), VisitToken(node.Identifier), (TypeParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.TypeParameterList), (ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList), (BaseListSyntax)(object)Visit((SyntaxNode?)(object)node.BaseList), VisitList<TypeParameterConstraintClauseSyntax>(node.ConstraintClauses), VisitToken(node.OpenBraceToken), VisitList<MemberDeclarationSyntax>(node.Members), VisitToken(node.CloseBraceToken), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitStructDeclaration(StructDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0066: Unknown result type (might be due to invalid IL or missing references)
//IL_006b: Unknown result type (might be due to invalid IL or missing references)
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_0077: Unknown result type (might be due to invalid IL or missing references)
//IL_007e: Unknown result type (might be due to invalid IL or missing references)
//IL_0083: Unknown result type (might be due to invalid IL or missing references)
//IL_008a: Unknown result type (might be due to invalid IL or missing references)
//IL_008f: Unknown result type (might be due to invalid IL or missing references)
//IL_0096: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.Keyword), VisitToken(node.Identifier), (TypeParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.TypeParameterList), (ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList), (BaseListSyntax)(object)Visit((SyntaxNode?)(object)node.BaseList), VisitList<TypeParameterConstraintClauseSyntax>(node.ConstraintClauses), VisitToken(node.OpenBraceToken), VisitList<MemberDeclarationSyntax>(node.Members), VisitToken(node.CloseBraceToken), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitInterfaceDeclaration(InterfaceDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0066: Unknown result type (might be due to invalid IL or missing references)
//IL_006b: Unknown result type (might be due to invalid IL or missing references)
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_0077: Unknown result type (might be due to invalid IL or missing references)
//IL_007e: Unknown result type (might be due to invalid IL or missing references)
//IL_0083: Unknown result type (might be due to invalid IL or missing references)
//IL_008a: Unknown result type (might be due to invalid IL or missing references)
//IL_008f: Unknown result type (might be due to invalid IL or missing references)
//IL_0096: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.Keyword), VisitToken(node.Identifier), (TypeParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.TypeParameterList), (ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList), (BaseListSyntax)(object)Visit((SyntaxNode?)(object)node.BaseList), VisitList<TypeParameterConstraintClauseSyntax>(node.ConstraintClauses), VisitToken(node.OpenBraceToken), VisitList<MemberDeclarationSyntax>(node.Members), VisitToken(node.CloseBraceToken), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitRecordDeclaration(RecordDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_0077: Unknown result type (might be due to invalid IL or missing references)
//IL_007e: Unknown result type (might be due to invalid IL or missing references)
//IL_0083: Unknown result type (might be due to invalid IL or missing references)
//IL_008a: Unknown result type (might be due to invalid IL or missing references)
//IL_008f: Unknown result type (might be due to invalid IL or missing references)
//IL_0096: Unknown result type (might be due to invalid IL or missing references)
//IL_009b: Unknown result type (might be due to invalid IL or missing references)
//IL_00a2: Unknown result type (might be due to invalid IL or missing references)
//IL_00a7: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.Keyword), VisitToken(node.ClassOrStructKeyword), VisitToken(node.Identifier), (TypeParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.TypeParameterList), (ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList), (BaseListSyntax)(object)Visit((SyntaxNode?)(object)node.BaseList), VisitList<TypeParameterConstraintClauseSyntax>(node.ConstraintClauses), VisitToken(node.OpenBraceToken), VisitList<MemberDeclarationSyntax>(node.Members), VisitToken(node.CloseBraceToken), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitEnumDeclaration(EnumDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0044: Unknown result type (might be due to invalid IL or missing references)
//IL_0049: Unknown result type (might be due to invalid IL or missing references)
//IL_0050: Unknown result type (might be due to invalid IL or missing references)
//IL_0055: Unknown result type (might be due to invalid IL or missing references)
//IL_005c: Unknown result type (might be due to invalid IL or missing references)
//IL_0061: Unknown result type (might be due to invalid IL or missing references)
//IL_0068: Unknown result type (might be due to invalid IL or missing references)
//IL_006d: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.EnumKeyword), VisitToken(node.Identifier), (BaseListSyntax)(object)Visit((SyntaxNode?)(object)node.BaseList), VisitToken(node.OpenBraceToken), VisitList<EnumMemberDeclarationSyntax>(node.Members), VisitToken(node.CloseBraceToken), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitDelegateDeclaration(DelegateDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0084: Unknown result type (might be due to invalid IL or missing references)
//IL_0089: Unknown result type (might be due to invalid IL or missing references)
//IL_0090: Unknown result type (might be due to invalid IL or missing references)
//IL_0095: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.DelegateKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.ReturnType)) ?? throw new ArgumentNullException("returnType"), VisitToken(node.Identifier), (TypeParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.TypeParameterList), ((ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), VisitList<TypeParameterConstraintClauseSyntax>(node.ConstraintClauses), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitEnumMemberDeclaration(EnumMemberDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.Identifier), (EqualsValueClauseSyntax)(object)Visit((SyntaxNode?)(object)node.EqualsValue));
}
public override SyntaxNode? VisitBaseList(BaseListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.ColonToken), VisitList<BaseTypeSyntax>(node.Types));
}
public override SyntaxNode? VisitSimpleBaseType(SimpleBaseTypeSyntax node)
{
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"));
}
public override SyntaxNode? VisitPrimaryConstructorBaseType(PrimaryConstructorBaseTypeSyntax node)
{
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), ((ArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList)) ?? throw new ArgumentNullException("argumentList"));
}
public override SyntaxNode? VisitTypeParameterConstraintClause(TypeParameterConstraintClauseSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.WhereKeyword), ((IdentifierNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.ColonToken), VisitList<TypeParameterConstraintSyntax>(node.Constraints));
}
public override SyntaxNode? VisitConstructorConstraint(ConstructorConstraintSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.NewKeyword), VisitToken(node.OpenParenToken), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitClassOrStructConstraint(ClassOrStructConstraintSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.ClassOrStructKeyword), VisitToken(node.QuestionToken));
}
public override SyntaxNode? VisitTypeConstraint(TypeConstraintSyntax node)
{
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"));
}
public override SyntaxNode? VisitDefaultConstraint(DefaultConstraintSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.DefaultKeyword));
}
public override SyntaxNode? VisitFieldDeclaration(FieldDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((VariableDeclarationSyntax)(object)Visit((SyntaxNode?)(object)node.Declaration)) ?? throw new ArgumentNullException("declaration"), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitEventFieldDeclaration(EventFieldDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.EventKeyword), ((VariableDeclarationSyntax)(object)Visit((SyntaxNode?)(object)node.Declaration)) ?? throw new ArgumentNullException("declaration"), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitExplicitInterfaceSpecifier(ExplicitInterfaceSpecifierSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((NameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.DotToken));
}
public override SyntaxNode? VisitMethodDeclaration(MethodDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0051: Unknown result type (might be due to invalid IL or missing references)
//IL_0089: Unknown result type (might be due to invalid IL or missing references)
//IL_008e: Unknown result type (might be due to invalid IL or missing references)
//IL_00b7: Unknown result type (might be due to invalid IL or missing references)
//IL_00bc: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.ReturnType)) ?? throw new ArgumentNullException("returnType"), (ExplicitInterfaceSpecifierSyntax)(object)Visit((SyntaxNode?)(object)node.ExplicitInterfaceSpecifier), VisitToken(node.Identifier), (TypeParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.TypeParameterList), ((ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), VisitList<TypeParameterConstraintClauseSyntax>(node.ConstraintClauses), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Body), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitOperatorDeclaration(OperatorDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0051: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_005d: Unknown result type (might be due to invalid IL or missing references)
//IL_0064: Unknown result type (might be due to invalid IL or missing references)
//IL_0069: Unknown result type (might be due to invalid IL or missing references)
//IL_00b2: Unknown result type (might be due to invalid IL or missing references)
//IL_00b7: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.ReturnType)) ?? throw new ArgumentNullException("returnType"), (ExplicitInterfaceSpecifierSyntax)(object)Visit((SyntaxNode?)(object)node.ExplicitInterfaceSpecifier), VisitToken(node.OperatorKeyword), VisitToken(node.CheckedKeyword), VisitToken(node.OperatorToken), ((ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Body), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitConversionOperatorDeclaration(ConversionOperatorDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003d: Unknown result type (might be due to invalid IL or missing references)
//IL_0044: Unknown result type (might be due to invalid IL or missing references)
//IL_0049: Unknown result type (might be due to invalid IL or missing references)
//IL_00b2: Unknown result type (might be due to invalid IL or missing references)
//IL_00b7: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.ImplicitOrExplicitKeyword), (ExplicitInterfaceSpecifierSyntax)(object)Visit((SyntaxNode?)(object)node.ExplicitInterfaceSpecifier), VisitToken(node.OperatorKeyword), VisitToken(node.CheckedKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), ((ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Body), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitConstructorDeclaration(ConstructorDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_007a: Unknown result type (might be due to invalid IL or missing references)
//IL_007f: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.Identifier), ((ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), (ConstructorInitializerSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Body), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitConstructorInitializer(ConstructorInitializerSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.ColonToken), VisitToken(node.ThisOrBaseKeyword), ((ArgumentListSyntax)(object)Visit((SyntaxNode?)(object)node.ArgumentList)) ?? throw new ArgumentNullException("argumentList"));
}
public override SyntaxNode? VisitDestructorDeclaration(DestructorDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: Unknown result type (might be due to invalid IL or missing references)
//IL_007a: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.TildeToken), VisitToken(node.Identifier), ((ParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Body), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitPropertyDeclaration(PropertyDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0051: Unknown result type (might be due to invalid IL or missing references)
//IL_008b: Unknown result type (might be due to invalid IL or missing references)
//IL_0090: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), (ExplicitInterfaceSpecifierSyntax)(object)Visit((SyntaxNode?)(object)node.ExplicitInterfaceSpecifier), VisitToken(node.Identifier), (AccessorListSyntax)(object)Visit((SyntaxNode?)(object)node.AccessorList), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), (EqualsValueClauseSyntax)(object)Visit((SyntaxNode?)(object)node.Initializer), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitArrowExpressionClause(ArrowExpressionClauseSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.ArrowToken), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Expression)) ?? throw new ArgumentNullException("expression"));
}
public override SyntaxNode? VisitEventDeclaration(EventDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0058: Unknown result type (might be due to invalid IL or missing references)
//IL_005d: Unknown result type (might be due to invalid IL or missing references)
//IL_0075: Unknown result type (might be due to invalid IL or missing references)
//IL_007a: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.EventKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), (ExplicitInterfaceSpecifierSyntax)(object)Visit((SyntaxNode?)(object)node.ExplicitInterfaceSpecifier), VisitToken(node.Identifier), (AccessorListSyntax)(object)Visit((SyntaxNode?)(object)node.AccessorList), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitIndexerDeclaration(IndexerDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0051: Unknown result type (might be due to invalid IL or missing references)
//IL_009a: Unknown result type (might be due to invalid IL or missing references)
//IL_009f: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), (ExplicitInterfaceSpecifierSyntax)(object)Visit((SyntaxNode?)(object)node.ExplicitInterfaceSpecifier), VisitToken(node.ThisKeyword), ((BracketedParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.ParameterList)) ?? throw new ArgumentNullException("parameterList"), (AccessorListSyntax)(object)Visit((SyntaxNode?)(object)node.AccessorList), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitAccessorList(AccessorListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBraceToken), VisitList<AccessorDeclarationSyntax>(node.Accessors), VisitToken(node.CloseBraceToken));
}
public override SyntaxNode? VisitAccessorDeclaration(AccessorDeclarationSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0049: Unknown result type (might be due to invalid IL or missing references)
//IL_004e: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.Keyword), (BlockSyntax)(object)Visit((SyntaxNode?)(object)node.Body), (ArrowExpressionClauseSyntax)(object)Visit((SyntaxNode?)(object)node.ExpressionBody), VisitToken(node.SemicolonToken));
}
public override SyntaxNode? VisitParameterList(ParameterListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitList<ParameterSyntax>(node.Parameters), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitBracketedParameterList(BracketedParameterListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBracketToken), VisitList<ParameterSyntax>(node.Parameters), VisitToken(node.CloseBracketToken));
}
public override SyntaxNode? VisitParameter(ParameterSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0031: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), (TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type), VisitToken(node.Identifier), (EqualsValueClauseSyntax)(object)Visit((SyntaxNode?)(object)node.Default));
}
public override SyntaxNode? VisitFunctionPointerParameter(FunctionPointerParameterSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"));
}
public override SyntaxNode? VisitIncompleteMember(IncompleteMemberSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<AttributeListSyntax>(node.AttributeLists), VisitList(node.Modifiers), (TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type));
}
public override SyntaxNode? VisitSkippedTokensTrivia(SkippedTokensTriviaSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitList(node.Tokens));
}
public override SyntaxNode? VisitDocumentationCommentTrivia(DocumentationCommentTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitList<XmlNodeSyntax>(node.Content), VisitToken(node.EndOfComment));
}
public override SyntaxNode? VisitTypeCref(TypeCrefSyntax node)
{
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"));
}
public override SyntaxNode? VisitQualifiedCref(QualifiedCrefSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Container)) ?? throw new ArgumentNullException("container"), VisitToken(node.DotToken), ((MemberCrefSyntax)(object)Visit((SyntaxNode?)(object)node.Member)) ?? throw new ArgumentNullException("member"));
}
public override SyntaxNode? VisitNameMemberCref(NameMemberCrefSyntax node)
{
return (SyntaxNode?)(object)node.Update(((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), (CrefParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.Parameters));
}
public override SyntaxNode? VisitIndexerMemberCref(IndexerMemberCrefSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitToken(node.ThisKeyword), (CrefBracketedParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.Parameters));
}
public override SyntaxNode? VisitOperatorMemberCref(OperatorMemberCrefSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OperatorKeyword), VisitToken(node.CheckedKeyword), VisitToken(node.OperatorToken), (CrefParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.Parameters));
}
public override SyntaxNode? VisitConversionOperatorMemberCref(ConversionOperatorMemberCrefSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.ImplicitOrExplicitKeyword), VisitToken(node.OperatorKeyword), VisitToken(node.CheckedKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"), (CrefParameterListSyntax)(object)Visit((SyntaxNode?)(object)node.Parameters));
}
public override SyntaxNode? VisitCrefParameterList(CrefParameterListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitList<CrefParameterSyntax>(node.Parameters), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitCrefBracketedParameterList(CrefBracketedParameterListSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenBracketToken), VisitList<CrefParameterSyntax>(node.Parameters), VisitToken(node.CloseBracketToken));
}
public override SyntaxNode? VisitCrefParameter(CrefParameterSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.RefKindKeyword), VisitToken(node.ReadOnlyKeyword), ((TypeSyntax)(object)Visit((SyntaxNode?)(object)node.Type)) ?? throw new ArgumentNullException("type"));
}
public override SyntaxNode? VisitXmlElement(XmlElementSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((XmlElementStartTagSyntax)(object)Visit((SyntaxNode?)(object)node.StartTag)) ?? throw new ArgumentNullException("startTag"), VisitList<XmlNodeSyntax>(node.Content), ((XmlElementEndTagSyntax)(object)Visit((SyntaxNode?)(object)node.EndTag)) ?? throw new ArgumentNullException("endTag"));
}
public override SyntaxNode? VisitXmlElementStartTag(XmlElementStartTagSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.LessThanToken), ((XmlNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitList<XmlAttributeSyntax>(node.Attributes), VisitToken(node.GreaterThanToken));
}
public override SyntaxNode? VisitXmlElementEndTag(XmlElementEndTagSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.LessThanSlashToken), ((XmlNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.GreaterThanToken));
}
public override SyntaxNode? VisitXmlEmptyElement(XmlEmptyElementSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.LessThanToken), ((XmlNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitList<XmlAttributeSyntax>(node.Attributes), VisitToken(node.SlashGreaterThanToken));
}
public override SyntaxNode? VisitXmlName(XmlNameSyntax node)
{
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_0019: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update((XmlPrefixSyntax)(object)Visit((SyntaxNode?)(object)node.Prefix), VisitToken(node.LocalName));
}
public override SyntaxNode? VisitXmlPrefix(XmlPrefixSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.Prefix), VisitToken(node.ColonToken));
}
public override SyntaxNode? VisitXmlTextAttribute(XmlTextAttributeSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0047: Unknown result type (might be due to invalid IL or missing references)
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((XmlNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.EqualsToken), VisitToken(node.StartQuoteToken), VisitList(node.TextTokens), VisitToken(node.EndQuoteToken));
}
public override SyntaxNode? VisitXmlCrefAttribute(XmlCrefAttributeSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_005b: Unknown result type (might be due to invalid IL or missing references)
//IL_0060: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((XmlNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.EqualsToken), VisitToken(node.StartQuoteToken), ((CrefSyntax)(object)Visit((SyntaxNode?)(object)node.Cref)) ?? throw new ArgumentNullException("cref"), VisitToken(node.EndQuoteToken));
}
public override SyntaxNode? VisitXmlNameAttribute(XmlNameAttributeSyntax node)
{
//IL_0023: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_005b: Unknown result type (might be due to invalid IL or missing references)
//IL_0060: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(((XmlNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitToken(node.EqualsToken), VisitToken(node.StartQuoteToken), ((IdentifierNameSyntax)(object)Visit((SyntaxNode?)(object)node.Identifier)) ?? throw new ArgumentNullException("identifier"), VisitToken(node.EndQuoteToken));
}
public override SyntaxNode? VisitXmlText(XmlTextSyntax node)
{
//IL_0003: 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 (SyntaxNode?)(object)node.Update(VisitList(node.TextTokens));
}
public override SyntaxNode? VisitXmlCDataSection(XmlCDataSectionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.StartCDataToken), VisitList(node.TextTokens), VisitToken(node.EndCDataToken));
}
public override SyntaxNode? VisitXmlProcessingInstruction(XmlProcessingInstructionSyntax node)
{
//IL_0003: 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)
//IL_002f: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.StartProcessingInstructionToken), ((XmlNameSyntax)(object)Visit((SyntaxNode?)(object)node.Name)) ?? throw new ArgumentNullException("name"), VisitList(node.TextTokens), VisitToken(node.EndProcessingInstructionToken));
}
public override SyntaxNode? VisitXmlComment(XmlCommentSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.LessThanExclamationMinusMinusToken), VisitList(node.TextTokens), VisitToken(node.MinusMinusGreaterThanToken));
}
public override SyntaxNode? VisitIfDirectiveTrivia(IfDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.IfKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition)) ?? throw new ArgumentNullException("condition"), VisitToken(node.EndOfDirectiveToken), node.IsActive, node.BranchTaken, node.ConditionValue);
}
public override SyntaxNode? VisitElifDirectiveTrivia(ElifDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.ElifKeyword), ((ExpressionSyntax)(object)Visit((SyntaxNode?)(object)node.Condition)) ?? throw new ArgumentNullException("condition"), VisitToken(node.EndOfDirectiveToken), node.IsActive, node.BranchTaken, node.ConditionValue);
}
public override SyntaxNode? VisitElseDirectiveTrivia(ElseDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.ElseKeyword), VisitToken(node.EndOfDirectiveToken), node.IsActive, node.BranchTaken);
}
public override SyntaxNode? VisitEndIfDirectiveTrivia(EndIfDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.EndIfKeyword), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitRegionDirectiveTrivia(RegionDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.RegionKeyword), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitEndRegionDirectiveTrivia(EndRegionDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.EndRegionKeyword), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitErrorDirectiveTrivia(ErrorDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.ErrorKeyword), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitWarningDirectiveTrivia(WarningDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.WarningKeyword), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitBadDirectiveTrivia(BadDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.Identifier), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitDefineDirectiveTrivia(DefineDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.DefineKeyword), VisitToken(node.Name), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitUndefDirectiveTrivia(UndefDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.UndefKeyword), VisitToken(node.Name), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitLineDirectiveTrivia(LineDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.LineKeyword), VisitToken(node.Line), VisitToken(node.File), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitLineDirectivePosition(LineDirectivePositionSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.OpenParenToken), VisitToken(node.Line), VisitToken(node.CommaToken), VisitToken(node.Character), VisitToken(node.CloseParenToken));
}
public override SyntaxNode? VisitLineSpanDirectiveTrivia(LineSpanDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0067: Unknown result type (might be due to invalid IL or missing references)
//IL_006c: Unknown result type (might be due to invalid IL or missing references)
//IL_0073: Unknown result type (might be due to invalid IL or missing references)
//IL_0078: Unknown result type (might be due to invalid IL or missing references)
//IL_007f: Unknown result type (might be due to invalid IL or missing references)
//IL_0084: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.LineKeyword), ((LineDirectivePositionSyntax)(object)Visit((SyntaxNode?)(object)node.Start)) ?? throw new ArgumentNullException("start"), VisitToken(node.MinusToken), ((LineDirectivePositionSyntax)(object)Visit((SyntaxNode?)(object)node.End)) ?? throw new ArgumentNullException("end"), VisitToken(node.CharacterOffset), VisitToken(node.File), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitPragmaWarningDirectiveTrivia(PragmaWarningDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003f: Unknown result type (might be due to invalid IL or missing references)
//IL_0044: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.PragmaKeyword), VisitToken(node.WarningKeyword), VisitToken(node.DisableOrRestoreKeyword), VisitList<ExpressionSyntax>(node.ErrorCodes), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitPragmaChecksumDirectiveTrivia(PragmaChecksumDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003f: Unknown result type (might be due to invalid IL or missing references)
//IL_0044: Unknown result type (might be due to invalid IL or missing references)
//IL_004b: Unknown result type (might be due to invalid IL or missing references)
//IL_0050: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.PragmaKeyword), VisitToken(node.ChecksumKeyword), VisitToken(node.File), VisitToken(node.Guid), VisitToken(node.Bytes), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitReferenceDirectiveTrivia(ReferenceDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.ReferenceKeyword), VisitToken(node.File), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitLoadDirectiveTrivia(LoadDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.LoadKeyword), VisitToken(node.File), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitShebangDirectiveTrivia(ShebangDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.ExclamationToken), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
public override SyntaxNode? VisitNullableDirectiveTrivia(NullableDirectiveTriviaSyntax node)
{
//IL_0003: 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)
//IL_000f: Unknown result type (might be due to invalid IL or missing references)
//IL_0014: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Unknown result type (might be due to invalid IL or missing references)
//IL_0020: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
return (SyntaxNode?)(object)node.Update(VisitToken(node.HashToken), VisitToken(node.NullableKeyword), VisitToken(node.SettingToken), VisitToken(node.TargetToken), VisitToken(node.EndOfDirectiveToken), node.IsActive);
}
}