1 write to Green
Microsoft.CodeAnalysis (1)
Syntax\SyntaxNode.cs (1)
36
Green
= green;
1397 references to Green
Microsoft.CodeAnalysis (80)
SourceGeneration\ISyntaxHelper.cs (1)
70
=> ContainsAttributeList(root.
Green
, this.AttributeListKind);
SourceGeneration\Nodes\SyntaxValueProvider_ForAttributeWithSimpleName.cs (3)
120
syntaxHelper.AddAliases(compilationUnit.
Green
, globalAliases, global: true);
198
syntaxHelper.AddAliases(compilationUnit.
Green
, localAliases, global: false);
225
syntaxHelper.AddAliases(namespaceBlock.
Green
, localAliases, global: false);
Syntax\ChildSyntaxList.cs (4)
22
_count = CountNodes(node.
Green
);
93
var green = node.
Green
;
177
GreenNode? green = node.
Green
;
256
var green = node.
Green
;
Syntax\ChildSyntaxList.Enumerator.cs (1)
34
_count = CountNodes(node.
Green
);
Syntax\InternalSyntax\GreenNodeExtensions.cs (2)
12
ToGreenList<T>(node.
Green
) :
19
new SeparatedSyntaxList<T>(ToGreenList<T>(node.
Green
)) :
Syntax\SeparatedSyntaxList.cs (3)
123
var green = node.
Green
.GetRequiredSlot(index);
402
nodesToInsertWithSeparators.Add(item.
Green
.CreateSeparator<TNode>(item));
414
nodesToInsertWithSeparators.Add(node.
Green
.CreateSeparator<TNode>(node)); // separator
Syntax\SyntaxList.SeparatedWithManyChildren.cs (1)
52
&& (valueIndex >=
Green
.SlotCount - 2 || GetCachedSlot(valueIndex + 2) is { }))
Syntax\SyntaxList`1.cs (1)
318
var newGreen = GreenNode.CreateList(items, static n => n.
Green
);
Syntax\SyntaxListBuilder.cs (3)
27
AddInternal(item.
Green
);
59
_nodes[j].Value = items[i].
Green
;
94
_nodes[dst].Value = list.ItemInternal(i)!.
Green
;
Syntax\SyntaxNode.cs (53)
33
RoslynDebug.Assert(parent?.
Green
.IsList != true, "list cannot be a parent");
58
public int RawKind =>
Green
.RawKind;
60
protected string KindText =>
Green
.KindText;
71
internal int EndPosition => Position +
Green
.FullWidth;
78
internal bool IsList => this.
Green
.IsList;
83
public TextSpan FullSpan => new TextSpan(this.Position, this.
Green
.FullWidth);
85
internal int SlotCount => this.
Green
.SlotCount;
96
var width = this.
Green
.FullWidth;
99
var precedingWidth = this.
Green
.GetLeadingTriviaWidth();
104
width -= this.
Green
.GetTrailingTriviaWidth();
117
public int SpanStart => Position +
Green
.GetLeadingTriviaWidth();
125
internal int Width => this.
Green
.Width;
132
internal int FullWidth => this.
Green
.FullWidth;
141
var green = this.
Green
.GetSlot(slot);
159
var green = this.
Green
.GetSlot(0);
176
var green = this.
Green
.GetSlot(slot);
194
var green = this.
Green
.GetSlot(0);
218
var green = this.
Green
.GetRequiredSlot(slot);
238
var green = this.
Green
.GetRequiredSlot(1);
264
var greenChild = this.
Green
.GetRequiredSlot(index);
291
return this.
Green
.ToString();
301
return this.
Green
.ToFullString();
309
this.
Green
.WriteTo(writer, leading: true, trailing: true);
347
return this.
Green
.IsEquivalentTo(other.
Green
);
365
=> this.
Green
!= null && this.
Green
== other?.
Green
;
377
return this.
Green
.IsMissing;
402
return this.
Green
.IsStructuredTrivia;
413
return this.
Green
.ContainsStructuredTrivia && !this.
Green
.IsStructuredTrivia;
424
return this.
Green
.ContainsSkippedText;
435
return this.
Green
.ContainsDiagnostics;
442
public bool ContainsDirectives => this.
Green
.ContainsDirectives;
454
stack.Push(this.
Green
);
588
var item = this.
Green
.GetSlot(i);
621
var green = this.
Green
;
649
var green = this.
Green
;
1200
get { return this.
Green
.ContainsAnnotations; }
1208
return this.
Green
.HasAnnotations(annotationKind);
1216
return this.
Green
.HasAnnotations(annotationKinds);
1224
return this.
Green
.HasAnnotation(annotation);
1232
return this.
Green
.GetAnnotations(annotationKind);
1240
return this.
Green
.GetAnnotations(annotationKinds);
1245
return this.
Green
.GetAnnotations();
1338
return this.
Green
.WithAdditionalAnnotationsGreen(annotations).CreateRed();
1343
return this.
Green
.WithoutAnnotationsGreen(annotations).CreateRed();
1366
var annotations = this.
Green
.GetAnnotations();
1369
return (T)(node.
Green
.WithAdditionalAnnotationsGreen(annotations)).CreateRed();
1407
writer.WriteValue(
Green
);
1637
return new Syntax.InternalSyntax.SyntaxDiagnosticInfoList(this.
Green
).Any(
1647
var clone = (T)node.
Green
.CreateRed(null, 0);
Syntax\SyntaxNodeOrToken.cs (4)
46
Debug.Assert(!node.
Green
.IsList, "node cannot be a list");
54
Debug.Assert(parent == null || !parent.
Green
.IsList, "parent cannot be a list");
82
return _nodeOrParent.
Green
.KindText;
128
internal GreenNode? UnderlyingNode => _token ?? _nodeOrParent?.
Green
;
Syntax\SyntaxNodeOrTokenList.cs (2)
92
get { return _node == null ? 0 : _node.
Green
.IsList ? _node.SlotCount : 1; }
116
var green = _node.
Green
.GetRequiredSlot(index);
Syntax\SyntaxNodeOrTokenListBuilder.cs (1)
72
this.Add(item.
Green
);
Syntax\SyntaxToken.cs (1)
33
Debug.Assert(parent == null || !parent.
Green
.IsList, "list cannot be a parent");
Microsoft.CodeAnalysis.CSharp (29)
Binder\Semantics\Operators\OperatorFacts.cs (2)
120
return OperatorNameFromDeclaration((Syntax.InternalSyntax.OperatorDeclarationSyntax)(declaration.
Green
));
153
return OperatorNameFromDeclaration((Syntax.InternalSyntax.ConversionOperatorDeclarationSyntax)(declaration.
Green
));
CSharpExtensions.cs (1)
324
return ((Syntax.InternalSyntax.CSharpSyntaxNode)node.
Green
).ApplyDirectives(stack);
Declarations\DeclarationTreeBuilder.cs (4)
208
var membernames = GetNonTypeMemberNames(((Syntax.InternalSyntax.CompilationUnitSyntax)(compilationUnit.
Green
)).Members, ref declFlags);
315
var children = VisitNamespaceChildren(compilationUnit, compilationUnit.Members, ((Syntax.InternalSyntax.CompilationUnitSyntax)(compilationUnit.
Green
)).Members);
417
var children = VisitNamespaceChildren(node, node.Members, ((Syntax.InternalSyntax.BaseNamespaceDeclarationSyntax)node.
Green
).Members);
623
var memberNames = GetNonTypeMemberNames(((Syntax.InternalSyntax.TypeDeclarationSyntax)(node.
Green
)).Members,
Parser\Blender.Cursor.cs (1)
128
var greenToken = Lexer.RescanInterpolatedString((InterpolatedStringExpressionSyntax)node.
Green
);
Parser\Blender.Reader.cs (1)
298
return node.
Green
.GetLastTerminal().IsMissing;
Parser\LanguageParser.cs (1)
12941
return current != null && MatchesFactoryContext(current.
Green
, _syntaxFactoryContext);
Parser\SyntaxParser.cs (1)
281
var result = CurrentNode.
Green
;
SourceGeneration\CSharpSyntaxHelper.cs (1)
126
var compilationUnit = (Syntax.InternalSyntax.CompilationUnitSyntax)root.
Green
;
Syntax\CSharpSyntaxNode.cs (2)
143
get { return (Syntax.InternalSyntax.CSharpSyntaxNode)this.
Green
; }
151
return (SyntaxKind)this.
Green
.RawKind;
Syntax\CSharpSyntaxTree.cs (1)
790
return GetDiagnostics(node.
Green
, node.Position);
Syntax\DirectiveTriviaSyntax.cs (2)
85
else if (tr.UnderlyingNode == this.
Green
&& tr.SpanStart == this.SpanStart && (object)d == this)
116
else if (tr.UnderlyingNode == this.
Green
&& tr.SpanStart == this.SpanStart && (object)d == this)
Syntax\NamespaceDeclarationSyntax.cs (1)
17
return (InternalSyntax.NamespaceDeclarationSyntax)base.
Green
;
Syntax\SyntaxEquivalence.cs (2)
39
return AreEquivalentRecursive(before.
Green
, after.
Green
, ignoreChildNode, topLevel: topLevel);
Syntax\SyntaxFactory.cs (1)
1294
return new SyntaxTrivia(default(SyntaxToken), node.
Green
, position: 0, index: 0);
Syntax\SyntaxFacts.cs (2)
563
stack.Push(node.
Green
);
568
Debug.Assert(node.
Green
== current || current is not Syntax.InternalSyntax.MemberDeclarationSyntax and not Syntax.InternalSyntax.TypeDeclarationSyntax);
Syntax\SyntaxNodeExtensions.cs (1)
15
return (TNode)node.
Green
.SetAnnotations(annotations).CreateRed();
Syntax\TypeSyntax.cs (5)
9
public bool IsVar => ((InternalSyntax.TypeSyntax)this.
Green
).IsVar;
11
public bool IsUnmanaged => ((InternalSyntax.TypeSyntax)this.
Green
).IsUnmanaged;
13
public bool IsNotNull => ((InternalSyntax.TypeSyntax)this.
Green
).IsNotNull;
15
public bool IsNint => ((InternalSyntax.TypeSyntax)this.
Green
).IsNint;
17
public bool IsNuint => ((InternalSyntax.TypeSyntax)this.
Green
).IsNuint;
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (6)
Diagnostics\LocationsTests.cs (1)
557
var nodeWithBadError = node.
Green
.WithDiagnosticsGreen(new DiagnosticInfo[] { new SyntaxDiagnosticInfo(10, 10, ErrorCode.ERR_NoBaseClass) }).CreateRed();
IncrementalParsing\IncrementalParsingTests.cs (1)
2665
tree.GetCompilationUnitRoot().Members.First().
Green
;
Parsing\SyntaxExtensions.cs (3)
29
return node.
Green
.ErrorsOrWarnings(errorsOnly: true);
34
return node.
Green
.ErrorsOrWarnings(errorsOnly: false);
39
return node.
Green
.ErrorsAndWarnings();
Syntax\SyntaxNodeTests.cs (1)
3280
var internalParameterList = (InternalSyntax.ParameterListSyntax)method.ParameterList.
Green
;
Microsoft.CodeAnalysis.Test.Utilities (1)
Compilation\CompilationExtensions.cs (1)
407
var green = (Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList)separatedList.
Green
;
Microsoft.CodeAnalysis.VisualBasic (1278)
CommandLine\VisualBasicCommandLineParser.vb (1)
2015
DirectCast(expression.
Green
, InternalSyntax.ExpressionSyntax), defines)
Generated\Syntax.xml.Main.Generated.vb (488)
1493
Return New EmptyStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newEmpty)
1508
Return New EndBlockStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newEndKeyword, newBlockKeyword)
1529
Return New CompilationUnitSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOptions.Node, newImports.Node, newAttributes.Node, newMembers.Node, newEndOfFileToken)
1546
Return New OptionStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOptionKeyword, newNameKeyword, newValueKeyword)
1561
Return New ImportsStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newImportsKeyword, newImportsClauses.Node)
1576
Return New SimpleImportsClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAlias, newName)
1591
Return New ImportAliasClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIdentifier, newEqualsToken)
1608
Return New XmlNamespaceImportsClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanToken, newXmlNamespace, newGreaterThanToken)
1625
Return New NamespaceBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNamespaceStatement, newMembers.Node, newEndNamespaceStatement)
1640
Return New NamespaceStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNamespaceKeyword, newName)
1661
Return New ModuleBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newModuleStatement, newInherits.Node, newImplements.Node, newMembers.Node, newEndModuleStatement)
1682
Return New StructureBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newStructureStatement, newInherits.Node, newImplements.Node, newMembers.Node, newEndStructureStatement)
1703
Return New InterfaceBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newInterfaceStatement, newInherits.Node, newImplements.Node, newMembers.Node, newEndInterfaceStatement)
1724
Return New ClassBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newClassStatement, newInherits.Node, newImplements.Node, newMembers.Node, newEndClassStatement)
1741
Return New EnumBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newEnumStatement, newMembers.Node, newEndEnumStatement)
1756
Return New InheritsStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newInheritsKeyword, newTypes.Node)
1771
Return New ImplementsStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newImplementsKeyword, newTypes.Node)
1792
Return New ModuleStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newModuleKeyword, newIdentifier, newTypeParameterList)
1813
Return New StructureStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newStructureKeyword, newIdentifier, newTypeParameterList)
1834
Return New InterfaceStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newInterfaceKeyword, newIdentifier, newTypeParameterList)
1855
Return New ClassStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newClassKeyword, newIdentifier, newTypeParameterList)
1876
Return New EnumStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newEnumKeyword, newIdentifier, newUnderlyingType)
1895
Return New TypeParameterListSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newOfKeyword, newParameters.Node, newCloseParenToken)
1912
Return New TypeParameterSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newVarianceKeyword, newIdentifier, newTypeParameterConstraintClause)
1927
Return New TypeParameterSingleConstraintClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAsKeyword, newConstraint)
1946
Return New TypeParameterMultipleConstraintClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAsKeyword, newOpenBraceToken, newConstraints.Node, newCloseBraceToken)
1959
Return New SpecialConstraintSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newConstraintKeyword)
1972
Return New TypeConstraintSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newType)
1989
Return New EnumMemberDeclarationSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newIdentifier, newInitializer)
2006
Return New MethodBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSubOrFunctionStatement, newStatements.Node, newEndSubOrFunctionStatement)
2023
Return New ConstructorBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSubNewStatement, newStatements.Node, newEndSubStatement)
2040
Return New OperatorBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOperatorStatement, newStatements.Node, newEndOperatorStatement)
2057
Return New AccessorBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAccessorStatement, newStatements.Node, newEndAccessorStatement)
2074
Return New PropertyBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newPropertyStatement, newAccessors.Node, newEndPropertyStatement)
2091
Return New EventBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newEventStatement, newAccessors.Node, newEndEventStatement)
2108
Return New ParameterListSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newParameters.Node, newCloseParenToken)
2137
Return New MethodStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newSubOrFunctionKeyword, newIdentifier, newTypeParameterList, newParameterList, newAsClause, newHandlesClause, newImplementsClause)
2158
Return New SubNewStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newSubKeyword, newNewKeyword, newParameterList)
2193
Return New DeclareStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newDeclareKeyword, newCharsetKeyword, newSubOrFunctionKeyword, newIdentifier, newLibKeyword, newLibraryName, newAliasKeyword, newAliasName, newParameterList, newAsClause)
2220
Return New DelegateStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newDelegateKeyword, newSubOrFunctionKeyword, newIdentifier, newTypeParameterList, newParameterList, newAsClause)
2247
Return New EventStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newCustomKeyword, newEventKeyword, newIdentifier, newParameterList, newAsClause, newImplementsClause)
2270
Return New OperatorStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newOperatorKeyword, newOperatorToken, newParameterList, newAsClause)
2297
Return New PropertyStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newPropertyKeyword, newIdentifier, newParameterList, newAsClause, newInitializer, newImplementsClause)
2316
Return New AccessorStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newAccessorKeyword, newParameterList)
2331
Return New ImplementsClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newImplementsKeyword, newInterfaceMembers.Node)
2346
Return New HandlesClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHandlesKeyword, newEvents.Node)
2359
Return New KeywordEventContainerSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword)
2372
Return New WithEventsEventContainerSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIdentifier)
2389
Return New WithEventsPropertyEventContainerSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWithEventsContainer, newDotToken, newProperty)
2406
Return New HandlesClauseItemSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newEventContainer, newDotToken, newEventMember)
2423
Return New IncompleteMemberSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newMissingIdentifier)
2440
Return New FieldDeclarationSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newDeclarators.Node)
2457
Return New VariableDeclaratorSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNames.Node, newAsClause, newInitializer)
2474
Return New SimpleAsClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAsKeyword, newAttributeLists.Node, newType)
2489
Return New AsNewClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAsKeyword, newNewExpression)
2508
Return New ObjectMemberInitializerSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWithKeyword, newOpenBraceToken, newInitializers.Node, newCloseBraceToken)
2523
Return New ObjectCollectionInitializerSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newFromKeyword, newInitializer)
2538
Return New InferredFieldInitializerSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyKeyword, newExpression)
2559
Return New NamedFieldInitializerSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyKeyword, newDotToken, newName, newEqualsToken, newExpression)
2574
Return New EqualsValueSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newEqualsToken, newValue)
2595
Return New ParameterSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newIdentifier, newAsClause, newDefault)
2614
Return New ModifiedIdentifierSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIdentifier, newNullable, newArrayBounds, newArrayRankSpecifiers.Node)
2631
Return New ArrayRankSpecifierSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newCommaTokens.Node, newCloseParenToken)
2648
Return New AttributeListSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanToken, newAttributes.Node, newGreaterThanToken)
2665
Return New AttributeSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newTarget, newName, newArgumentList)
2680
Return New AttributeTargetSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeModifier, newColonToken)
2693
Return New AttributesStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node)
2706
Return New ExpressionStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newExpression)
2721
Return New PrintStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newQuestionToken, newExpression)
2738
Return New WhileBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWhileStatement, newStatements.Node, newEndWhileStatement)
2755
Return New UsingBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newUsingStatement, newStatements.Node, newEndUsingStatement)
2772
Return New SyncLockBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSyncLockStatement, newStatements.Node, newEndSyncLockStatement)
2789
Return New WithBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWithStatement, newStatements.Node, newEndWithStatement)
2804
Return New LocalDeclarationStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newModifiers.Node, newDeclarators.Node)
2819
Return New LabelStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLabelToken, newColonToken)
2834
Return New GoToStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newGoToKeyword, newLabel)
2847
Return New LabelSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLabelToken)
2860
Return New StopOrEndStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newStopOrEndKeyword)
2875
Return New ExitStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newExitKeyword, newBlockKeyword)
2890
Return New ContinueStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newContinueKeyword, newBlockKeyword)
2905
Return New ReturnStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newReturnKeyword, newExpression)
2926
Return New SingleLineIfStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIfKeyword, newCondition, newThenKeyword, newStatements.Node, newElseClause)
2941
Return New SingleLineElseClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newElseKeyword, newStatements.Node)
2962
Return New MultiLineIfBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIfStatement, newStatements.Node, newElseIfBlocks.Node, newElseBlock, newEndIfStatement)
2979
Return New IfStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIfKeyword, newCondition, newThenKeyword)
2994
Return New ElseIfBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newElseIfStatement, newStatements.Node)
3011
Return New ElseIfStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newElseIfKeyword, newCondition, newThenKeyword)
3026
Return New ElseBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newElseStatement, newStatements.Node)
3039
Return New ElseStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newElseKeyword)
3060
Return New TryBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newTryStatement, newStatements.Node, newCatchBlocks.Node, newFinallyBlock, newEndTryStatement)
3073
Return New TryStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newTryKeyword)
3088
Return New CatchBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newCatchStatement, newStatements.Node)
3107
Return New CatchStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newCatchKeyword, newIdentifierName, newAsClause, newWhenClause)
3122
Return New CatchFilterClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWhenKeyword, newFilter)
3137
Return New FinallyBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newFinallyStatement, newStatements.Node)
3150
Return New FinallyStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newFinallyKeyword)
3165
Return New ErrorStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newErrorKeyword, newErrorNumber)
3186
Return New OnErrorGoToStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOnKeyword, newErrorKeyword, newGoToKeyword, newMinus, newLabel)
3205
Return New OnErrorResumeNextStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOnKeyword, newErrorKeyword, newResumeKeyword, newNextKeyword)
3220
Return New ResumeStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newResumeKeyword, newLabel)
3237
Return New SelectBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSelectStatement, newCaseBlocks.Node, newEndSelectStatement)
3254
Return New SelectStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSelectKeyword, newCaseKeyword, newExpression)
3269
Return New CaseBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newCaseStatement, newStatements.Node)
3284
Return New CaseStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newCaseKeyword, newCases.Node)
3297
Return New ElseCaseClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newElseKeyword)
3310
Return New SimpleCaseClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newValue)
3327
Return New RangeCaseClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLowerBound, newToKeyword, newUpperBound)
3344
Return New RelationalCaseClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIsKeyword, newOperatorToken, newValue)
3359
Return New SyncLockStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSyncLockKeyword, newExpression)
3376
Return New DoLoopBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newDoStatement, newStatements.Node, newLoopStatement)
3391
Return New DoStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newDoKeyword, newWhileOrUntilClause)
3406
Return New LoopStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLoopKeyword, newWhileOrUntilClause)
3421
Return New WhileOrUntilClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWhileOrUntilKeyword, newCondition)
3436
Return New WhileStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWhileKeyword, newCondition)
3453
Return New ForBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newForStatement, newStatements.Node, newNextStatement)
3470
Return New ForEachBlockSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newForEachStatement, newStatements.Node, newNextStatement)
3495
Return New ForStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newForKeyword, newControlVariable, newEqualsToken, newFromValue, newToKeyword, newToValue, newStepClause)
3510
Return New ForStepClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newStepKeyword, newStepValue)
3531
Return New ForEachStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newForKeyword, newEachKeyword, newControlVariable, newInKeyword, newExpression)
3546
Return New NextStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNextKeyword, newControlVariables.Node)
3563
Return New UsingStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newUsingKeyword, newExpression, newVariables.Node)
3578
Return New ThrowStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newThrowKeyword, newExpression)
3595
Return New AssignmentStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLeft, newOperatorToken, newRight)
3610
Return New MidExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newMid, newArgumentList)
3625
Return New CallStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newCallKeyword, newInvocation)
3644
Return New AddRemoveHandlerStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAddHandlerOrRemoveHandlerKeyword, newEventExpression, newCommaToken, newDelegateExpression)
3661
Return New RaiseEventStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newRaiseEventKeyword, newName, newArgumentList)
3676
Return New WithStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWithKeyword, newExpression)
3693
Return New ReDimStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newReDimKeyword, newPreserveKeyword, newClauses.Node)
3708
Return New RedimClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newExpression, newArrayBounds)
3723
Return New EraseStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newEraseKeyword, newExpressions.Node)
3736
Return New LiteralExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newToken)
3753
Return New ParenthesizedExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newExpression, newCloseParenToken)
3770
Return New TupleExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newArguments.Node, newCloseParenToken)
3787
Return New TupleTypeSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newElements.Node, newCloseParenToken)
3800
Return New TypedTupleElementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newType)
3815
Return New NamedTupleElementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIdentifier, newAsClause)
3828
Return New MeExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword)
3841
Return New MyBaseExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword)
3854
Return New MyClassExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword)
3873
Return New GetTypeExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newGetTypeKeyword, newOpenParenToken, newType, newCloseParenToken)
3892
Return New TypeOfExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newTypeOfKeyword, newExpression, newOperatorToken, newType)
3911
Return New GetXmlNamespaceExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newGetXmlNamespaceKeyword, newOpenParenToken, newName, newCloseParenToken)
3928
Return New MemberAccessExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newExpression, newOperatorToken, newName)
3949
Return New XmlMemberAccessExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newBase, newToken1, newToken2, newToken3, newName)
3964
Return New InvocationExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newExpression, newArgumentList)
3985
Return New ObjectCreationExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNewKeyword, newAttributeLists.Node, newType, newArgumentList, newInitializer)
4002
Return New AnonymousObjectCreationExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNewKeyword, newAttributeLists.Node, newInitializer)
4025
Return New ArrayCreationExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNewKeyword, newAttributeLists.Node, newType, newArrayBounds, newRankSpecifiers.Node, newInitializer)
4042
Return New CollectionInitializerSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenBraceToken, newInitializers.Node, newCloseBraceToken)
4065
Return New CTypeExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword, newOpenParenToken, newExpression, newCommaToken, newType, newCloseParenToken)
4088
Return New DirectCastExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword, newOpenParenToken, newExpression, newCommaToken, newType, newCloseParenToken)
4111
Return New TryCastExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword, newOpenParenToken, newExpression, newCommaToken, newType, newCloseParenToken)
4130
Return New PredefinedCastExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword, newOpenParenToken, newExpression, newCloseParenToken)
4147
Return New BinaryExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLeft, newOperatorToken, newRight)
4162
Return New UnaryExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOperatorToken, newOperand)
4185
Return New BinaryConditionalExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIfKeyword, newOpenParenToken, newFirstExpression, newCommaToken, newSecondExpression, newCloseParenToken)
4212
Return New TernaryConditionalExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIfKeyword, newOpenParenToken, newCondition, newFirstCommaToken, newWhenTrue, newSecondCommaToken, newWhenFalse, newCloseParenToken)
4227
Return New SingleLineLambdaExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSubOrFunctionHeader, newBody)
4244
Return New MultiLineLambdaExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSubOrFunctionHeader, newStatements.Node, newEndSubOrFunctionStatement)
4265
Return New LambdaHeaderSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAttributeLists.Node, newModifiers.Node, newSubOrFunctionKeyword, newParameterList, newAsClause)
4282
Return New ArgumentListSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newArguments.Node, newCloseParenToken)
4295
Return New OmittedArgumentSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newEmpty)
4310
Return New SimpleArgumentSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNameColonEquals, newExpression)
4325
Return New NameColonEqualsSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newName, newColonEqualsToken)
4342
Return New RangeArgumentSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLowerBound, newToKeyword, newUpperBound)
4355
Return New QueryExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newClauses.Node)
4374
Return New CollectionRangeVariableSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIdentifier, newAsClause, newInKeyword, newExpression)
4389
Return New ExpressionRangeVariableSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNameEquals, newExpression)
4404
Return New AggregationRangeVariableSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNameEquals, newAggregation)
4421
Return New VariableNameEqualsSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIdentifier, newAsClause, newEqualsToken)
4440
Return New FunctionAggregationSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newFunctionName, newOpenParenToken, newArgument, newCloseParenToken)
4453
Return New GroupAggregationSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newGroupKeyword)
4468
Return New FromClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newFromKeyword, newVariables.Node)
4483
Return New LetClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLetKeyword, newVariables.Node)
4504
Return New AggregateClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAggregateKeyword, newVariables.Node, newAdditionalQueryOperators.Node, newIntoKeyword, newAggregationVariables.Node)
4517
Return New DistinctClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newDistinctKeyword)
4532
Return New WhereClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newWhereKeyword, newCondition)
4549
Return New PartitionWhileClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSkipOrTakeKeyword, newWhileKeyword, newCondition)
4564
Return New PartitionClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSkipOrTakeKeyword, newCount)
4587
Return New GroupByClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newGroupKeyword, newItems.Node, newByKeyword, newKeys.Node, newIntoKeyword, newAggregationVariables.Node)
4604
Return New JoinConditionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLeft, newEqualsKeyword, newRight)
4625
Return New SimpleJoinClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newJoinKeyword, newJoinedVariables.Node, newAdditionalJoins.Node, newOnKeyword, newJoinConditions.Node)
4652
Return New GroupJoinClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newGroupKeyword, newJoinKeyword, newJoinedVariables.Node, newAdditionalJoins.Node, newOnKeyword, newJoinConditions.Node, newIntoKeyword, newAggregationVariables.Node)
4669
Return New OrderByClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOrderKeyword, newByKeyword, newOrderings.Node)
4684
Return New OrderingSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newExpression, newAscendingOrDescendingKeyword)
4699
Return New SelectClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newSelectKeyword, newVariables.Node)
4718
Return New XmlDocumentSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newDeclaration, newPrecedingMisc.Node, newRoot, newFollowingMisc.Node)
4741
Return New XmlDeclarationSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanQuestionToken, newXmlKeyword, newVersion, newEncoding, newStandalone, newQuestionGreaterThanToken)
4758
Return New XmlDeclarationOptionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newName, newEquals, newValue)
4775
Return New XmlElementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newStartTag, newContent.Node, newEndTag)
4788
Return New XmlTextSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newTextTokens.Node)
4807
Return New XmlElementStartTagSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanToken, newName, newAttributes.Node, newGreaterThanToken)
4824
Return New XmlElementEndTagSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanSlashToken, newName, newGreaterThanToken)
4843
Return New XmlEmptyElementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanToken, newName, newAttributes.Node, newSlashGreaterThanToken)
4860
Return New XmlAttributeSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newName, newEqualsToken, newValue)
4877
Return New XmlStringSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newStartQuoteToken, newTextTokens.Node, newEndQuoteToken)
4890
Return New XmlPrefixNameSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newName)
4905
Return New XmlNameSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newPrefix, newLocalName)
4922
Return New XmlBracketedNameSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanToken, newName, newGreaterThanToken)
4937
Return New XmlPrefixSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newName, newColonToken)
4954
Return New XmlCommentSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanExclamationMinusMinusToken, newTextTokens.Node, newMinusMinusGreaterThanToken)
4973
Return New XmlProcessingInstructionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanQuestionToken, newName, newTextTokens.Node, newQuestionGreaterThanToken)
4990
Return New XmlCDataSectionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newBeginCDataToken, newTextTokens.Node, newEndCDataToken)
5007
Return New XmlEmbeddedExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLessThanPercentEqualsToken, newExpression, newPercentGreaterThanToken)
5022
Return New ArrayTypeSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newElementType, newRankSpecifiers.Node)
5037
Return New NullableTypeSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newElementType, newQuestionMarkToken)
5050
Return New PredefinedTypeSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newKeyword)
5063
Return New IdentifierNameSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIdentifier)
5078
Return New GenericNameSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newIdentifier, newTypeArgumentList)
5095
Return New QualifiedNameSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLeft, newDotToken, newRight)
5108
Return New GlobalNameSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newGlobalKeyword)
5127
Return New TypeArgumentListSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newOfKeyword, newArguments.Node, newCloseParenToken)
5144
Return New CrefReferenceSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newName, newSignature, newAsClause)
5161
Return New CrefSignatureSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenParenToken, newArgumentTypes.Node, newCloseParenToken)
5176
Return New CrefSignaturePartSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newModifier, newType)
5191
Return New CrefOperatorReferenceSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOperatorKeyword, newOperatorToken)
5208
Return New QualifiedCrefOperatorReferenceSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newLeft, newDotToken, newRight)
5223
Return New YieldStatementSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newYieldKeyword, newExpression)
5238
Return New AwaitExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newAwaitKeyword, newExpression)
5251
Return New SkippedTokensTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newTokens.Node)
5264
Return New DocumentationCommentTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newContent.Node)
5285
Return New XmlCrefAttributeSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newName, newEqualsToken, newStartQuoteToken, newReference, newEndQuoteToken)
5306
Return New XmlNameAttributeSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newName, newEqualsToken, newStartQuoteToken, newReference, newEndQuoteToken)
5323
Return New ConditionalAccessExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newExpression, newQuestionMarkToken, newWhenNotNull)
5342
Return New NameOfExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newNameOfKeyword, newOpenParenToken, newArgument, newCloseParenToken)
5359
Return New InterpolatedStringExpressionSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newDollarSignDoubleQuoteToken, newContents.Node, newDoubleQuoteToken)
5372
Return New InterpolatedStringTextSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newTextToken)
5393
Return New InterpolationSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newOpenBraceToken, newExpression, newAlignmentClause, newFormatClause, newCloseBraceToken)
5408
Return New InterpolationAlignmentClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newCommaToken, newValue)
5423
Return New InterpolationFormatClauseSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newColonToken, newFormatStringToken)
5444
Return New ConstDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newConstKeyword, newName, newEqualsToken, newValue)
5465
Return New IfDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newElseKeyword, newIfOrElseIfKeyword, newCondition, newThenKeyword)
5480
Return New ElseDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newElseKeyword)
5497
Return New EndIfDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newEndKeyword, newIfKeyword)
5514
Return New RegionDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newRegionKeyword, newName)
5531
Return New EndRegionDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newEndKeyword, newRegionKeyword)
5556
Return New ExternalSourceDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newExternalSourceKeyword, newOpenParenToken, newExternalSource, newCommaToken, newLineStart, newCloseParenToken)
5573
Return New EndExternalSourceDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newEndKeyword, newExternalSourceKeyword)
5602
Return New ExternalChecksumDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newExternalChecksumKeyword, newOpenParenToken, newExternalSource, newFirstCommaToken, newGuid, newSecondCommaToken, newChecksum, newCloseParenToken)
5621
Return New EnableWarningDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newEnableKeyword, newWarningKeyword, newErrorCodes.Node)
5640
Return New DisableWarningDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newDisableKeyword, newWarningKeyword, newErrorCodes.Node)
5657
Return New ReferenceDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken, newReferenceKeyword, newFile)
5670
Return New BadDirectiveTriviaSyntax(node.Kind, node.
Green
.GetDiagnostics, node.
Green
.GetAnnotations, newHashToken)
Generated\Syntax.xml.Syntax.Generated.vb (769)
191
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EmptyStatementSyntax)._empty, Me.Position, 0)
295
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)._endKeyword, Me.Position, 0)
316
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)._blockKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
403
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CompilationUnitSyntax(kind, errors, annotations, if(options IsNot Nothing, options.
Green
, Nothing), if([imports] IsNot Nothing, [imports].
Green
, Nothing), if(attributes IsNot Nothing, attributes.
Green
, Nothing), if(members IsNot Nothing, members.
Green
, Nothing), endOfFileToken), Nothing, 0)
519
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CompilationUnitSyntax)._endOfFileToken, Me.GetChildPosition(4), Me.GetChildIndex(4))
632
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OptionStatementSyntax)._optionKeyword, Me.Position, 0)
651
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OptionStatementSyntax)._nameKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
673
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OptionStatementSyntax)._valueKeyword
761
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImportsStatementSyntax(kind, errors, annotations, importsKeyword, if(importsClauses IsNot Nothing, importsClauses.
Green
, Nothing)), Nothing, 0)
769
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImportsStatementSyntax)._importsKeyword, Me.Position, 0)
901
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleImportsClauseSyntax(kind, errors, annotations, if([alias] IsNot Nothing, DirectCast([alias].
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImportAliasClauseSyntax), Nothing), DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameSyntax)), Nothing, 0)
1025
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImportAliasClauseSyntax)._identifier, Me.Position, 0)
1043
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImportAliasClauseSyntax)._equalsToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
1124
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNamespaceImportsClauseSyntax(kind, errors, annotations, lessThanToken, DirectCast(xmlNamespace.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlAttributeSyntax), greaterThanToken), Nothing, 0)
1129
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNamespaceImportsClauseSyntax)._lessThanToken, Me.Position, 0)
1162
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNamespaceImportsClauseSyntax)._greaterThanToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
1252
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamespaceBlockSyntax(kind, errors, annotations, DirectCast(namespaceStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamespaceStatementSyntax), if(members IsNot Nothing, members.
Green
, Nothing), DirectCast(endNamespaceStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
1401
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamespaceStatementSyntax(kind, errors, annotations, namespaceKeyword, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameSyntax)), Nothing, 0)
1409
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamespaceStatementSyntax)._namespaceKeyword, Me.Position, 0)
1625
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModuleBlockSyntax(kind, errors, annotations, DirectCast(moduleStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModuleStatementSyntax), if([inherits] IsNot Nothing, [inherits].
Green
, Nothing), if([implements] IsNot Nothing, [implements].
Green
, Nothing), if(members IsNot Nothing, members.
Green
, Nothing), DirectCast(endModuleStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
1877
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.StructureBlockSyntax(kind, errors, annotations, DirectCast(structureStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.StructureStatementSyntax), if([inherits] IsNot Nothing, [inherits].
Green
, Nothing), if([implements] IsNot Nothing, [implements].
Green
, Nothing), if(members IsNot Nothing, members.
Green
, Nothing), DirectCast(endStructureStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
2129
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterfaceBlockSyntax(kind, errors, annotations, DirectCast(interfaceStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterfaceStatementSyntax), if([inherits] IsNot Nothing, [inherits].
Green
, Nothing), if([implements] IsNot Nothing, [implements].
Green
, Nothing), if(members IsNot Nothing, members.
Green
, Nothing), DirectCast(endInterfaceStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
2381
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ClassBlockSyntax(kind, errors, annotations, DirectCast(classStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ClassStatementSyntax), if([inherits] IsNot Nothing, [inherits].
Green
, Nothing), if([implements] IsNot Nothing, [implements].
Green
, Nothing), if(members IsNot Nothing, members.
Green
, Nothing), DirectCast(endClassStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
2634
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnumBlockSyntax(kind, errors, annotations, DirectCast(enumStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnumStatementSyntax), if(members IsNot Nothing, members.
Green
, Nothing), DirectCast(endEnumStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
2798
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InheritsStatementSyntax(kind, errors, annotations, inheritsKeyword, if(types IsNot Nothing, types.
Green
, Nothing)), Nothing, 0)
2806
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InheritsStatementSyntax)._inheritsKeyword, Me.Position, 0)
2916
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImplementsStatementSyntax(kind, errors, annotations, implementsKeyword, if(types IsNot Nothing, types.
Green
, Nothing)), Nothing, 0)
2924
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImplementsStatementSyntax)._implementsKeyword, Me.Position, 0)
3077
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeStatementSyntax)._modifiers
3108
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeStatementSyntax)._identifier, Me.GetChildPosition(2), Me.GetChildIndex(2))
3176
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModuleStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, moduleKeyword, identifier, if(typeParameterList IsNot Nothing, DirectCast(typeParameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax), Nothing)), Nothing, 0)
3227
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModuleStatementSyntax)._modifiers
3265
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModuleStatementSyntax)._moduleKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
3283
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModuleStatementSyntax)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
3428
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.StructureStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, structureKeyword, identifier, if(typeParameterList IsNot Nothing, DirectCast(typeParameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax), Nothing)), Nothing, 0)
3479
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.StructureStatementSyntax)._modifiers
3517
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.StructureStatementSyntax)._structureKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
3535
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.StructureStatementSyntax)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
3680
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterfaceStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, interfaceKeyword, identifier, if(typeParameterList IsNot Nothing, DirectCast(typeParameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax), Nothing)), Nothing, 0)
3731
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterfaceStatementSyntax)._modifiers
3769
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterfaceStatementSyntax)._interfaceKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
3787
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterfaceStatementSyntax)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
3932
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ClassStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, classKeyword, identifier, if(typeParameterList IsNot Nothing, DirectCast(typeParameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax), Nothing)), Nothing, 0)
3983
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ClassStatementSyntax)._modifiers
4021
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ClassStatementSyntax)._classKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
4039
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ClassStatementSyntax)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
4186
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnumStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, enumKeyword, identifier, if(underlyingType IsNot Nothing, DirectCast(underlyingType.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AsClauseSyntax), Nothing)), Nothing, 0)
4225
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnumStatementSyntax)._modifiers
4251
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnumStatementSyntax)._enumKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
4269
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnumStatementSyntax)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
4389
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax(kind, errors, annotations, openParenToken, ofKeyword, if(parameters IsNot Nothing, parameters.
Green
, Nothing), closeParenToken), Nothing, 0)
4397
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax)._openParenToken, Me.Position, 0)
4415
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax)._ofKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
4460
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax)._closeParenToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
4551
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterSyntax(kind, errors, annotations, varianceKeyword, identifier, if(typeParameterConstraintClause IsNot Nothing, DirectCast(typeParameterConstraintClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterConstraintClauseSyntax), Nothing)), Nothing, 0)
4563
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterSyntax)._varianceKeyword
4585
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterSyntax)._identifier, Me.GetChildPosition(1), Me.GetChildIndex(1))
4712
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterSingleConstraintClauseSyntax(kind, errors, annotations, asKeyword, DirectCast(constraint.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConstraintSyntax)), Nothing, 0)
4721
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterSingleConstraintClauseSyntax)._asKeyword, Me.Position, 0)
4826
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterMultipleConstraintClauseSyntax(kind, errors, annotations, asKeyword, openBraceToken, if(constraints IsNot Nothing, constraints.
Green
, Nothing), closeBraceToken), Nothing, 0)
4834
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterMultipleConstraintClauseSyntax)._asKeyword, Me.Position, 0)
4852
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterMultipleConstraintClauseSyntax)._openBraceToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
4897
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterMultipleConstraintClauseSyntax)._closeBraceToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
5016
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SpecialConstraintSyntax)._constraintKeyword, Me.Position, 0)
5095
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeConstraintSyntax(kind, errors, annotations, DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax)), Nothing, 0)
5183
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnumMemberDeclarationSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), identifier, if(initializer IsNot Nothing, DirectCast(initializer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EqualsValueSyntax), Nothing)), Nothing, 0)
5211
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnumMemberDeclarationSyntax)._identifier, Me.GetChildPosition(1), Me.GetChildIndex(1))
5377
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MethodBlockSyntax(kind, errors, annotations, DirectCast(subOrFunctionStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MethodStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endSubOrFunctionStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
5542
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConstructorBlockSyntax(kind, errors, annotations, DirectCast(subNewStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SubNewStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endSubStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
5704
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OperatorBlockSyntax(kind, errors, annotations, DirectCast(operatorStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OperatorStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endOperatorStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
5871
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AccessorBlockSyntax(kind, errors, annotations, DirectCast(accessorStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AccessorStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endAccessorStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
6039
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PropertyBlockSyntax(kind, errors, annotations, DirectCast(propertyStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PropertyStatementSyntax), if(accessors IsNot Nothing, accessors.
Green
, Nothing), DirectCast(endPropertyStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
6188
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EventBlockSyntax(kind, errors, annotations, DirectCast(eventStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EventStatementSyntax), if(accessors IsNot Nothing, accessors.
Green
, Nothing), DirectCast(endEventStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
6379
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MethodBaseSyntax)._modifiers
6455
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax(kind, errors, annotations, openParenToken, if(parameters IsNot Nothing, parameters.
Green
, Nothing), closeParenToken), Nothing, 0)
6464
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax)._openParenToken, Me.Position, 0)
6512
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax)._closeParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
6607
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MethodStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, subOrFunctionKeyword, identifier, if(typeParameterList IsNot Nothing, DirectCast(typeParameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax), Nothing), if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing), if(handlesClause IsNot Nothing, DirectCast(handlesClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.HandlesClauseSyntax), Nothing), if(implementsClause IsNot Nothing, DirectCast(implementsClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImplementsClauseSyntax), Nothing)), Nothing, 0)
6660
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MethodStatementSyntax)._modifiers
6698
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MethodStatementSyntax)._subOrFunctionKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
6716
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MethodStatementSyntax)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
6987
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SubNewStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, subKeyword, newKeyword, if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing)), Nothing, 0)
7040
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SubNewStatementSyntax)._modifiers
7078
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SubNewStatementSyntax)._subKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
7096
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SubNewStatementSyntax)._newKeyword, Me.GetChildPosition(3), Me.GetChildIndex(3))
7236
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DeclareStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, declareKeyword, charsetKeyword, subOrFunctionKeyword, identifier, libKeyword, DirectCast(libraryName.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LiteralExpressionSyntax), aliasKeyword, if(aliasName IsNot Nothing, DirectCast(aliasName.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LiteralExpressionSyntax), Nothing), if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing)), Nothing, 0)
7289
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DeclareStatementSyntax)._modifiers
7327
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DeclareStatementSyntax)._declareKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
7349
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DeclareStatementSyntax)._charsetKeyword
7371
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DeclareStatementSyntax)._subOrFunctionKeyword, Me.GetChildPosition(4), Me.GetChildIndex(4))
7389
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DeclareStatementSyntax)._identifier, Me.GetChildPosition(5), Me.GetChildIndex(5))
7407
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DeclareStatementSyntax)._libKeyword, Me.GetChildPosition(6), Me.GetChildIndex(6))
7446
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DeclareStatementSyntax)._aliasKeyword
7668
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DelegateStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, delegateKeyword, subOrFunctionKeyword, identifier, if(typeParameterList IsNot Nothing, DirectCast(typeParameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeParameterListSyntax), Nothing), if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing)), Nothing, 0)
7721
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DelegateStatementSyntax)._modifiers
7759
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DelegateStatementSyntax)._delegateKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
7777
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DelegateStatementSyntax)._subOrFunctionKeyword, Me.GetChildPosition(3), Me.GetChildIndex(3))
7795
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DelegateStatementSyntax)._identifier, Me.GetChildPosition(4), Me.GetChildIndex(4))
8004
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EventStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, customKeyword, eventKeyword, identifier, if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing), if(implementsClause IsNot Nothing, DirectCast(implementsClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImplementsClauseSyntax), Nothing)), Nothing, 0)
8057
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EventStatementSyntax)._modifiers
8098
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EventStatementSyntax)._customKeyword
8120
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EventStatementSyntax)._eventKeyword, Me.GetChildPosition(3), Me.GetChildIndex(3))
8138
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EventStatementSyntax)._identifier, Me.GetChildPosition(4), Me.GetChildIndex(4))
8344
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OperatorStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, operatorKeyword, operatorToken, if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing)), Nothing, 0)
8397
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OperatorStatementSyntax)._modifiers
8435
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OperatorStatementSyntax)._operatorKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
8453
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OperatorStatementSyntax)._operatorToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
8624
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PropertyStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, propertyKeyword, identifier, if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AsClauseSyntax), Nothing), if(initializer IsNot Nothing, DirectCast(initializer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EqualsValueSyntax), Nothing), if(implementsClause IsNot Nothing, DirectCast(implementsClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImplementsClauseSyntax), Nothing)), Nothing, 0)
8677
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PropertyStatementSyntax)._modifiers
8715
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PropertyStatementSyntax)._propertyKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
8733
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PropertyStatementSyntax)._identifier, Me.GetChildPosition(3), Me.GetChildIndex(3))
8968
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AccessorStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, accessorKeyword, if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing)), Nothing, 0)
9021
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AccessorStatementSyntax)._modifiers
9060
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AccessorStatementSyntax)._accessorKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
9198
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImplementsClauseSyntax(kind, errors, annotations, implementsKeyword, if(interfaceMembers IsNot Nothing, interfaceMembers.
Green
, Nothing)), Nothing, 0)
9206
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ImplementsClauseSyntax)._implementsKeyword, Me.Position, 0)
9318
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.HandlesClauseSyntax(kind, errors, annotations, handlesKeyword, if(events IsNot Nothing, events.
Green
, Nothing)), Nothing, 0)
9326
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.HandlesClauseSyntax)._handlesKeyword, Me.Position, 0)
9460
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.KeywordEventContainerSyntax)._keyword, Me.Position, 0)
9544
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WithEventsEventContainerSyntax)._identifier, Me.Position, 0)
9621
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WithEventsPropertyEventContainerSyntax(kind, errors, annotations, DirectCast(withEventsContainer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WithEventsEventContainerSyntax), dotToken, DirectCast([property].
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax)), Nothing, 0)
9647
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WithEventsPropertyEventContainerSyntax)._dotToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
9759
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.HandlesClauseItemSyntax(kind, errors, annotations, DirectCast(eventContainer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EventContainerSyntax), dotToken, DirectCast(eventMember.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax)), Nothing, 0)
9787
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.HandlesClauseItemSyntax)._dotToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
9899
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IncompleteMemberSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, missingIdentifier), Nothing, 0)
9938
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IncompleteMemberSyntax)._modifiers
9968
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IncompleteMemberSyntax)._missingIdentifier
10064
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FieldDeclarationSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, if(declarators IsNot Nothing, declarators.
Green
, Nothing)), Nothing, 0)
10103
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FieldDeclarationSyntax)._modifiers
10233
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VariableDeclaratorSyntax(kind, errors, annotations, if(names IsNot Nothing, names.
Green
, Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AsClauseSyntax), Nothing), if(initializer IsNot Nothing, DirectCast(initializer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EqualsValueSyntax), Nothing)), Nothing, 0)
10394
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AsClauseSyntax)._asKeyword, Me.Position, 0)
10433
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax(kind, errors, annotations, asKeyword, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax)), Nothing, 0)
10441
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax)._asKeyword, Me.Position, 0)
10588
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AsNewClauseSyntax(kind, errors, annotations, asKeyword, DirectCast(newExpression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NewExpressionSyntax)), Nothing, 0)
10596
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AsNewClauseSyntax)._asKeyword, Me.Position, 0)
10723
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectMemberInitializerSyntax(kind, errors, annotations, withKeyword, openBraceToken, if(initializers IsNot Nothing, initializers.
Green
, Nothing), closeBraceToken), Nothing, 0)
10731
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectMemberInitializerSyntax)._withKeyword, Me.Position, 0)
10749
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectMemberInitializerSyntax)._openBraceToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
10793
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectMemberInitializerSyntax)._closeBraceToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
10885
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectCollectionInitializerSyntax(kind, errors, annotations, fromKeyword, DirectCast(initializer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CollectionInitializerSyntax)), Nothing, 0)
10893
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectCollectionInitializerSyntax)._fromKeyword, Me.Position, 0)
11007
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FieldInitializerSyntax)._keyKeyword
11048
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InferredFieldInitializerSyntax(kind, errors, annotations, keyKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
11059
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InferredFieldInitializerSyntax)._keyKeyword
11176
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamedFieldInitializerSyntax(kind, errors, annotations, keyKeyword, dotToken, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax), equalsToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
11187
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamedFieldInitializerSyntax)._keyKeyword
11217
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamedFieldInitializerSyntax)._dotToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
11252
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamedFieldInitializerSyntax)._equalsToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
11369
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EqualsValueSyntax(kind, errors, annotations, equalsToken, DirectCast(value.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
11377
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EqualsValueSyntax)._equalsToken, Me.Position, 0)
11482
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, DirectCast(identifier.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModifiedIdentifierSyntax), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing), if([default] IsNot Nothing, DirectCast([default].
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EqualsValueSyntax), Nothing)), Nothing, 0)
11521
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterSyntax)._modifiers
11699
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModifiedIdentifierSyntax(kind, errors, annotations, identifier, nullable, if(arrayBounds IsNot Nothing, DirectCast(arrayBounds.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax), Nothing), if(arrayRankSpecifiers IsNot Nothing, arrayRankSpecifiers.
Green
, Nothing)), Nothing, 0)
11707
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModifiedIdentifierSyntax)._identifier, Me.Position, 0)
11728
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModifiedIdentifierSyntax)._nullable
11888
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArrayRankSpecifierSyntax)._openParenToken, Me.Position, 0)
11909
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArrayRankSpecifierSyntax)._commaTokens
11935
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArrayRankSpecifierSyntax)._closeParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
12019
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributeListSyntax(kind, errors, annotations, lessThanToken, if(attributes IsNot Nothing, attributes.
Green
, Nothing), greaterThanToken), Nothing, 0)
12027
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributeListSyntax)._lessThanToken, Me.Position, 0)
12074
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributeListSyntax)._greaterThanToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
12164
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributeSyntax(kind, errors, annotations, if(target IsNot Nothing, DirectCast(target.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributeTargetSyntax), Nothing), DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), if(argumentList IsNot Nothing, DirectCast(argumentList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax), Nothing)), Nothing, 0)
12322
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributeTargetSyntax)._attributeModifier, Me.Position, 0)
12341
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributeTargetSyntax)._colonToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
12423
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AttributesStatementSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing)), Nothing, 0)
12521
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionStatementSyntax(kind, errors, annotations, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
12609
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PrintStatementSyntax(kind, errors, annotations, questionToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
12617
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PrintStatementSyntax)._questionToken, Me.Position, 0)
12723
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileBlockSyntax(kind, errors, annotations, DirectCast(whileStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endWhileStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
12874
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.UsingBlockSyntax(kind, errors, annotations, DirectCast(usingStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.UsingStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endUsingStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
13026
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SyncLockBlockSyntax(kind, errors, annotations, DirectCast(syncLockStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SyncLockStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endSyncLockStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
13178
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WithBlockSyntax(kind, errors, annotations, DirectCast(withStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WithStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endWithStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
13327
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LocalDeclarationStatementSyntax(kind, errors, annotations, modifiers, if(declarators IsNot Nothing, declarators.
Green
, Nothing)), Nothing, 0)
13336
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LocalDeclarationStatementSyntax)._modifiers
13464
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LabelStatementSyntax)._labelToken, Me.Position, 0)
13482
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LabelStatementSyntax)._colonToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
13563
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GoToStatementSyntax(kind, errors, annotations, goToKeyword, DirectCast(label.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LabelSyntax)), Nothing, 0)
13571
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GoToStatementSyntax)._goToKeyword, Me.Position, 0)
13685
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LabelSyntax)._labelToken, Me.Position, 0)
13773
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.StopOrEndStatementSyntax)._stopOrEndKeyword, Me.Position, 0)
13868
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExitStatementSyntax)._exitKeyword, Me.Position, 0)
13886
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExitStatementSyntax)._blockKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
13980
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ContinueStatementSyntax)._continueKeyword, Me.Position, 0)
13999
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ContinueStatementSyntax)._blockKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
14083
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ReturnStatementSyntax(kind, errors, annotations, returnKeyword, if(expression IsNot Nothing, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), Nothing)), Nothing, 0)
14091
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ReturnStatementSyntax)._returnKeyword, Me.Position, 0)
14199
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SingleLineIfStatementSyntax(kind, errors, annotations, ifKeyword, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), thenKeyword, if(statements IsNot Nothing, statements.
Green
, Nothing), if(elseClause IsNot Nothing, DirectCast(elseClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SingleLineElseClauseSyntax), Nothing)), Nothing, 0)
14207
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SingleLineIfStatementSyntax)._ifKeyword, Me.Position, 0)
14243
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SingleLineIfStatementSyntax)._thenKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
14398
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SingleLineElseClauseSyntax(kind, errors, annotations, elseKeyword, if(statements IsNot Nothing, statements.
Green
, Nothing)), Nothing, 0)
14406
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SingleLineElseClauseSyntax)._elseKeyword, Me.Position, 0)
14523
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MultiLineIfBlockSyntax(kind, errors, annotations, DirectCast(ifStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), if(elseIfBlocks IsNot Nothing, elseIfBlocks.
Green
, Nothing), if(elseBlock IsNot Nothing, DirectCast(elseBlock.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseBlockSyntax), Nothing), DirectCast(endIfStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
14740
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfStatementSyntax(kind, errors, annotations, ifKeyword, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), thenKeyword), Nothing, 0)
14748
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfStatementSyntax)._ifKeyword, Me.Position, 0)
14787
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfStatementSyntax)._thenKeyword
14880
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseIfBlockSyntax(kind, errors, annotations, DirectCast(elseIfStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseIfStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing)), Nothing, 0)
15004
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseIfStatementSyntax(kind, errors, annotations, elseIfKeyword, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), thenKeyword), Nothing, 0)
15012
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseIfStatementSyntax)._elseIfKeyword, Me.Position, 0)
15051
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseIfStatementSyntax)._thenKeyword
15144
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseBlockSyntax(kind, errors, annotations, DirectCast(elseStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing)), Nothing, 0)
15274
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseStatementSyntax)._elseKeyword, Me.Position, 0)
15354
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TryBlockSyntax(kind, errors, annotations, DirectCast(tryStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TryStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), if(catchBlocks IsNot Nothing, catchBlocks.
Green
, Nothing), if(finallyBlock IsNot Nothing, DirectCast(finallyBlock.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FinallyBlockSyntax), Nothing), DirectCast(endTryStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
15576
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TryStatementSyntax)._tryKeyword, Me.Position, 0)
15653
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchBlockSyntax(kind, errors, annotations, DirectCast(catchStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing)), Nothing, 0)
15779
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchStatementSyntax(kind, errors, annotations, catchKeyword, if(identifierName IsNot Nothing, DirectCast(identifierName.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing), if(whenClause IsNot Nothing, DirectCast(whenClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchFilterClauseSyntax), Nothing)), Nothing, 0)
15787
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchStatementSyntax)._catchKeyword, Me.Position, 0)
15950
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchFilterClauseSyntax(kind, errors, annotations, whenKeyword, DirectCast(filter.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
15958
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchFilterClauseSyntax)._whenKeyword, Me.Position, 0)
16061
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FinallyBlockSyntax(kind, errors, annotations, DirectCast(finallyStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FinallyStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing)), Nothing, 0)
16191
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FinallyStatementSyntax)._finallyKeyword, Me.Position, 0)
16267
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ErrorStatementSyntax(kind, errors, annotations, errorKeyword, DirectCast(errorNumber.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
16275
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ErrorStatementSyntax)._errorKeyword, Me.Position, 0)
16380
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorGoToStatementSyntax(kind, errors, annotations, onKeyword, errorKeyword, goToKeyword, minus, DirectCast(label.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LabelSyntax)), Nothing, 0)
16388
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorGoToStatementSyntax)._onKeyword, Me.Position, 0)
16406
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorGoToStatementSyntax)._errorKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
16424
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorGoToStatementSyntax)._goToKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
16445
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorGoToStatementSyntax)._minus
16570
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorResumeNextStatementSyntax)._onKeyword, Me.Position, 0)
16588
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorResumeNextStatementSyntax)._errorKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
16606
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorResumeNextStatementSyntax)._resumeKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
16624
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OnErrorResumeNextStatementSyntax)._nextKeyword, Me.GetChildPosition(3), Me.GetChildIndex(3))
16714
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ResumeStatementSyntax(kind, errors, annotations, resumeKeyword, if(label IsNot Nothing, DirectCast(label.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LabelSyntax), Nothing)), Nothing, 0)
16722
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ResumeStatementSyntax)._resumeKeyword, Me.Position, 0)
16835
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SelectBlockSyntax(kind, errors, annotations, DirectCast(selectStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SelectStatementSyntax), if(caseBlocks IsNot Nothing, caseBlocks.
Green
, Nothing), DirectCast(endSelectStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
16984
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SelectStatementSyntax(kind, errors, annotations, selectKeyword, caseKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
16992
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SelectStatementSyntax)._selectKeyword, Me.Position, 0)
17013
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SelectStatementSyntax)._caseKeyword
17125
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CaseBlockSyntax(kind, errors, annotations, DirectCast(caseStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CaseStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing)), Nothing, 0)
17259
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CaseStatementSyntax(kind, errors, annotations, caseKeyword, if(cases IsNot Nothing, cases.
Green
, Nothing)), Nothing, 0)
17267
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CaseStatementSyntax)._caseKeyword, Me.Position, 0)
17404
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseCaseClauseSyntax)._elseKeyword, Me.Position, 0)
17480
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleCaseClauseSyntax(kind, errors, annotations, DirectCast(value.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
17568
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RangeCaseClauseSyntax(kind, errors, annotations, DirectCast(lowerBound.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), toKeyword, DirectCast(upperBound.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
17594
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RangeCaseClauseSyntax)._toKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
17709
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RelationalCaseClauseSyntax(kind, errors, annotations, isKeyword, operatorToken, DirectCast(value.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
17720
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RelationalCaseClauseSyntax)._isKeyword
17743
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RelationalCaseClauseSyntax)._operatorToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
17852
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SyncLockStatementSyntax(kind, errors, annotations, syncLockKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
17860
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SyncLockStatementSyntax)._syncLockKeyword, Me.Position, 0)
17970
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DoLoopBlockSyntax(kind, errors, annotations, DirectCast(doStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DoStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(loopStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LoopStatementSyntax)), Nothing, 0)
18123
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DoStatementSyntax(kind, errors, annotations, doKeyword, if(whileOrUntilClause IsNot Nothing, DirectCast(whileOrUntilClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileOrUntilClauseSyntax), Nothing)), Nothing, 0)
18131
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DoStatementSyntax)._doKeyword, Me.Position, 0)
18243
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LoopStatementSyntax(kind, errors, annotations, loopKeyword, if(whileOrUntilClause IsNot Nothing, DirectCast(whileOrUntilClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileOrUntilClauseSyntax), Nothing)), Nothing, 0)
18251
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LoopStatementSyntax)._loopKeyword, Me.Position, 0)
18364
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileOrUntilClauseSyntax(kind, errors, annotations, whileOrUntilKeyword, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
18372
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileOrUntilClauseSyntax)._whileOrUntilKeyword, Me.Position, 0)
18479
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileStatementSyntax(kind, errors, annotations, whileKeyword, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
18487
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhileStatementSyntax)._whileKeyword, Me.Position, 0)
18673
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForBlockSyntax(kind, errors, annotations, DirectCast(forStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), if(nextStatement IsNot Nothing, DirectCast(nextStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NextStatementSyntax), Nothing)), Nothing, 0)
18857
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForEachBlockSyntax(kind, errors, annotations, DirectCast(forEachStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForEachStatementSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), if(nextStatement IsNot Nothing, DirectCast(nextStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NextStatementSyntax), Nothing)), Nothing, 0)
19042
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForOrForEachStatementSyntax)._forKeyword, Me.Position, 0)
19111
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStatementSyntax(kind, errors, annotations, forKeyword, DirectCast(controlVariable.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VisualBasicSyntaxNode), equalsToken, DirectCast(fromValue.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), toKeyword, DirectCast(toValue.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), if(stepClause IsNot Nothing, DirectCast(stepClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStepClauseSyntax), Nothing)), Nothing, 0)
19119
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStatementSyntax)._forKeyword, Me.Position, 0)
19174
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStatementSyntax)._equalsToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
19210
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStatementSyntax)._toKeyword, Me.GetChildPosition(4), Me.GetChildIndex(4))
19361
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStepClauseSyntax(kind, errors, annotations, stepKeyword, DirectCast(stepValue.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
19369
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForStepClauseSyntax)._stepKeyword, Me.Position, 0)
19478
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForEachStatementSyntax(kind, errors, annotations, forKeyword, eachKeyword, DirectCast(controlVariable.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VisualBasicSyntaxNode), inKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
19486
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForEachStatementSyntax)._forKeyword, Me.Position, 0)
19512
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForEachStatementSyntax)._eachKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
19559
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ForEachStatementSyntax)._inKeyword, Me.GetChildPosition(3), Me.GetChildIndex(3))
19678
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NextStatementSyntax(kind, errors, annotations, nextKeyword, if(controlVariables IsNot Nothing, controlVariables.
Green
, Nothing)), Nothing, 0)
19686
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NextStatementSyntax)._nextKeyword, Me.Position, 0)
19803
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.UsingStatementSyntax(kind, errors, annotations, usingKeyword, if(expression IsNot Nothing, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), Nothing), if(variables IsNot Nothing, variables.
Green
, Nothing)), Nothing, 0)
19811
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.UsingStatementSyntax)._usingKeyword, Me.Position, 0)
19955
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ThrowStatementSyntax(kind, errors, annotations, throwKeyword, if(expression IsNot Nothing, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), Nothing)), Nothing, 0)
19963
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ThrowStatementSyntax)._throwKeyword, Me.Position, 0)
20081
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AssignmentStatementSyntax(kind, errors, annotations, DirectCast(left.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), operatorToken, DirectCast(right.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
20107
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AssignmentStatementSyntax)._operatorToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
20219
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MidExpressionSyntax(kind, errors, annotations, mid, DirectCast(argumentList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax)), Nothing, 0)
20227
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MidExpressionSyntax)._mid, Me.Position, 0)
20334
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CallStatementSyntax(kind, errors, annotations, callKeyword, DirectCast(invocation.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
20342
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CallStatementSyntax)._callKeyword, Me.Position, 0)
20449
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AddRemoveHandlerStatementSyntax(kind, errors, annotations, addHandlerOrRemoveHandlerKeyword, DirectCast(eventExpression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), commaToken, DirectCast(delegateExpression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
20457
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AddRemoveHandlerStatementSyntax)._addHandlerOrRemoveHandlerKeyword, Me.Position, 0)
20493
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AddRemoveHandlerStatementSyntax)._commaToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
20610
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RaiseEventStatementSyntax(kind, errors, annotations, raiseEventKeyword, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax), if(argumentList IsNot Nothing, DirectCast(argumentList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax), Nothing)), Nothing, 0)
20618
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RaiseEventStatementSyntax)._raiseEventKeyword, Me.Position, 0)
20755
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WithStatementSyntax(kind, errors, annotations, withKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
20763
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WithStatementSyntax)._withKeyword, Me.Position, 0)
20867
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ReDimStatementSyntax(kind, errors, annotations, reDimKeyword, preserveKeyword, if(clauses IsNot Nothing, clauses.
Green
, Nothing)), Nothing, 0)
20875
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ReDimStatementSyntax)._reDimKeyword, Me.Position, 0)
20897
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ReDimStatementSyntax)._preserveKeyword
21019
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RedimClauseSyntax(kind, errors, annotations, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), DirectCast(arrayBounds.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax)), Nothing, 0)
21139
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EraseStatementSyntax(kind, errors, annotations, eraseKeyword, if(expressions IsNot Nothing, expressions.
Green
, Nothing)), Nothing, 0)
21147
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EraseStatementSyntax)._eraseKeyword, Me.Position, 0)
21298
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LiteralExpressionSyntax)._token, Me.Position, 0)
21376
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParenthesizedExpressionSyntax(kind, errors, annotations, openParenToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), closeParenToken), Nothing, 0)
21384
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParenthesizedExpressionSyntax)._openParenToken, Me.Position, 0)
21420
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParenthesizedExpressionSyntax)._closeParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
21508
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TupleExpressionSyntax(kind, errors, annotations, openParenToken, if(arguments IsNot Nothing, arguments.
Green
, Nothing), closeParenToken), Nothing, 0)
21516
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TupleExpressionSyntax)._openParenToken, Me.Position, 0)
21560
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TupleExpressionSyntax)._closeParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
21648
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TupleTypeSyntax(kind, errors, annotations, openParenToken, if(elements IsNot Nothing, elements.
Green
, Nothing), closeParenToken), Nothing, 0)
21656
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TupleTypeSyntax)._openParenToken, Me.Position, 0)
21700
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TupleTypeSyntax)._closeParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
21803
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypedTupleElementSyntax(kind, errors, annotations, DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax)), Nothing, 0)
21891
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamedTupleElementSyntax(kind, errors, annotations, identifier, if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing)), Nothing, 0)
21899
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NamedTupleElementSyntax)._identifier, Me.Position, 0)
22008
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InstanceExpressionSyntax)._keyword, Me.Position, 0)
22051
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MeExpressionSyntax)._keyword, Me.Position, 0)
22142
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MyBaseExpressionSyntax)._keyword, Me.Position, 0)
22233
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MyClassExpressionSyntax)._keyword, Me.Position, 0)
22317
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GetTypeExpressionSyntax(kind, errors, annotations, getTypeKeyword, openParenToken, DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), closeParenToken), Nothing, 0)
22325
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GetTypeExpressionSyntax)._getTypeKeyword, Me.Position, 0)
22343
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GetTypeExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
22378
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GetTypeExpressionSyntax)._closeParenToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
22471
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeOfExpressionSyntax(kind, errors, annotations, typeOfKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), operatorToken, DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax)), Nothing, 0)
22479
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeOfExpressionSyntax)._typeOfKeyword, Me.Position, 0)
22515
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeOfExpressionSyntax)._operatorToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
22630
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GetXmlNamespaceExpressionSyntax(kind, errors, annotations, getXmlNamespaceKeyword, openParenToken, if(name IsNot Nothing, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlPrefixNameSyntax), Nothing), closeParenToken), Nothing, 0)
22638
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GetXmlNamespaceExpressionSyntax)._getXmlNamespaceKeyword, Me.Position, 0)
22656
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GetXmlNamespaceExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
22694
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GetXmlNamespaceExpressionSyntax)._closeParenToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
22788
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MemberAccessExpressionSyntax(kind, errors, annotations, if(expression IsNot Nothing, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), Nothing), operatorToken, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleNameSyntax)), Nothing, 0)
22817
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MemberAccessExpressionSyntax)._operatorToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
22934
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlMemberAccessExpressionSyntax(kind, errors, annotations, if(base IsNot Nothing, DirectCast(base.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), Nothing), token1, token2, token3, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNodeSyntax)), Nothing, 0)
22962
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlMemberAccessExpressionSyntax)._token1, Me.GetChildPosition(1), Me.GetChildIndex(1))
22982
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlMemberAccessExpressionSyntax)._token2
23006
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlMemberAccessExpressionSyntax)._token3
23130
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InvocationExpressionSyntax(kind, errors, annotations, if(expression IsNot Nothing, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), Nothing), if(argumentList IsNot Nothing, DirectCast(argumentList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax), Nothing)), Nothing, 0)
23259
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NewExpressionSyntax)._newKeyword, Me.Position, 0)
23330
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectCreationExpressionSyntax(kind, errors, annotations, newKeyword, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), if(argumentList IsNot Nothing, DirectCast(argumentList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax), Nothing), if(initializer IsNot Nothing, DirectCast(initializer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectCreationInitializerSyntax), Nothing)), Nothing, 0)
23338
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectCreationExpressionSyntax)._newKeyword, Me.Position, 0)
23556
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AnonymousObjectCreationExpressionSyntax(kind, errors, annotations, newKeyword, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), DirectCast(initializer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ObjectMemberInitializerSyntax)), Nothing, 0)
23564
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AnonymousObjectCreationExpressionSyntax)._newKeyword, Me.Position, 0)
23729
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArrayCreationExpressionSyntax(kind, errors, annotations, newKeyword, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), if(arrayBounds IsNot Nothing, DirectCast(arrayBounds.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax), Nothing), if(rankSpecifiers IsNot Nothing, rankSpecifiers.
Green
, Nothing), DirectCast(initializer.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CollectionInitializerSyntax)), Nothing, 0)
23737
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArrayCreationExpressionSyntax)._newKeyword, Me.Position, 0)
23991
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CollectionInitializerSyntax(kind, errors, annotations, openBraceToken, if(initializers IsNot Nothing, initializers.
Green
, Nothing), closeBraceToken), Nothing, 0)
23999
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CollectionInitializerSyntax)._openBraceToken, Me.Position, 0)
24046
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CollectionInitializerSyntax)._closeBraceToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
24139
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CastExpressionSyntax)._keyword, Me.Position, 0)
24162
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CastExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
24208
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CastExpressionSyntax)._commaToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
24253
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CastExpressionSyntax)._closeParenToken, Me.GetChildPosition(5), Me.GetChildIndex(5))
24285
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CTypeExpressionSyntax(kind, errors, annotations, keyword, openParenToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), commaToken, DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), closeParenToken), Nothing, 0)
24293
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CTypeExpressionSyntax)._keyword, Me.Position, 0)
24319
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CTypeExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
24371
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CTypeExpressionSyntax)._commaToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
24422
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CTypeExpressionSyntax)._closeParenToken, Me.GetChildPosition(5), Me.GetChildIndex(5))
24527
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DirectCastExpressionSyntax(kind, errors, annotations, keyword, openParenToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), commaToken, DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), closeParenToken), Nothing, 0)
24535
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DirectCastExpressionSyntax)._keyword, Me.Position, 0)
24561
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DirectCastExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
24613
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DirectCastExpressionSyntax)._commaToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
24664
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DirectCastExpressionSyntax)._closeParenToken, Me.GetChildPosition(5), Me.GetChildIndex(5))
24769
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TryCastExpressionSyntax(kind, errors, annotations, keyword, openParenToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), commaToken, DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), closeParenToken), Nothing, 0)
24777
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TryCastExpressionSyntax)._keyword, Me.Position, 0)
24803
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TryCastExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
24855
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TryCastExpressionSyntax)._commaToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
24906
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TryCastExpressionSyntax)._closeParenToken, Me.GetChildPosition(5), Me.GetChildIndex(5))
25016
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PredefinedCastExpressionSyntax(kind, errors, annotations, keyword, openParenToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), closeParenToken), Nothing, 0)
25024
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PredefinedCastExpressionSyntax)._keyword, Me.Position, 0)
25042
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PredefinedCastExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
25078
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PredefinedCastExpressionSyntax)._closeParenToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
25195
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.BinaryExpressionSyntax(kind, errors, annotations, DirectCast(left.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), operatorToken, DirectCast(right.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
25217
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.BinaryExpressionSyntax)._operatorToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
25332
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.UnaryExpressionSyntax(kind, errors, annotations, operatorToken, DirectCast(operand.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
25340
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.UnaryExpressionSyntax)._operatorToken, Me.Position, 0)
25448
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.BinaryConditionalExpressionSyntax(kind, errors, annotations, ifKeyword, openParenToken, DirectCast(firstExpression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), commaToken, DirectCast(secondExpression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), closeParenToken), Nothing, 0)
25456
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.BinaryConditionalExpressionSyntax)._ifKeyword, Me.Position, 0)
25474
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.BinaryConditionalExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
25510
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.BinaryConditionalExpressionSyntax)._commaToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
25546
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.BinaryConditionalExpressionSyntax)._closeParenToken, Me.GetChildPosition(5), Me.GetChildIndex(5))
25650
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TernaryConditionalExpressionSyntax(kind, errors, annotations, ifKeyword, openParenToken, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), firstCommaToken, DirectCast(whenTrue.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), secondCommaToken, DirectCast(whenFalse.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), closeParenToken), Nothing, 0)
25658
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TernaryConditionalExpressionSyntax)._ifKeyword, Me.Position, 0)
25676
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TernaryConditionalExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
25712
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TernaryConditionalExpressionSyntax)._firstCommaToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
25748
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TernaryConditionalExpressionSyntax)._secondCommaToken, Me.GetChildPosition(5), Me.GetChildIndex(5))
25784
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TernaryConditionalExpressionSyntax)._closeParenToken, Me.GetChildPosition(7), Me.GetChildIndex(7))
25936
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SingleLineLambdaExpressionSyntax(kind, errors, annotations, DirectCast(subOrFunctionHeader.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LambdaHeaderSyntax), DirectCast(body.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VisualBasicSyntaxNode)), Nothing, 0)
26065
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.MultiLineLambdaExpressionSyntax(kind, errors, annotations, DirectCast(subOrFunctionHeader.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LambdaHeaderSyntax), if(statements IsNot Nothing, statements.
Green
, Nothing), DirectCast(endSubOrFunctionStatement.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndBlockStatementSyntax)), Nothing, 0)
26229
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LambdaHeaderSyntax(kind, errors, annotations, if(attributeLists IsNot Nothing, attributeLists.
Green
, Nothing), modifiers, subOrFunctionKeyword, if(parameterList IsNot Nothing, DirectCast(parameterList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ParameterListSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing)), Nothing, 0)
26282
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LambdaHeaderSyntax)._modifiers
26320
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LambdaHeaderSyntax)._subOrFunctionKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
26486
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax(kind, errors, annotations, openParenToken, if(arguments IsNot Nothing, arguments.
Green
, Nothing), closeParenToken), Nothing, 0)
26494
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax)._openParenToken, Me.Position, 0)
26542
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArgumentListSyntax)._closeParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
26654
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OmittedArgumentSyntax)._empty, Me.Position, 0)
26731
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleArgumentSyntax(kind, errors, annotations, if(nameColonEquals IsNot Nothing, DirectCast(nameColonEquals.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameColonEqualsSyntax), Nothing), DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
26849
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameColonEqualsSyntax(kind, errors, annotations, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax), colonEqualsToken), Nothing, 0)
26874
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameColonEqualsSyntax)._colonEqualsToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
26961
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RangeArgumentSyntax(kind, errors, annotations, DirectCast(lowerBound.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), toKeyword, DirectCast(upperBound.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
26987
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RangeArgumentSyntax)._toKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
27099
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.QueryExpressionSyntax(kind, errors, annotations, if(clauses IsNot Nothing, clauses.
Green
, Nothing)), Nothing, 0)
27211
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CollectionRangeVariableSyntax(kind, errors, annotations, DirectCast(identifier.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModifiedIdentifierSyntax), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing), inKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
27258
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CollectionRangeVariableSyntax)._inKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
27377
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionRangeVariableSyntax(kind, errors, annotations, if(nameEquals IsNot Nothing, DirectCast(nameEquals.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VariableNameEqualsSyntax), Nothing), DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
27499
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AggregationRangeVariableSyntax(kind, errors, annotations, if(nameEquals IsNot Nothing, DirectCast(nameEquals.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VariableNameEqualsSyntax), Nothing), DirectCast(aggregation.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AggregationSyntax)), Nothing, 0)
27621
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VariableNameEqualsSyntax(kind, errors, annotations, DirectCast(identifier.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ModifiedIdentifierSyntax), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing), equalsToken), Nothing, 0)
27668
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.VariableNameEqualsSyntax)._equalsToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
27777
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FunctionAggregationSyntax(kind, errors, annotations, functionName, openParenToken, if(argument IsNot Nothing, DirectCast(argument.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), Nothing), closeParenToken), Nothing, 0)
27785
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FunctionAggregationSyntax)._functionName, Me.Position, 0)
27806
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FunctionAggregationSyntax)._openParenToken
27852
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FunctionAggregationSyntax)._closeParenToken
27956
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupAggregationSyntax)._groupKeyword, Me.Position, 0)
28034
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FromClauseSyntax(kind, errors, annotations, fromKeyword, if(variables IsNot Nothing, variables.
Green
, Nothing)), Nothing, 0)
28042
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.FromClauseSyntax)._fromKeyword, Me.Position, 0)
28153
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LetClauseSyntax(kind, errors, annotations, letKeyword, if(variables IsNot Nothing, variables.
Green
, Nothing)), Nothing, 0)
28161
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.LetClauseSyntax)._letKeyword, Me.Position, 0)
28274
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AggregateClauseSyntax(kind, errors, annotations, aggregateKeyword, if(variables IsNot Nothing, variables.
Green
, Nothing), if(additionalQueryOperators IsNot Nothing, additionalQueryOperators.
Green
, Nothing), intoKeyword, if(aggregationVariables IsNot Nothing, aggregationVariables.
Green
, Nothing)), Nothing, 0)
28282
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AggregateClauseSyntax)._aggregateKeyword, Me.Position, 0)
28352
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AggregateClauseSyntax)._intoKeyword, Me.GetChildPosition(3), Me.GetChildIndex(3))
28487
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DistinctClauseSyntax)._distinctKeyword, Me.Position, 0)
28563
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhereClauseSyntax(kind, errors, annotations, whereKeyword, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
28571
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhereClauseSyntax)._whereKeyword, Me.Position, 0)
28676
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PartitionWhileClauseSyntax(kind, errors, annotations, skipOrTakeKeyword, whileKeyword, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
28684
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PartitionWhileClauseSyntax)._skipOrTakeKeyword, Me.Position, 0)
28702
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PartitionWhileClauseSyntax)._whileKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
28812
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PartitionClauseSyntax(kind, errors, annotations, skipOrTakeKeyword, DirectCast(count.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
28820
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PartitionClauseSyntax)._skipOrTakeKeyword, Me.Position, 0)
28927
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupByClauseSyntax(kind, errors, annotations, groupKeyword, if(items IsNot Nothing, items.
Green
, Nothing), byKeyword, if(keys IsNot Nothing, keys.
Green
, Nothing), intoKeyword, if(aggregationVariables IsNot Nothing, aggregationVariables.
Green
, Nothing)), Nothing, 0)
28935
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupByClauseSyntax)._groupKeyword, Me.Position, 0)
28982
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupByClauseSyntax)._byKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
29022
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupByClauseSyntax)._intoKeyword, Me.GetChildPosition(4), Me.GetChildIndex(4))
29158
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.JoinClauseSyntax)._joinKeyword, Me.Position, 0)
29239
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.JoinClauseSyntax)._onKeyword, Me.GetChildPosition(3), Me.GetChildIndex(3))
29304
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.JoinConditionSyntax(kind, errors, annotations, DirectCast(left.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), equalsKeyword, DirectCast(right.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
29329
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.JoinConditionSyntax)._equalsKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
29437
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleJoinClauseSyntax(kind, errors, annotations, joinKeyword, if(joinedVariables IsNot Nothing, joinedVariables.
Green
, Nothing), if(additionalJoins IsNot Nothing, additionalJoins.
Green
, Nothing), onKeyword, if(joinConditions IsNot Nothing, joinConditions.
Green
, Nothing)), Nothing, 0)
29445
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleJoinClauseSyntax)._joinKeyword, Me.Position, 0)
29543
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleJoinClauseSyntax)._onKeyword, Me.GetChildPosition(3), Me.GetChildIndex(3))
29688
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupJoinClauseSyntax(kind, errors, annotations, groupKeyword, joinKeyword, if(joinedVariables IsNot Nothing, joinedVariables.
Green
, Nothing), if(additionalJoins IsNot Nothing, additionalJoins.
Green
, Nothing), onKeyword, if(joinConditions IsNot Nothing, joinConditions.
Green
, Nothing), intoKeyword, if(aggregationVariables IsNot Nothing, aggregationVariables.
Green
, Nothing)), Nothing, 0)
29696
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupJoinClauseSyntax)._groupKeyword, Me.Position, 0)
29714
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupJoinClauseSyntax)._joinKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
29812
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupJoinClauseSyntax)._onKeyword, Me.GetChildPosition(4), Me.GetChildIndex(4))
29873
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GroupJoinClauseSyntax)._intoKeyword, Me.GetChildPosition(6), Me.GetChildIndex(6))
30014
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OrderByClauseSyntax(kind, errors, annotations, orderKeyword, byKeyword, if(orderings IsNot Nothing, orderings.
Green
, Nothing)), Nothing, 0)
30022
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OrderByClauseSyntax)._orderKeyword, Me.Position, 0)
30040
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OrderByClauseSyntax)._byKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
30156
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OrderingSyntax(kind, errors, annotations, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), ascendingOrDescendingKeyword), Nothing, 0)
30186
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.OrderingSyntax)._ascendingOrDescendingKeyword
30278
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SelectClauseSyntax(kind, errors, annotations, selectKeyword, if(variables IsNot Nothing, variables.
Green
, Nothing)), Nothing, 0)
30286
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SelectClauseSyntax)._selectKeyword, Me.Position, 0)
30417
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDocumentSyntax(kind, errors, annotations, DirectCast(declaration.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationSyntax), if(precedingMisc IsNot Nothing, precedingMisc.
Green
, Nothing), DirectCast(root.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNodeSyntax), if(followingMisc IsNot Nothing, followingMisc.
Green
, Nothing)), Nothing, 0)
30587
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationSyntax(kind, errors, annotations, lessThanQuestionToken, xmlKeyword, DirectCast(version.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationOptionSyntax), if(encoding IsNot Nothing, DirectCast(encoding.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationOptionSyntax), Nothing), if(standalone IsNot Nothing, DirectCast(standalone.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationOptionSyntax), Nothing), questionGreaterThanToken), Nothing, 0)
30592
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationSyntax)._lessThanQuestionToken, Me.Position, 0)
30607
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationSyntax)._xmlKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
30673
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationSyntax)._questionGreaterThanToken, Me.GetChildPosition(5), Me.GetChildIndex(5))
30779
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationOptionSyntax(kind, errors, annotations, name, equals, DirectCast(value.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlStringSyntax)), Nothing, 0)
30784
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationOptionSyntax)._name, Me.Position, 0)
30798
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlDeclarationOptionSyntax)._equals, Me.GetChildPosition(1), Me.GetChildIndex(1))
30901
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementSyntax(kind, errors, annotations, DirectCast(startTag.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementStartTagSyntax), if(content IsNot Nothing, content.
Green
, Nothing), DirectCast(endTag.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementEndTagSyntax)), Nothing, 0)
31047
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlTextSyntax)._textTokens
31132
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementStartTagSyntax(kind, errors, annotations, lessThanToken, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNodeSyntax), if(attributes IsNot Nothing, attributes.
Green
, Nothing), greaterThanToken), Nothing, 0)
31137
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementStartTagSyntax)._lessThanToken, Me.Position, 0)
31189
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementStartTagSyntax)._greaterThanToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
31284
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementEndTagSyntax(kind, errors, annotations, lessThanSlashToken, if(name IsNot Nothing, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameSyntax), Nothing), greaterThanToken), Nothing, 0)
31289
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementEndTagSyntax)._lessThanSlashToken, Me.Position, 0)
31321
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlElementEndTagSyntax)._greaterThanToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
31410
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlEmptyElementSyntax(kind, errors, annotations, lessThanToken, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNodeSyntax), if(attributes IsNot Nothing, attributes.
Green
, Nothing), slashGreaterThanToken), Nothing, 0)
31415
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlEmptyElementSyntax)._lessThanToken, Me.Position, 0)
31467
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlEmptyElementSyntax)._slashGreaterThanToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
31563
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlAttributeSyntax(kind, errors, annotations, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNodeSyntax), equalsToken, DirectCast(value.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNodeSyntax)), Nothing, 0)
31582
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlAttributeSyntax)._equalsToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
31708
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlStringSyntax)._startQuoteToken, Me.Position, 0)
31726
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlStringSyntax)._textTokens
31749
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlStringSyntax)._endQuoteToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
31837
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlPrefixNameSyntax)._name, Me.Position, 0)
31914
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameSyntax(kind, errors, annotations, if(prefix IsNot Nothing, DirectCast(prefix.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlPrefixSyntax), Nothing), localName), Nothing, 0)
31936
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameSyntax)._localName, Me.GetChildPosition(1), Me.GetChildIndex(1))
32023
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlBracketedNameSyntax(kind, errors, annotations, lessThanToken, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameSyntax), greaterThanToken), Nothing, 0)
32028
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlBracketedNameSyntax)._lessThanToken, Me.Position, 0)
32057
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlBracketedNameSyntax)._greaterThanToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
32149
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlPrefixSyntax)._name, Me.Position, 0)
32163
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlPrefixSyntax)._colonToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
32249
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCommentSyntax)._lessThanExclamationMinusMinusToken, Me.Position, 0)
32264
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCommentSyntax)._textTokens
32287
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCommentSyntax)._minusMinusGreaterThanToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
32376
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlProcessingInstructionSyntax)._lessThanQuestionToken, Me.Position, 0)
32391
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlProcessingInstructionSyntax)._name, Me.GetChildPosition(1), Me.GetChildIndex(1))
32405
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlProcessingInstructionSyntax)._textTokens
32428
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlProcessingInstructionSyntax)._questionGreaterThanToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
32519
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCDataSectionSyntax)._beginCDataToken, Me.Position, 0)
32534
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCDataSectionSyntax)._textTokens
32557
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCDataSectionSyntax)._endCDataToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
32642
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlEmbeddedExpressionSyntax(kind, errors, annotations, lessThanPercentEqualsToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), percentGreaterThanToken), Nothing, 0)
32647
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlEmbeddedExpressionSyntax)._lessThanPercentEqualsToken, Me.Position, 0)
32677
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlEmbeddedExpressionSyntax)._percentGreaterThanToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
32784
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ArrayTypeSyntax(kind, errors, annotations, DirectCast(elementType.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), if(rankSpecifiers IsNot Nothing, rankSpecifiers.
Green
, Nothing)), Nothing, 0)
32904
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NullableTypeSyntax(kind, errors, annotations, DirectCast(elementType.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), questionMarkToken), Nothing, 0)
32931
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NullableTypeSyntax)._questionMarkToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
33024
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.PredefinedTypeSyntax)._keyword, Me.Position, 0)
33118
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleNameSyntax)._identifier, Me.Position, 0)
33162
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax)._identifier, Me.Position, 0)
33247
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GenericNameSyntax(kind, errors, annotations, identifier, DirectCast(typeArgumentList.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeArgumentListSyntax)), Nothing, 0)
33255
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GenericNameSyntax)._identifier, Me.Position, 0)
33372
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.QualifiedNameSyntax(kind, errors, annotations, DirectCast(left.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameSyntax), dotToken, DirectCast(right.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleNameSyntax)), Nothing, 0)
33398
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.QualifiedNameSyntax)._dotToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
33515
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.GlobalNameSyntax)._globalKeyword, Me.Position, 0)
33591
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeArgumentListSyntax(kind, errors, annotations, openParenToken, ofKeyword, if(arguments IsNot Nothing, arguments.
Green
, Nothing), closeParenToken), Nothing, 0)
33599
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeArgumentListSyntax)._openParenToken, Me.Position, 0)
33617
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeArgumentListSyntax)._ofKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
33661
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeArgumentListSyntax)._closeParenToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
33755
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefReferenceSyntax(kind, errors, annotations, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), if(signature IsNot Nothing, DirectCast(signature.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefSignatureSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing)), Nothing, 0)
33897
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefSignatureSyntax(kind, errors, annotations, openParenToken, if(argumentTypes IsNot Nothing, argumentTypes.
Green
, Nothing), closeParenToken), Nothing, 0)
33902
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefSignatureSyntax)._openParenToken, Me.Position, 0)
33940
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefSignatureSyntax)._closeParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
34025
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefSignaturePartSyntax(kind, errors, annotations, modifier, if(type IsNot Nothing, DirectCast(type.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.TypeSyntax), Nothing)), Nothing, 0)
34033
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefSignaturePartSyntax)._modifier
34140
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefOperatorReferenceSyntax)._operatorKeyword, Me.Position, 0)
34155
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefOperatorReferenceSyntax)._operatorToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
34234
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.QualifiedCrefOperatorReferenceSyntax(kind, errors, annotations, DirectCast(left.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameSyntax), dotToken, DirectCast(right.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefOperatorReferenceSyntax)), Nothing, 0)
34253
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.QualifiedCrefOperatorReferenceSyntax)._dotToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
34359
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.YieldStatementSyntax(kind, errors, annotations, yieldKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
34367
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.YieldStatementSyntax)._yieldKeyword, Me.Position, 0)
34470
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AwaitExpressionSyntax(kind, errors, annotations, awaitKeyword, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
34478
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.AwaitExpressionSyntax)._awaitKeyword, Me.Position, 0)
34601
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SkippedTokensTriviaSyntax)._tokens
34685
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DocumentationCommentTriviaSyntax(kind, errors, annotations, if(content IsNot Nothing, content.
Green
, Nothing)), Nothing, 0)
34781
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCrefAttributeSyntax(kind, errors, annotations, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameSyntax), equalsToken, startQuoteToken, DirectCast(reference.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CrefReferenceSyntax), endQuoteToken), Nothing, 0)
34800
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCrefAttributeSyntax)._equalsToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
34815
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCrefAttributeSyntax)._startQuoteToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
34845
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlCrefAttributeSyntax)._endQuoteToken, Me.GetChildPosition(4), Me.GetChildIndex(4))
34946
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameAttributeSyntax(kind, errors, annotations, DirectCast(name.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameSyntax), equalsToken, startQuoteToken, DirectCast(reference.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax), endQuoteToken), Nothing, 0)
34965
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameAttributeSyntax)._equalsToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
34980
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameAttributeSyntax)._startQuoteToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
35010
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.XmlNameAttributeSyntax)._endQuoteToken, Me.GetChildPosition(4), Me.GetChildIndex(4))
35109
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConditionalAccessExpressionSyntax(kind, errors, annotations, if(expression IsNot Nothing, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), Nothing), questionMarkToken, DirectCast(whenNotNull.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
35138
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConditionalAccessExpressionSyntax)._questionMarkToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
35249
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameOfExpressionSyntax(kind, errors, annotations, nameOfKeyword, openParenToken, DirectCast(argument.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), closeParenToken), Nothing, 0)
35257
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameOfExpressionSyntax)._nameOfKeyword, Me.Position, 0)
35275
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameOfExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
35311
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.NameOfExpressionSyntax)._closeParenToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
35402
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolatedStringExpressionSyntax(kind, errors, annotations, dollarSignDoubleQuoteToken, if(contents IsNot Nothing, contents.
Green
, Nothing), doubleQuoteToken), Nothing, 0)
35410
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolatedStringExpressionSyntax)._dollarSignDoubleQuoteToken, Me.Position, 0)
35451
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolatedStringExpressionSyntax)._doubleQuoteToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
35561
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolatedStringTextSyntax)._textToken, Me.Position, 0)
35640
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationSyntax(kind, errors, annotations, openBraceToken, DirectCast(expression.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), if(alignmentClause IsNot Nothing, DirectCast(alignmentClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationAlignmentClauseSyntax), Nothing), if(formatClause IsNot Nothing, DirectCast(formatClause.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationFormatClauseSyntax), Nothing), closeBraceToken), Nothing, 0)
35648
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationSyntax)._openBraceToken, Me.Position, 0)
35727
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationSyntax)._closeBraceToken, Me.GetChildPosition(4), Me.GetChildIndex(4))
35830
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationAlignmentClauseSyntax(kind, errors, annotations, commaToken, DirectCast(value.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
35838
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationAlignmentClauseSyntax)._commaToken, Me.Position, 0)
35948
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationFormatClauseSyntax)._colonToken, Me.Position, 0)
35966
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.InterpolationFormatClauseSyntax)._formatStringToken, Me.GetChildPosition(1), Me.GetChildIndex(1))
36050
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DirectiveTriviaSyntax)._hashToken, Me.Position, 0)
36086
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConstDirectiveTriviaSyntax(kind, errors, annotations, hashToken, constKeyword, name, equalsToken, DirectCast(value.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
36094
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConstDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
36120
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConstDirectiveTriviaSyntax)._constKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
36138
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConstDirectiveTriviaSyntax)._name, Me.GetChildPosition(2), Me.GetChildIndex(2))
36155
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ConstDirectiveTriviaSyntax)._equalsToken, Me.GetChildPosition(3), Me.GetChildIndex(3))
36269
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfDirectiveTriviaSyntax(kind, errors, annotations, hashToken, elseKeyword, ifOrElseIfKeyword, DirectCast(condition.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax), thenKeyword), Nothing, 0)
36277
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
36303
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfDirectiveTriviaSyntax)._elseKeyword
36322
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfDirectiveTriviaSyntax)._ifOrElseIfKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
36355
Dim slot = DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IfDirectiveTriviaSyntax)._thenKeyword
36463
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
36486
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ElseDirectiveTriviaSyntax)._elseKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
36574
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndIfDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
36597
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndIfDirectiveTriviaSyntax)._endKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
36612
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndIfDirectiveTriviaSyntax)._ifKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
36703
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RegionDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
36729
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RegionDirectiveTriviaSyntax)._regionKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
36747
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.RegionDirectiveTriviaSyntax)._name, Me.GetChildPosition(2), Me.GetChildIndex(2))
36837
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndRegionDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
36863
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndRegionDirectiveTriviaSyntax)._endKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
36881
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndRegionDirectiveTriviaSyntax)._regionKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
36973
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalSourceDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
36996
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalSourceDirectiveTriviaSyntax)._externalSourceKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
37011
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalSourceDirectiveTriviaSyntax)._openParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
37026
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalSourceDirectiveTriviaSyntax)._externalSource, Me.GetChildPosition(3), Me.GetChildIndex(3))
37041
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalSourceDirectiveTriviaSyntax)._commaToken, Me.GetChildPosition(4), Me.GetChildIndex(4))
37056
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalSourceDirectiveTriviaSyntax)._lineStart, Me.GetChildPosition(5), Me.GetChildIndex(5))
37071
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalSourceDirectiveTriviaSyntax)._closeParenToken, Me.GetChildPosition(6), Me.GetChildIndex(6))
37174
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndExternalSourceDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
37197
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndExternalSourceDirectiveTriviaSyntax)._endKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
37212
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EndExternalSourceDirectiveTriviaSyntax)._externalSourceKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
37303
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
37326
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._externalChecksumKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
37341
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._openParenToken, Me.GetChildPosition(2), Me.GetChildIndex(2))
37356
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._externalSource, Me.GetChildPosition(3), Me.GetChildIndex(3))
37371
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._firstCommaToken, Me.GetChildPosition(4), Me.GetChildIndex(4))
37386
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._guid, Me.GetChildPosition(5), Me.GetChildIndex(5))
37400
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._secondCommaToken, Me.GetChildPosition(6), Me.GetChildIndex(6))
37415
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._checksum, Me.GetChildPosition(7), Me.GetChildIndex(7))
37430
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExternalChecksumDirectiveTriviaSyntax)._closeParenToken, Me.GetChildPosition(8), Me.GetChildIndex(8))
37532
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnableWarningDirectiveTriviaSyntax(kind, errors, annotations, hashToken, enableKeyword, warningKeyword, if(errorCodes IsNot Nothing, errorCodes.
Green
, Nothing)), Nothing, 0)
37540
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnableWarningDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
37563
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnableWarningDirectiveTriviaSyntax)._enableKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
37578
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.EnableWarningDirectiveTriviaSyntax)._warningKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
37692
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DisableWarningDirectiveTriviaSyntax(kind, errors, annotations, hashToken, disableKeyword, warningKeyword, if(errorCodes IsNot Nothing, errorCodes.
Green
, Nothing)), Nothing, 0)
37700
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DisableWarningDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
37723
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DisableWarningDirectiveTriviaSyntax)._disableKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
37738
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.DisableWarningDirectiveTriviaSyntax)._warningKeyword, Me.GetChildPosition(2), Me.GetChildIndex(2))
37859
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ReferenceDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
37882
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ReferenceDirectiveTriviaSyntax)._referenceKeyword, Me.GetChildPosition(1), Me.GetChildIndex(1))
37897
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ReferenceDirectiveTriviaSyntax)._file, Me.GetChildPosition(2), Me.GetChildIndex(2))
37990
return new SyntaxToken(Me, DirectCast(Me.
Green
, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.BadDirectiveTriviaSyntax)._hashToken, Me.Position, 0)
Parser\Parser.vb (1)
353
node = DirectCast(redNode.
Green
, T)
SourceGeneration\VisualBasicSyntaxHelper.vb (2)
74
Return GetUnqualifiedIdentifierOfName(DirectCast(node.
Green
, InternalSyntax.NameSyntax))
114
ProcessImportsClause(aliases, DirectCast(clause.
Green
, InternalSyntax.ImportsClauseSyntax))
Syntax\SyntaxEquivalence.vb (2)
29
Return AreEquivalentRecursive(before.
Green
, after.
Green
, parentKind:=Nothing, ignoreChildNode:=ignoreChildNode, topLevel:=topLevel)
Syntax\SyntaxNodeExtensions.vb (1)
17
Return DirectCast(node.
Green
.SetAnnotations(annotations).CreateRed(), TNode)
Syntax\SyntaxNodeFactories.vb (1)
761
Return New SyntaxTrivia(Nothing, node.
Green
, position:=0, index:=0)
Syntax\SyntaxNodePartials.vb (3)
20
Return DirectCast(Me.
Green
, InternalSyntax.DocumentationCommentTriviaSyntax).GetInteriorXml
43
If (tr.UnderlyingNode Is MyBase.
Green
) Then
65
ElseIf (tr.UnderlyingNode Is MyBase.
Green
) Then
Syntax\VisualBasicSyntaxNode.vb (7)
40
Return DirectCast(Me.
Green
, InternalSyntax.VisualBasicSyntaxNode)
101
Return CType(Me.
Green
.RawKind, SyntaxKind)
153
Return Me.
Green
.IsDirective
165
Return Position + Me.
Green
.GetLeadingTriviaWidth()
309
If Me.
Green
.GetDiagnostics Is Nothing Then
313
errorInfos = Me.
Green
.GetDiagnostics
320
Dim greenWithDiagnostics = Me.
Green
.SetDiagnostics(errorInfos)
Syntax\VisualBasicSyntaxTree.ConditionalSymbolsMap.vb (2)
114
_preprocessorState = Scanner.ApplyDirective(_preprocessorState, DirectCast(directive.
Green
(), InternalSyntax.DirectiveTriviaSyntax))
135
_preprocessorState = Scanner.ApplyDirective(_preprocessorState, DirectCast(directive.
Green
(), InternalSyntax.DirectiveTriviaSyntax))
Syntax\VisualBasicSyntaxTree.vb (1)
320
Return Me.GetDiagnostics(DirectCast(node.
Green
, InternalSyntax.VisualBasicSyntaxNode), DirectCast(node, VisualBasicSyntaxNode).Position, InDocumentationComment(node))
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (3)
Parser\ParseXml.vb (1)
3543
Dim getPossibleKeywordKind = Function(x As XmlNameSyntax) DirectCast(x.
Green
, InternalSyntax.XmlNameSyntax).LocalName.PossibleKeywordKind
PreprocessorEETests.vb (2)
27
Dim prog = DirectCast(VisualBasic.SyntaxFactory.ParseCompilationUnit(modText).
Green
, CompilationUnitSyntax)
36
Return DirectCast(expr.
Green
, ExpressionSyntax)