833 references to GetAnnotations
Microsoft.CodeAnalysis (18)
Syntax\GreenNode.cs (7)
463
var hasAnnotations = this.
GetAnnotations
().Length > 0;
470
writer.WriteValue(hasAnnotations ? this.
GetAnnotations
() : null);
483
var annotations = this.
GetAnnotations
();
502
var annotations = this.
GetAnnotations
();
521
var annotations = this.
GetAnnotations
();
545
var annotations = this.
GetAnnotations
();
573
var annotations = this.
GetAnnotations
();
Syntax\GreenNodeExtensions.cs (3)
28
var existingAnnotations = node.
GetAnnotations
();
46
var existingAnnotations = node.
GetAnnotations
();
77
var existingAnnotations = node.
GetAnnotations
();
Syntax\InternalSyntax\SyntaxList.WithLotsOfChildren.cs (1)
81
return new WithLotsOfChildren(errors, this.
GetAnnotations
(), children, _childOffsets);
Syntax\InternalSyntax\SyntaxList.WithManyChildren.cs (1)
147
return new WithManyChildren(errors, this.
GetAnnotations
(), children);
Syntax\InternalSyntax\SyntaxList.WithThreeChildren.cs (1)
95
return new WithThreeChildren(errors, this.
GetAnnotations
(), _child0, _child1, _child2);
Syntax\InternalSyntax\SyntaxList.WithTwoChildren.cs (1)
85
return new WithTwoChildren(errors, this.
GetAnnotations
(), _child0, _child1);
Syntax\SyntaxNode.cs (2)
1245
return this.Green.
GetAnnotations
();
1366
var annotations = this.Green.
GetAnnotations
();
Syntax\SyntaxToken.cs (1)
390
var annotations = this.Node.
GetAnnotations
();
Syntax\SyntaxTrivia.cs (1)
382
var annotations = this.UnderlyingNode.
GetAnnotations
();
Microsoft.CodeAnalysis.CSharp (28)
Syntax\InternalSyntax\SyntaxToken.cs (3)
349
return new SyntaxTokenWithTrivia(this.Kind, trivia, null, this.GetDiagnostics(), this.
GetAnnotations
());
359
return new SyntaxTokenWithTrivia(this.Kind, null, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
365
return new SyntaxToken(this.Kind, this.FullWidth, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxToken.MissingTokenWithTrivia.cs (3)
60
return new MissingTokenWithTrivia(this.Kind, trivia, this.TrailingField, this.GetDiagnostics(), this.
GetAnnotations
());
65
return new MissingTokenWithTrivia(this.Kind, this.LeadingField, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
70
return new MissingTokenWithTrivia(this.Kind, this.LeadingField, this.TrailingField, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifier.cs (3)
65
return new SyntaxIdentifierWithTrivia(this.Kind, this.TextField, this.TextField, trivia, null, this.GetDiagnostics(), this.
GetAnnotations
());
70
return new SyntaxIdentifierWithTrivia(this.Kind, this.TextField, this.TextField, null, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
75
return new SyntaxIdentifier(this.Text, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierExtended.cs (3)
69
return new SyntaxIdentifierWithTrivia(this.contextualKind, this.TextField, this.valueText, trivia, null, this.GetDiagnostics(), this.
GetAnnotations
());
74
return new SyntaxIdentifierWithTrivia(this.contextualKind, this.TextField, this.valueText, null, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
79
return new SyntaxIdentifierExtended(this.contextualKind, this.TextField, this.valueText, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierWithTrailingTrivia.cs (3)
67
return new SyntaxIdentifierWithTrivia(this.Kind, this.TextField, this.TextField, trivia, _trailing, this.GetDiagnostics(), this.
GetAnnotations
());
72
return new SyntaxIdentifierWithTrailingTrivia(this.TextField, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
77
return new SyntaxIdentifierWithTrailingTrivia(this.TextField, _trailing, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierWithTrivia.cs (3)
102
return new SyntaxIdentifierWithTrivia(this.contextualKind, this.TextField, this.valueText, trivia, _trailing, this.GetDiagnostics(), this.
GetAnnotations
());
107
return new SyntaxIdentifierWithTrivia(this.contextualKind, this.TextField, this.valueText, _leading, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
112
return new SyntaxIdentifierWithTrivia(this.contextualKind, this.TextField, this.valueText, _leading, _trailing, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxToken.SyntaxLiteral.cs (3)
80
return new SyntaxTokenWithValueAndTrivia<T>(this.Kind, this.TextField, this.ValueField, trivia, null, this.GetDiagnostics(), this.
GetAnnotations
());
85
return new SyntaxTokenWithValueAndTrivia<T>(this.Kind, this.TextField, this.ValueField, null, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
90
return new SyntaxTokenWithValue<T>(this.Kind, this.TextField, this.ValueField, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxToken.SyntaxLiteralWithTrivia.cs (3)
97
return new SyntaxTokenWithValueAndTrivia<T>(this.Kind, this.TextField, this.ValueField, trivia, _trailing, this.GetDiagnostics(), this.
GetAnnotations
());
102
return new SyntaxTokenWithValueAndTrivia<T>(this.Kind, this.TextField, this.ValueField, _leading, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
107
return new SyntaxTokenWithValueAndTrivia<T>(this.Kind, this.TextField, this.ValueField, _leading, _trailing, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxToken.SyntaxTokenWithTrivia.cs (3)
90
return new SyntaxTokenWithTrivia(this.Kind, trivia, this.TrailingField, this.GetDiagnostics(), this.
GetAnnotations
());
95
return new SyntaxTokenWithTrivia(this.Kind, this.LeadingField, trivia, this.GetDiagnostics(), this.
GetAnnotations
());
100
return new SyntaxTokenWithTrivia(this.Kind, this.LeadingField, this.TrailingField, diagnostics, this.
GetAnnotations
());
Syntax\InternalSyntax\SyntaxTrivia.cs (1)
88
return new SyntaxTrivia(this.Kind, this.Text, diagnostics,
GetAnnotations
());
Microsoft.CodeAnalysis.VisualBasic (787)
Generated\Syntax.xml.Internal.Generated.vb (516)
189
Return new EmptyStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _empty)
311
Return new EndBlockStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _endKeyword, _blockKeyword)
542
Return new CompilationUnitSyntax(Me.Kind, newErrors,
GetAnnotations
, _options, _imports, _attributes, _members, _endOfFileToken)
696
Return new OptionStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _optionKeyword, _nameKeyword, _valueKeyword)
825
Return new ImportsStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _importsKeyword, _importsClauses)
980
Return new SimpleImportsClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _alias, _name)
1099
Return new ImportAliasClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _identifier, _equalsToken)
1236
Return new XmlNamespaceImportsClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanToken, _xmlNamespace, _greaterThanToken)
1388
Return new NamespaceBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _namespaceStatement, _members, _endNamespaceStatement)
1508
Return new NamespaceStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _namespaceKeyword, _name)
1764
Return new ModuleBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _moduleStatement, _inherits, _implements, _members, _endModuleStatement)
1890
Return new StructureBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _structureStatement, _inherits, _implements, _members, _endStructureStatement)
2016
Return new InterfaceBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _interfaceStatement, _inherits, _implements, _members, _endInterfaceStatement)
2142
Return new ClassBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _classStatement, _inherits, _implements, _members, _endClassStatement)
2295
Return new EnumBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _enumStatement, _members, _endEnumStatement)
2447
Return new InheritsStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _inheritsKeyword, _types)
2572
Return new ImplementsStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _implementsKeyword, _types)
2833
Return new ModuleStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _moduleKeyword, _identifier, _typeParameterList)
2937
Return new StructureStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _structureKeyword, _identifier, _typeParameterList)
3041
Return new InterfaceStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _interfaceKeyword, _identifier, _typeParameterList)
3145
Return new ClassStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _classKeyword, _identifier, _typeParameterList)
3367
Return new EnumStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _enumKeyword, _identifier, _underlyingType)
3541
Return new TypeParameterListSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _ofKeyword, _parameters, _closeParenToken)
3704
Return new TypeParameterSyntax(Me.Kind, newErrors,
GetAnnotations
, _varianceKeyword, _identifier, _typeParameterConstraintClause)
3853
Return new TypeParameterSingleConstraintClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _asKeyword, _constraint)
4028
Return new TypeParameterMultipleConstraintClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _asKeyword, _openBraceToken, _constraints, _closeBraceToken)
4152
Return new SpecialConstraintSyntax(Me.Kind, newErrors,
GetAnnotations
, _constraintKeyword)
4246
Return new TypeConstraintSyntax(Me.Kind, newErrors,
GetAnnotations
, _type)
4401
Return new EnumMemberDeclarationSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _identifier, _initializer)
4593
Return new MethodBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _subOrFunctionStatement, _statements, _endSubOrFunctionStatement)
4715
Return new ConstructorBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _subNewStatement, _statements, _endSubStatement)
4837
Return new OperatorBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _operatorStatement, _statements, _endOperatorStatement)
4962
Return new AccessorBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _accessorStatement, _statements, _endAccessorStatement)
5113
Return new PropertyBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _propertyStatement, _accessors, _endPropertyStatement)
5264
Return new EventBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _eventStatement, _accessors, _endEventStatement)
5555
Return new ParameterListSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _parameters, _closeParenToken)
5818
Return new MethodStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _subOrFunctionKeyword, _identifier, _typeParameterList, _parameterList, _asClause, _handlesClause, _implementsClause)
5945
Return new SubNewStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _subKeyword, _newKeyword, _parameterList)
6276
Return new DeclareStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _declareKeyword, _charsetKeyword, _subOrFunctionKeyword, _identifier, _libKeyword, _libraryName, _aliasKeyword, _aliasName, _parameterList, _asClause)
6493
Return new DelegateStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _delegateKeyword, _subOrFunctionKeyword, _identifier, _typeParameterList, _parameterList, _asClause)
6721
Return new EventStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _customKeyword, _eventKeyword, _identifier, _parameterList, _asClause, _implementsClause)
6883
Return new OperatorStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _operatorKeyword, _operatorToken, _parameterList, _asClause)
7113
Return new PropertyStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _propertyKeyword, _identifier, _parameterList, _asClause, _initializer, _implementsClause)
7218
Return new AccessorStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _accessorKeyword, _parameterList)
7344
Return new ImplementsClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _implementsKeyword, _interfaceMembers)
7470
Return new HandlesClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _handlesKeyword, _events)
7592
Return new KeywordEventContainerSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword)
7687
Return new WithEventsEventContainerSyntax(Me.Kind, newErrors,
GetAnnotations
, _identifier)
7831
Return new WithEventsPropertyEventContainerSyntax(Me.Kind, newErrors,
GetAnnotations
, _withEventsContainer, _dotToken, _property)
7976
Return new HandlesClauseItemSyntax(Me.Kind, newErrors,
GetAnnotations
, _eventContainer, _dotToken, _eventMember)
8151
Return new IncompleteMemberSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _missingIdentifier)
8324
Return new FieldDeclarationSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _declarators)
8495
Return new VariableDeclaratorSyntax(Me.Kind, newErrors,
GetAnnotations
, _names, _asClause, _initializer)
8689
Return new SimpleAsClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _asKeyword, _attributeLists, _type)
8789
Return new AsNewClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _asKeyword, _newExpression)
8989
Return new ObjectMemberInitializerSyntax(Me.Kind, newErrors,
GetAnnotations
, _withKeyword, _openBraceToken, _initializers, _closeBraceToken)
9109
Return new ObjectCollectionInitializerSyntax(Me.Kind, newErrors,
GetAnnotations
, _fromKeyword, _initializer)
9275
Return new InferredFieldInitializerSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyKeyword, _expression)
9445
Return new NamedFieldInitializerSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyKeyword, _dotToken, _name, _equalsToken, _expression)
9565
Return new EqualsValueSyntax(Me.Kind, newErrors,
GetAnnotations
, _equalsToken, _value)
9796
Return new ParameterSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _identifier, _asClause, _default)
9992
Return new ModifiedIdentifierSyntax(Me.Kind, newErrors,
GetAnnotations
, _identifier, _nullable, _arrayBounds, _arrayRankSpecifiers)
10145
Return new ArrayRankSpecifierSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _commaTokens, _closeParenToken)
10297
Return new AttributeListSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanToken, _attributes, _greaterThanToken)
10459
Return new AttributeSyntax(Me.Kind, newErrors,
GetAnnotations
, _target, _name, _argumentList)
10580
Return new AttributeTargetSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeModifier, _colonToken)
10684
Return new AttributesStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists)
10780
Return new ExpressionStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _expression)
10899
Return new PrintStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _questionToken, _expression)
11052
Return new WhileBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _whileStatement, _statements, _endWhileStatement)
11206
Return new UsingBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _usingStatement, _statements, _endUsingStatement)
11360
Return new SyncLockBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _syncLockStatement, _statements, _endSyncLockStatement)
11514
Return new WithBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _withStatement, _statements, _endWithStatement)
11647
Return new LocalDeclarationStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _modifiers, _declarators)
11767
Return new LabelStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _labelToken, _colonToken)
11887
Return new GoToStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _goToKeyword, _label)
11983
Return new LabelSyntax(Me.Kind, newErrors,
GetAnnotations
, _labelToken)
12078
Return new StopOrEndStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _stopOrEndKeyword)
12198
Return new ExitStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _exitKeyword, _blockKeyword)
12319
Return new ContinueStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _continueKeyword, _blockKeyword)
12447
Return new ReturnStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _returnKeyword, _expression)
12657
Return new SingleLineIfStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _ifKeyword, _condition, _thenKeyword, _statements, _elseClause)
12786
Return new SingleLineElseClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _elseKeyword, _statements)
13008
Return new MultiLineIfBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _ifStatement, _statements, _elseIfBlocks, _elseBlock, _endIfStatement)
13160
Return new IfStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _ifKeyword, _condition, _thenKeyword)
13289
Return new ElseIfBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _elseIfStatement, _statements)
13441
Return new ElseIfStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _elseIfKeyword, _condition, _thenKeyword)
13569
Return new ElseBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _elseStatement, _statements)
13663
Return new ElseStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _elseKeyword)
13882
Return new TryBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _tryStatement, _statements, _catchBlocks, _finallyBlock, _endTryStatement)
13976
Return new TryStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _tryKeyword)
14105
Return new CatchBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _catchStatement, _statements)
14300
Return new CatchStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _catchKeyword, _identifierName, _asClause, _whenClause)
14419
Return new CatchFilterClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _whenKeyword, _filter)
14547
Return new FinallyBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _finallyStatement, _statements)
14641
Return new FinallyStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _finallyKeyword)
14760
Return new ErrorStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _errorKeyword, _errorNumber)
14961
Return new OnErrorGoToStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _onKeyword, _errorKeyword, _goToKeyword, _minus, _label)
15128
Return new OnErrorResumeNextStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _onKeyword, _errorKeyword, _resumeKeyword, _nextKeyword)
15259
Return new ResumeStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _resumeKeyword, _label)
15412
Return new SelectBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _selectStatement, _caseBlocks, _endSelectStatement)
15565
Return new SelectStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _selectKeyword, _caseKeyword, _expression)
15693
Return new CaseBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _caseStatement, _statements)
15821
Return new CaseStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _caseKeyword, _cases)
15942
Return new ElseCaseClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _elseKeyword)
16036
Return new SimpleCaseClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _value)
16179
Return new RangeCaseClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _lowerBound, _toKeyword, _upperBound)
16332
Return new RelationalCaseClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _isKeyword, _operatorToken, _value)
16452
Return new SyncLockStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _syncLockKeyword, _expression)
16605
Return new DoLoopBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _doStatement, _statements, _loopStatement)
16734
Return new DoStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _doKeyword, _whileOrUntilClause)
16863
Return new LoopStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _loopKeyword, _whileOrUntilClause)
16984
Return new WhileOrUntilClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _whileOrUntilKeyword, _condition)
17104
Return new WhileStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _whileKeyword, _condition)
17305
Return new ForBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _forStatement, _statements, _nextStatement)
17406
Return new ForEachBlockSyntax(Me.Kind, newErrors,
GetAnnotations
, _forEachStatement, _statements, _nextStatement)
17698
Return new ForStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _forKeyword, _controlVariable, _equalsToken, _fromValue, _toKeyword, _toValue, _stepClause)
17817
Return new ForStepClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _stepKeyword, _stepValue)
17970
Return new ForEachStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _forKeyword, _eachKeyword, _controlVariable, _inKeyword, _expression)
18101
Return new NextStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _nextKeyword, _controlVariables)
18266
Return new UsingStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _usingKeyword, _expression, _variables)
18394
Return new ThrowStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _throwKeyword, _expression)
18539
Return new AssignmentStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _left, _operatorToken, _right)
18658
Return new MidExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _mid, _argumentList)
18778
Return new CallStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _callKeyword, _invocation)
18946
Return new AddRemoveHandlerStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _addHandlerOrRemoveHandlerKeyword, _eventExpression, _commaToken, _delegateExpression)
19098
Return new RaiseEventStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _raiseEventKeyword, _name, _argumentList)
19219
Return new WithStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _withKeyword, _expression)
19378
Return new ReDimStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _reDimKeyword, _preserveKeyword, _clauses)
19497
Return new RedimClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _expression, _arrayBounds)
19622
Return new EraseStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _eraseKeyword, _expressions)
19754
Return new LiteralExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _token)
19897
Return new ParenthesizedExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _expression, _closeParenToken)
20046
Return new TupleExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _arguments, _closeParenToken)
20195
Return new TupleTypeSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _elements, _closeParenToken)
20315
Return new TypedTupleElementSyntax(Me.Kind, newErrors,
GetAnnotations
, _type)
20444
Return new NamedTupleElementSyntax(Me.Kind, newErrors,
GetAnnotations
, _identifier, _asClause)
20565
Return new MeExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword)
20627
Return new MyBaseExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword)
20689
Return new MyClassExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword)
20856
Return new GetTypeExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _getTypeKeyword, _openParenToken, _type, _closeParenToken)
21023
Return new TypeOfExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _typeOfKeyword, _expression, _operatorToken, _type)
21199
Return new GetXmlNamespaceExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _getXmlNamespaceKeyword, _openParenToken, _name, _closeParenToken)
21352
Return new MemberAccessExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _expression, _operatorToken, _name)
21572
Return new XmlMemberAccessExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _base, _token1, _token2, _token3, _name)
21711
Return new InvocationExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _expression, _argumentList)
21968
Return new ObjectCreationExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _newKeyword, _attributeLists, _type, _argumentList, _initializer)
22067
Return new AnonymousObjectCreationExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _newKeyword, _attributeLists, _initializer)
22257
Return new ArrayCreationExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _newKeyword, _attributeLists, _type, _arrayBounds, _rankSpecifiers, _initializer)
22410
Return new CollectionInitializerSyntax(Me.Kind, newErrors,
GetAnnotations
, _openBraceToken, _initializers, _closeBraceToken)
22649
Return new CTypeExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword, _openParenToken, _expression, _commaToken, _type, _closeParenToken)
22719
Return new DirectCastExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword, _openParenToken, _expression, _commaToken, _type, _closeParenToken)
22789
Return new TryCastExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword, _openParenToken, _expression, _commaToken, _type, _closeParenToken)
22957
Return new PredefinedCastExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword, _openParenToken, _expression, _closeParenToken)
23099
Return new BinaryExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _left, _operatorToken, _right)
23218
Return new UnaryExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _operatorToken, _operand)
23434
Return new BinaryConditionalExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _ifKeyword, _openParenToken, _firstExpression, _commaToken, _secondExpression, _closeParenToken)
23698
Return new TernaryConditionalExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _ifKeyword, _openParenToken, _condition, _firstCommaToken, _whenTrue, _secondCommaToken, _whenFalse, _closeParenToken)
23855
Return new SingleLineLambdaExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _subOrFunctionHeader, _body)
23988
Return new MultiLineLambdaExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _subOrFunctionHeader, _statements, _endSubOrFunctionStatement)
24123
Return new LambdaHeaderSyntax(Me.Kind, newErrors,
GetAnnotations
, _attributeLists, _modifiers, _subOrFunctionKeyword, _parameterList, _asClause)
24276
Return new ArgumentListSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _arguments, _closeParenToken)
24398
Return new OmittedArgumentSyntax(Me.Kind, newErrors,
GetAnnotations
, _empty)
24527
Return new SimpleArgumentSyntax(Me.Kind, newErrors,
GetAnnotations
, _nameColonEquals, _expression)
24646
Return new NameColonEqualsSyntax(Me.Kind, newErrors,
GetAnnotations
, _name, _colonEqualsToken)
24790
Return new RangeArgumentSyntax(Me.Kind, newErrors,
GetAnnotations
, _lowerBound, _toKeyword, _upperBound)
24893
Return new QueryExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _clauses)
25096
Return new CollectionRangeVariableSyntax(Me.Kind, newErrors,
GetAnnotations
, _identifier, _asClause, _inKeyword, _expression)
25226
Return new ExpressionRangeVariableSyntax(Me.Kind, newErrors,
GetAnnotations
, _nameEquals, _expression)
25359
Return new AggregationRangeVariableSyntax(Me.Kind, newErrors,
GetAnnotations
, _nameEquals, _aggregation)
25511
Return new VariableNameEqualsSyntax(Me.Kind, newErrors,
GetAnnotations
, _identifier, _asClause, _equalsToken)
25733
Return new FunctionAggregationSyntax(Me.Kind, newErrors,
GetAnnotations
, _functionName, _openParenToken, _argument, _closeParenToken)
25829
Return new GroupAggregationSyntax(Me.Kind, newErrors,
GetAnnotations
, _groupKeyword)
25956
Return new FromClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _fromKeyword, _variables)
26081
Return new LetClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _letKeyword, _variables)
26293
Return new AggregateClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _aggregateKeyword, _variables, _additionalQueryOperators, _intoKeyword, _aggregationVariables)
26387
Return new DistinctClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _distinctKeyword)
26506
Return new WhereClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _whereKeyword, _condition)
26650
Return new PartitionWhileClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _skipOrTakeKeyword, _whileKeyword, _condition)
26769
Return new PartitionClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _skipOrTakeKeyword, _count)
27003
Return new GroupByClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _groupKeyword, _items, _byKeyword, _keys, _intoKeyword, _aggregationVariables)
27314
Return new JoinConditionSyntax(Me.Kind, newErrors,
GetAnnotations
, _left, _equalsKeyword, _right)
27385
Return new SimpleJoinClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _joinKeyword, _joinedVariables, _additionalJoins, _onKeyword, _joinConditions)
27544
Return new GroupJoinClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _groupKeyword, _joinKeyword, _joinedVariables, _additionalJoins, _onKeyword, _joinConditions, _intoKeyword, _aggregationVariables)
27693
Return new OrderByClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _orderKeyword, _byKeyword, _orderings)
27823
Return new OrderingSyntax(Me.Kind, newErrors,
GetAnnotations
, _expression, _ascendingOrDescendingKeyword)
27949
Return new SelectClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _selectKeyword, _variables)
28149
Return new XmlDocumentSyntax(Me.Kind, newErrors,
GetAnnotations
, _declaration, _precedingMisc, _root, _followingMisc)
28364
Return new XmlDeclarationSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanQuestionToken, _xmlKeyword, _version, _encoding, _standalone, _questionGreaterThanToken)
28499
Return new XmlDeclarationOptionSyntax(Me.Kind, newErrors,
GetAnnotations
, _name, _equals, _value)
28642
Return new XmlElementSyntax(Me.Kind, newErrors,
GetAnnotations
, _startTag, _content, _endTag)
28743
Return new XmlTextSyntax(Me.Kind, newErrors,
GetAnnotations
, _textTokens)
28907
Return new XmlElementStartTagSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanToken, _name, _attributes, _greaterThanToken)
29050
Return new XmlElementEndTagSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanSlashToken, _name, _greaterThanToken)
29214
Return new XmlEmptyElementSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanToken, _name, _attributes, _slashGreaterThanToken)
29348
Return new XmlAttributeSyntax(Me.Kind, newErrors,
GetAnnotations
, _name, _equalsToken, _value)
29518
Return new XmlStringSyntax(Me.Kind, newErrors,
GetAnnotations
, _startQuoteToken, _textTokens, _endQuoteToken)
29609
Return new XmlPrefixNameSyntax(Me.Kind, newErrors,
GetAnnotations
, _name)
29733
Return new XmlNameSyntax(Me.Kind, newErrors,
GetAnnotations
, _prefix, _localName)
29869
Return new XmlBracketedNameSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanToken, _name, _greaterThanToken)
29982
Return new XmlPrefixSyntax(Me.Kind, newErrors,
GetAnnotations
, _name, _colonToken)
30123
Return new XmlCommentSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanExclamationMinusMinusToken, _textTokens, _minusMinusGreaterThanToken)
30285
Return new XmlProcessingInstructionSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanQuestionToken, _name, _textTokens, _questionGreaterThanToken)
30425
Return new XmlCDataSectionSyntax(Me.Kind, newErrors,
GetAnnotations
, _beginCDataToken, _textTokens, _endCDataToken)
30560
Return new XmlEmbeddedExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _lessThanPercentEqualsToken, _expression, _percentGreaterThanToken)
30714
Return new ArrayTypeSyntax(Me.Kind, newErrors,
GetAnnotations
, _elementType, _rankSpecifiers)
30834
Return new NullableTypeSyntax(Me.Kind, newErrors,
GetAnnotations
, _elementType, _questionMarkToken)
30929
Return new PredefinedTypeSyntax(Me.Kind, newErrors,
GetAnnotations
, _keyword)
31077
Return new IdentifierNameSyntax(Me.Kind, newErrors,
GetAnnotations
, _identifier)
31175
Return new GenericNameSyntax(Me.Kind, newErrors,
GetAnnotations
, _identifier, _typeArgumentList)
31320
Return new QualifiedNameSyntax(Me.Kind, newErrors,
GetAnnotations
, _left, _dotToken, _right)
31414
Return new GlobalNameSyntax(Me.Kind, newErrors,
GetAnnotations
, _globalKeyword)
31587
Return new TypeArgumentListSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _ofKeyword, _arguments, _closeParenToken)
31740
Return new CrefReferenceSyntax(Me.Kind, newErrors,
GetAnnotations
, _name, _signature, _asClause)
31881
Return new CrefSignatureSyntax(Me.Kind, newErrors,
GetAnnotations
, _openParenToken, _argumentTypes, _closeParenToken)
32009
Return new CrefSignaturePartSyntax(Me.Kind, newErrors,
GetAnnotations
, _modifier, _type)
32119
Return new CrefOperatorReferenceSyntax(Me.Kind, newErrors,
GetAnnotations
, _operatorKeyword, _operatorToken)
32250
Return new QualifiedCrefOperatorReferenceSyntax(Me.Kind, newErrors,
GetAnnotations
, _left, _dotToken, _right)
32369
Return new YieldStatementSyntax(Me.Kind, newErrors,
GetAnnotations
, _yieldKeyword, _expression)
32488
Return new AwaitExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _awaitKeyword, _expression)
32544
Return new KeywordSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia)
32548
Return new KeywordSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia)
32552
Return new KeywordSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia)
32593
Return new PunctuationSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia)
32597
Return new PunctuationSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia)
32601
Return new PunctuationSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia)
32657
Return new XmlNameTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia, _possibleKeywordKind)
32661
Return new XmlNameTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia, _possibleKeywordKind)
32665
Return new XmlNameTokenSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia, _possibleKeywordKind)
32726
Return new XmlTextTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia, _value)
32730
Return new XmlTextTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia, _value)
32734
Return new XmlTextTokenSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia, _value)
32793
Return new InterpolatedStringTextTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia, _value)
32797
Return new InterpolatedStringTextTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia, _value)
32801
Return new InterpolatedStringTextTokenSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia, _value)
32876
Return new DecimalLiteralTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia, _typeSuffix, _value)
32880
Return new DecimalLiteralTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia, _typeSuffix, _value)
32884
Return new DecimalLiteralTokenSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia, _typeSuffix, _value)
32943
Return new DateLiteralTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia, _value)
32947
Return new DateLiteralTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia, _value)
32951
Return new DateLiteralTokenSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia, _value)
33011
Return new StringLiteralTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia, _value)
33015
Return new StringLiteralTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia, _value)
33019
Return new StringLiteralTokenSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia, _value)
33078
Return new CharacterLiteralTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, trivia, GetTrailingTrivia, _value)
33082
Return new CharacterLiteralTokenSyntax(Me.Kind, GetDiagnostics,
GetAnnotations
, text, GetLeadingTrivia, trivia, _value)
33086
Return new CharacterLiteralTokenSyntax(Me.Kind, newErrors,
GetAnnotations
, text, GetLeadingTrivia, GetTrailingTrivia, _value)
33195
Return new SkippedTokensTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _tokens)
33296
Return new DocumentationCommentTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _content)
33474
Return new XmlCrefAttributeSyntax(Me.Kind, newErrors,
GetAnnotations
, _name, _equalsToken, _startQuoteToken, _reference, _endQuoteToken)
33652
Return new XmlNameAttributeSyntax(Me.Kind, newErrors,
GetAnnotations
, _name, _equalsToken, _startQuoteToken, _reference, _endQuoteToken)
33805
Return new ConditionalAccessExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _expression, _questionMarkToken, _whenNotNull)
33972
Return new NameOfExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _nameOfKeyword, _openParenToken, _argument, _closeParenToken)
34121
Return new InterpolatedStringExpressionSyntax(Me.Kind, newErrors,
GetAnnotations
, _dollarSignDoubleQuoteToken, _contents, _doubleQuoteToken)
34241
Return new InterpolatedStringTextSyntax(Me.Kind, newErrors,
GetAnnotations
, _textToken)
34452
Return new InterpolationSyntax(Me.Kind, newErrors,
GetAnnotations
, _openBraceToken, _expression, _alignmentClause, _formatClause, _closeBraceToken)
34572
Return new InterpolationAlignmentClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _commaToken, _value)
34692
Return new InterpolationFormatClauseSyntax(Me.Kind, newErrors,
GetAnnotations
, _colonToken, _formatStringToken)
34778
Return new SyntaxTrivia(Me.Kind, newErrors,
GetAnnotations
, Me.Text)
34944
Return new ConstDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _constKeyword, _name, _equalsToken, _value)
35120
Return new IfDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _elseKeyword, _ifOrElseIfKeyword, _condition, _thenKeyword)
35214
Return new ElseDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _elseKeyword)
35329
Return new EndIfDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _endKeyword, _ifKeyword)
35450
Return new RegionDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _regionKeyword, _name)
35571
Return new EndRegionDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _endKeyword, _regionKeyword)
35771
Return new ExternalSourceDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _externalSourceKeyword, _openParenToken, _externalSource, _commaToken, _lineStart, _closeParenToken)
35886
Return new EndExternalSourceDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _endKeyword, _externalSourceKeyword)
36127
Return new ExternalChecksumDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _externalChecksumKeyword, _openParenToken, _externalSource, _firstCommaToken, _guid, _secondCommaToken, _checksum, _closeParenToken)
36269
Return new EnableWarningDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _enableKeyword, _warningKeyword, _errorCodes)
36411
Return new DisableWarningDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _disableKeyword, _warningKeyword, _errorCodes)
36526
Return new ReferenceDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken, _referenceKeyword, _file)
36591
Return new BadDirectiveTriviaSyntax(Me.Kind, newErrors,
GetAnnotations
, _hashToken)
37748
Return New EmptyStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newEmpty)
37763
Return New EndBlockStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newEndKeyword, newBlockKeyword)
37784
Return New CompilationUnitSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOptions.Node, newImports.Node, newAttributes.Node, newMembers.Node, newEndOfFileToken)
37801
Return New OptionStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOptionKeyword, newNameKeyword, newValueKeyword)
37816
Return New ImportsStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newImportsKeyword, newImportsClauses.Node)
37831
Return New SimpleImportsClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAlias, newName)
37846
Return New ImportAliasClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIdentifier, newEqualsToken)
37863
Return New XmlNamespaceImportsClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanToken, newXmlNamespace, newGreaterThanToken)
37880
Return New NamespaceBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNamespaceStatement, newMembers.Node, newEndNamespaceStatement)
37895
Return New NamespaceStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNamespaceKeyword, newName)
37916
Return New ModuleBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newModuleStatement, newInherits.Node, newImplements.Node, newMembers.Node, newEndModuleStatement)
37937
Return New StructureBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newStructureStatement, newInherits.Node, newImplements.Node, newMembers.Node, newEndStructureStatement)
37958
Return New InterfaceBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newInterfaceStatement, newInherits.Node, newImplements.Node, newMembers.Node, newEndInterfaceStatement)
37979
Return New ClassBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newClassStatement, newInherits.Node, newImplements.Node, newMembers.Node, newEndClassStatement)
37996
Return New EnumBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newEnumStatement, newMembers.Node, newEndEnumStatement)
38011
Return New InheritsStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newInheritsKeyword, newTypes.Node)
38026
Return New ImplementsStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newImplementsKeyword, newTypes.Node)
38047
Return New ModuleStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newModuleKeyword, newIdentifier, newTypeParameterList)
38068
Return New StructureStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newStructureKeyword, newIdentifier, newTypeParameterList)
38089
Return New InterfaceStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newInterfaceKeyword, newIdentifier, newTypeParameterList)
38110
Return New ClassStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newClassKeyword, newIdentifier, newTypeParameterList)
38131
Return New EnumStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newEnumKeyword, newIdentifier, newUnderlyingType)
38150
Return New TypeParameterListSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newOfKeyword, newParameters.Node, newCloseParenToken)
38167
Return New TypeParameterSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newVarianceKeyword, newIdentifier, newTypeParameterConstraintClause)
38182
Return New TypeParameterSingleConstraintClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAsKeyword, newConstraint)
38201
Return New TypeParameterMultipleConstraintClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAsKeyword, newOpenBraceToken, newConstraints.Node, newCloseBraceToken)
38214
Return New SpecialConstraintSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newConstraintKeyword)
38227
Return New TypeConstraintSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newType)
38244
Return New EnumMemberDeclarationSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newIdentifier, newInitializer)
38261
Return New MethodBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSubOrFunctionStatement, newStatements.Node, newEndSubOrFunctionStatement)
38278
Return New ConstructorBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSubNewStatement, newStatements.Node, newEndSubStatement)
38295
Return New OperatorBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOperatorStatement, newStatements.Node, newEndOperatorStatement)
38312
Return New AccessorBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAccessorStatement, newStatements.Node, newEndAccessorStatement)
38329
Return New PropertyBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newPropertyStatement, newAccessors.Node, newEndPropertyStatement)
38346
Return New EventBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newEventStatement, newAccessors.Node, newEndEventStatement)
38363
Return New ParameterListSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newParameters.Node, newCloseParenToken)
38392
Return New MethodStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newSubOrFunctionKeyword, newIdentifier, newTypeParameterList, newParameterList, newAsClause, newHandlesClause, newImplementsClause)
38413
Return New SubNewStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newSubKeyword, newNewKeyword, newParameterList)
38448
Return New DeclareStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newDeclareKeyword, newCharsetKeyword, newSubOrFunctionKeyword, newIdentifier, newLibKeyword, newLibraryName, newAliasKeyword, newAliasName, newParameterList, newAsClause)
38475
Return New DelegateStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newDelegateKeyword, newSubOrFunctionKeyword, newIdentifier, newTypeParameterList, newParameterList, newAsClause)
38502
Return New EventStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newCustomKeyword, newEventKeyword, newIdentifier, newParameterList, newAsClause, newImplementsClause)
38525
Return New OperatorStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newOperatorKeyword, newOperatorToken, newParameterList, newAsClause)
38552
Return New PropertyStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newPropertyKeyword, newIdentifier, newParameterList, newAsClause, newInitializer, newImplementsClause)
38571
Return New AccessorStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newAccessorKeyword, newParameterList)
38586
Return New ImplementsClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newImplementsKeyword, newInterfaceMembers.Node)
38601
Return New HandlesClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHandlesKeyword, newEvents.Node)
38614
Return New KeywordEventContainerSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword)
38627
Return New WithEventsEventContainerSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIdentifier)
38644
Return New WithEventsPropertyEventContainerSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWithEventsContainer, newDotToken, newProperty)
38661
Return New HandlesClauseItemSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newEventContainer, newDotToken, newEventMember)
38678
Return New IncompleteMemberSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newMissingIdentifier)
38695
Return New FieldDeclarationSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newDeclarators.Node)
38712
Return New VariableDeclaratorSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNames.Node, newAsClause, newInitializer)
38729
Return New SimpleAsClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAsKeyword, newAttributeLists.Node, newType)
38744
Return New AsNewClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAsKeyword, newNewExpression)
38763
Return New ObjectMemberInitializerSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWithKeyword, newOpenBraceToken, newInitializers.Node, newCloseBraceToken)
38778
Return New ObjectCollectionInitializerSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newFromKeyword, newInitializer)
38793
Return New InferredFieldInitializerSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyKeyword, newExpression)
38814
Return New NamedFieldInitializerSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyKeyword, newDotToken, newName, newEqualsToken, newExpression)
38829
Return New EqualsValueSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newEqualsToken, newValue)
38850
Return New ParameterSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newIdentifier, newAsClause, newDefault)
38869
Return New ModifiedIdentifierSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIdentifier, newNullable, newArrayBounds, newArrayRankSpecifiers.Node)
38886
Return New ArrayRankSpecifierSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newCommaTokens.Node, newCloseParenToken)
38903
Return New AttributeListSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanToken, newAttributes.Node, newGreaterThanToken)
38920
Return New AttributeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newTarget, newName, newArgumentList)
38935
Return New AttributeTargetSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeModifier, newColonToken)
38948
Return New AttributesStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node)
38961
Return New ExpressionStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newExpression)
38976
Return New PrintStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newQuestionToken, newExpression)
38993
Return New WhileBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWhileStatement, newStatements.Node, newEndWhileStatement)
39010
Return New UsingBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newUsingStatement, newStatements.Node, newEndUsingStatement)
39027
Return New SyncLockBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSyncLockStatement, newStatements.Node, newEndSyncLockStatement)
39044
Return New WithBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWithStatement, newStatements.Node, newEndWithStatement)
39059
Return New LocalDeclarationStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newModifiers.Node, newDeclarators.Node)
39074
Return New LabelStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLabelToken, newColonToken)
39089
Return New GoToStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newGoToKeyword, newLabel)
39102
Return New LabelSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLabelToken)
39115
Return New StopOrEndStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newStopOrEndKeyword)
39130
Return New ExitStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newExitKeyword, newBlockKeyword)
39145
Return New ContinueStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newContinueKeyword, newBlockKeyword)
39160
Return New ReturnStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newReturnKeyword, newExpression)
39181
Return New SingleLineIfStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIfKeyword, newCondition, newThenKeyword, newStatements.Node, newElseClause)
39196
Return New SingleLineElseClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newElseKeyword, newStatements.Node)
39217
Return New MultiLineIfBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIfStatement, newStatements.Node, newElseIfBlocks.Node, newElseBlock, newEndIfStatement)
39234
Return New IfStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIfKeyword, newCondition, newThenKeyword)
39249
Return New ElseIfBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newElseIfStatement, newStatements.Node)
39266
Return New ElseIfStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newElseIfKeyword, newCondition, newThenKeyword)
39281
Return New ElseBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newElseStatement, newStatements.Node)
39294
Return New ElseStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newElseKeyword)
39315
Return New TryBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newTryStatement, newStatements.Node, newCatchBlocks.Node, newFinallyBlock, newEndTryStatement)
39328
Return New TryStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newTryKeyword)
39343
Return New CatchBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newCatchStatement, newStatements.Node)
39362
Return New CatchStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newCatchKeyword, newIdentifierName, newAsClause, newWhenClause)
39377
Return New CatchFilterClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWhenKeyword, newFilter)
39392
Return New FinallyBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newFinallyStatement, newStatements.Node)
39405
Return New FinallyStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newFinallyKeyword)
39420
Return New ErrorStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newErrorKeyword, newErrorNumber)
39441
Return New OnErrorGoToStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOnKeyword, newErrorKeyword, newGoToKeyword, newMinus, newLabel)
39460
Return New OnErrorResumeNextStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOnKeyword, newErrorKeyword, newResumeKeyword, newNextKeyword)
39475
Return New ResumeStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newResumeKeyword, newLabel)
39492
Return New SelectBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSelectStatement, newCaseBlocks.Node, newEndSelectStatement)
39509
Return New SelectStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSelectKeyword, newCaseKeyword, newExpression)
39524
Return New CaseBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newCaseStatement, newStatements.Node)
39539
Return New CaseStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newCaseKeyword, newCases.Node)
39552
Return New ElseCaseClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newElseKeyword)
39565
Return New SimpleCaseClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newValue)
39582
Return New RangeCaseClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLowerBound, newToKeyword, newUpperBound)
39599
Return New RelationalCaseClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIsKeyword, newOperatorToken, newValue)
39614
Return New SyncLockStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSyncLockKeyword, newExpression)
39631
Return New DoLoopBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newDoStatement, newStatements.Node, newLoopStatement)
39646
Return New DoStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newDoKeyword, newWhileOrUntilClause)
39661
Return New LoopStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLoopKeyword, newWhileOrUntilClause)
39676
Return New WhileOrUntilClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWhileOrUntilKeyword, newCondition)
39691
Return New WhileStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWhileKeyword, newCondition)
39708
Return New ForBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newForStatement, newStatements.Node, newNextStatement)
39725
Return New ForEachBlockSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newForEachStatement, newStatements.Node, newNextStatement)
39750
Return New ForStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newForKeyword, newControlVariable, newEqualsToken, newFromValue, newToKeyword, newToValue, newStepClause)
39765
Return New ForStepClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newStepKeyword, newStepValue)
39786
Return New ForEachStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newForKeyword, newEachKeyword, newControlVariable, newInKeyword, newExpression)
39801
Return New NextStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNextKeyword, newControlVariables.Node)
39818
Return New UsingStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newUsingKeyword, newExpression, newVariables.Node)
39833
Return New ThrowStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newThrowKeyword, newExpression)
39850
Return New AssignmentStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLeft, newOperatorToken, newRight)
39865
Return New MidExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newMid, newArgumentList)
39880
Return New CallStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newCallKeyword, newInvocation)
39899
Return New AddRemoveHandlerStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAddHandlerOrRemoveHandlerKeyword, newEventExpression, newCommaToken, newDelegateExpression)
39916
Return New RaiseEventStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newRaiseEventKeyword, newName, newArgumentList)
39931
Return New WithStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWithKeyword, newExpression)
39948
Return New ReDimStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newReDimKeyword, newPreserveKeyword, newClauses.Node)
39963
Return New RedimClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newExpression, newArrayBounds)
39978
Return New EraseStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newEraseKeyword, newExpressions.Node)
39991
Return New LiteralExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newToken)
40008
Return New ParenthesizedExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newExpression, newCloseParenToken)
40025
Return New TupleExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newArguments.Node, newCloseParenToken)
40042
Return New TupleTypeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newElements.Node, newCloseParenToken)
40055
Return New TypedTupleElementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newType)
40070
Return New NamedTupleElementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIdentifier, newAsClause)
40083
Return New MeExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword)
40096
Return New MyBaseExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword)
40109
Return New MyClassExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword)
40128
Return New GetTypeExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newGetTypeKeyword, newOpenParenToken, newType, newCloseParenToken)
40147
Return New TypeOfExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newTypeOfKeyword, newExpression, newOperatorToken, newType)
40166
Return New GetXmlNamespaceExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newGetXmlNamespaceKeyword, newOpenParenToken, newName, newCloseParenToken)
40183
Return New MemberAccessExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newExpression, newOperatorToken, newName)
40204
Return New XmlMemberAccessExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newBase, newToken1, newToken2, newToken3, newName)
40219
Return New InvocationExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newExpression, newArgumentList)
40240
Return New ObjectCreationExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNewKeyword, newAttributeLists.Node, newType, newArgumentList, newInitializer)
40257
Return New AnonymousObjectCreationExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNewKeyword, newAttributeLists.Node, newInitializer)
40280
Return New ArrayCreationExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNewKeyword, newAttributeLists.Node, newType, newArrayBounds, newRankSpecifiers.Node, newInitializer)
40297
Return New CollectionInitializerSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenBraceToken, newInitializers.Node, newCloseBraceToken)
40320
Return New CTypeExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword, newOpenParenToken, newExpression, newCommaToken, newType, newCloseParenToken)
40343
Return New DirectCastExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword, newOpenParenToken, newExpression, newCommaToken, newType, newCloseParenToken)
40366
Return New TryCastExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword, newOpenParenToken, newExpression, newCommaToken, newType, newCloseParenToken)
40385
Return New PredefinedCastExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword, newOpenParenToken, newExpression, newCloseParenToken)
40402
Return New BinaryExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLeft, newOperatorToken, newRight)
40417
Return New UnaryExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOperatorToken, newOperand)
40440
Return New BinaryConditionalExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIfKeyword, newOpenParenToken, newFirstExpression, newCommaToken, newSecondExpression, newCloseParenToken)
40467
Return New TernaryConditionalExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIfKeyword, newOpenParenToken, newCondition, newFirstCommaToken, newWhenTrue, newSecondCommaToken, newWhenFalse, newCloseParenToken)
40482
Return New SingleLineLambdaExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSubOrFunctionHeader, newBody)
40499
Return New MultiLineLambdaExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSubOrFunctionHeader, newStatements.Node, newEndSubOrFunctionStatement)
40520
Return New LambdaHeaderSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAttributeLists.Node, newModifiers.Node, newSubOrFunctionKeyword, newParameterList, newAsClause)
40537
Return New ArgumentListSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newArguments.Node, newCloseParenToken)
40550
Return New OmittedArgumentSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newEmpty)
40565
Return New SimpleArgumentSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNameColonEquals, newExpression)
40580
Return New NameColonEqualsSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newName, newColonEqualsToken)
40597
Return New RangeArgumentSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLowerBound, newToKeyword, newUpperBound)
40610
Return New QueryExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newClauses.Node)
40629
Return New CollectionRangeVariableSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIdentifier, newAsClause, newInKeyword, newExpression)
40644
Return New ExpressionRangeVariableSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNameEquals, newExpression)
40659
Return New AggregationRangeVariableSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNameEquals, newAggregation)
40676
Return New VariableNameEqualsSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIdentifier, newAsClause, newEqualsToken)
40695
Return New FunctionAggregationSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newFunctionName, newOpenParenToken, newArgument, newCloseParenToken)
40708
Return New GroupAggregationSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newGroupKeyword)
40723
Return New FromClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newFromKeyword, newVariables.Node)
40738
Return New LetClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLetKeyword, newVariables.Node)
40759
Return New AggregateClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAggregateKeyword, newVariables.Node, newAdditionalQueryOperators.Node, newIntoKeyword, newAggregationVariables.Node)
40772
Return New DistinctClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newDistinctKeyword)
40787
Return New WhereClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newWhereKeyword, newCondition)
40804
Return New PartitionWhileClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSkipOrTakeKeyword, newWhileKeyword, newCondition)
40819
Return New PartitionClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSkipOrTakeKeyword, newCount)
40842
Return New GroupByClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newGroupKeyword, newItems.Node, newByKeyword, newKeys.Node, newIntoKeyword, newAggregationVariables.Node)
40859
Return New JoinConditionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLeft, newEqualsKeyword, newRight)
40880
Return New SimpleJoinClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newJoinKeyword, newJoinedVariables.Node, newAdditionalJoins.Node, newOnKeyword, newJoinConditions.Node)
40907
Return New GroupJoinClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newGroupKeyword, newJoinKeyword, newJoinedVariables.Node, newAdditionalJoins.Node, newOnKeyword, newJoinConditions.Node, newIntoKeyword, newAggregationVariables.Node)
40924
Return New OrderByClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOrderKeyword, newByKeyword, newOrderings.Node)
40939
Return New OrderingSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newExpression, newAscendingOrDescendingKeyword)
40954
Return New SelectClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newSelectKeyword, newVariables.Node)
40973
Return New XmlDocumentSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newDeclaration, newPrecedingMisc.Node, newRoot, newFollowingMisc.Node)
40996
Return New XmlDeclarationSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanQuestionToken, newXmlKeyword, newVersion, newEncoding, newStandalone, newQuestionGreaterThanToken)
41013
Return New XmlDeclarationOptionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newName, newEquals, newValue)
41030
Return New XmlElementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newStartTag, newContent.Node, newEndTag)
41043
Return New XmlTextSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newTextTokens.Node)
41062
Return New XmlElementStartTagSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanToken, newName, newAttributes.Node, newGreaterThanToken)
41079
Return New XmlElementEndTagSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanSlashToken, newName, newGreaterThanToken)
41098
Return New XmlEmptyElementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanToken, newName, newAttributes.Node, newSlashGreaterThanToken)
41115
Return New XmlAttributeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newName, newEqualsToken, newValue)
41132
Return New XmlStringSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newStartQuoteToken, newTextTokens.Node, newEndQuoteToken)
41145
Return New XmlPrefixNameSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newName)
41160
Return New XmlNameSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newPrefix, newLocalName)
41177
Return New XmlBracketedNameSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanToken, newName, newGreaterThanToken)
41192
Return New XmlPrefixSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newName, newColonToken)
41209
Return New XmlCommentSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanExclamationMinusMinusToken, newTextTokens.Node, newMinusMinusGreaterThanToken)
41228
Return New XmlProcessingInstructionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanQuestionToken, newName, newTextTokens.Node, newQuestionGreaterThanToken)
41245
Return New XmlCDataSectionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newBeginCDataToken, newTextTokens.Node, newEndCDataToken)
41262
Return New XmlEmbeddedExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLessThanPercentEqualsToken, newExpression, newPercentGreaterThanToken)
41277
Return New ArrayTypeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newElementType, newRankSpecifiers.Node)
41292
Return New NullableTypeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newElementType, newQuestionMarkToken)
41305
Return New PredefinedTypeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newKeyword)
41318
Return New IdentifierNameSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIdentifier)
41333
Return New GenericNameSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newIdentifier, newTypeArgumentList)
41350
Return New QualifiedNameSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLeft, newDotToken, newRight)
41363
Return New GlobalNameSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newGlobalKeyword)
41382
Return New TypeArgumentListSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newOfKeyword, newArguments.Node, newCloseParenToken)
41399
Return New CrefReferenceSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newName, newSignature, newAsClause)
41416
Return New CrefSignatureSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenParenToken, newArgumentTypes.Node, newCloseParenToken)
41431
Return New CrefSignaturePartSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newModifier, newType)
41446
Return New CrefOperatorReferenceSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOperatorKeyword, newOperatorToken)
41463
Return New QualifiedCrefOperatorReferenceSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newLeft, newDotToken, newRight)
41478
Return New YieldStatementSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newYieldKeyword, newExpression)
41493
Return New AwaitExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newAwaitKeyword, newExpression)
41506
Return New SkippedTokensTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newTokens.Node)
41519
Return New DocumentationCommentTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newContent.Node)
41540
Return New XmlCrefAttributeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newName, newEqualsToken, newStartQuoteToken, newReference, newEndQuoteToken)
41561
Return New XmlNameAttributeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newName, newEqualsToken, newStartQuoteToken, newReference, newEndQuoteToken)
41578
Return New ConditionalAccessExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newExpression, newQuestionMarkToken, newWhenNotNull)
41597
Return New NameOfExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newNameOfKeyword, newOpenParenToken, newArgument, newCloseParenToken)
41614
Return New InterpolatedStringExpressionSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newDollarSignDoubleQuoteToken, newContents.Node, newDoubleQuoteToken)
41627
Return New InterpolatedStringTextSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newTextToken)
41648
Return New InterpolationSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newOpenBraceToken, newExpression, newAlignmentClause, newFormatClause, newCloseBraceToken)
41663
Return New InterpolationAlignmentClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newCommaToken, newValue)
41678
Return New InterpolationFormatClauseSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newColonToken, newFormatStringToken)
41699
Return New ConstDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newConstKeyword, newName, newEqualsToken, newValue)
41720
Return New IfDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newElseKeyword, newIfOrElseIfKeyword, newCondition, newThenKeyword)
41735
Return New ElseDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newElseKeyword)
41752
Return New EndIfDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newEndKeyword, newIfKeyword)
41769
Return New RegionDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newRegionKeyword, newName)
41786
Return New EndRegionDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newEndKeyword, newRegionKeyword)
41811
Return New ExternalSourceDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newExternalSourceKeyword, newOpenParenToken, newExternalSource, newCommaToken, newLineStart, newCloseParenToken)
41828
Return New EndExternalSourceDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newEndKeyword, newExternalSourceKeyword)
41857
Return New ExternalChecksumDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newExternalChecksumKeyword, newOpenParenToken, newExternalSource, newFirstCommaToken, newGuid, newSecondCommaToken, newChecksum, newCloseParenToken)
41876
Return New EnableWarningDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newEnableKeyword, newWarningKeyword, newErrorCodes.Node)
41895
Return New DisableWarningDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newDisableKeyword, newWarningKeyword, newErrorCodes.Node)
41912
Return New ReferenceDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken, newReferenceKeyword, newFile)
41925
Return New BadDirectiveTriviaSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, newHashToken)
Generated\Syntax.xml.Main.Generated.vb (244)
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)
Parser\ParseXml.vb (10)
2085
Return New XmlDeclarationSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, lessThanQuestionToken, xmlKeyword, node.Version, node.Encoding, node.Standalone, node.QuestionGreaterThanToken)
2190
node.
GetAnnotations
,
2211
Return New XmlNameAttributeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, nameNew, node.EqualsToken, node.StartQuoteToken, node.Reference, node.EndQuoteToken)
2228
Return New XmlCrefAttributeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, nameNew, node.EqualsToken, node.StartQuoteToken, node.Reference, node.EndQuoteToken)
2245
Return New XmlAttributeSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, nameNew, node.EqualsToken, node.Value)
2314
Return New XmlNameSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, prefix, localName)
2335
Return New XmlPrefixSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, name, colon)
2392
Return New XmlNameTokenSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, node.Text, leadingTrivia, trailingTrivia, node.PossibleKeywordKind)
2397
Return New KeywordSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, node.Text, leadingTrivia, trailingTrivia)
2406
Return New PunctuationSyntax(node.Kind, node.GetDiagnostics, node.
GetAnnotations
, node.Text, leadingTrivia, trailingTrivia)
Syntax\InternalSyntax\BadTokenSyntax.vb (3)
48
Return New BadTokenSyntax(Kind, SubKind, GetDiagnostics,
GetAnnotations
, Text, trivia, GetTrailingTrivia)
52
Return New BadTokenSyntax(Kind, SubKind, GetDiagnostics,
GetAnnotations
, Text, GetLeadingTrivia, trivia)
56
Return New BadTokenSyntax(Kind, SubKind, newErrors,
GetAnnotations
, Text, GetLeadingTrivia, GetTrailingTrivia)
Syntax\InternalSyntax\ComplexIdentifierSyntax.vb (3)
97
Return New ComplexIdentifierSyntax(Kind, GetDiagnostics,
GetAnnotations
, Text, trivia, GetTrailingTrivia, PossibleKeywordKind, IsBracketed, IdentifierText, TypeCharacter)
101
Return New ComplexIdentifierSyntax(Kind, GetDiagnostics,
GetAnnotations
, Text, GetLeadingTrivia, trivia, PossibleKeywordKind, IsBracketed, IdentifierText, TypeCharacter)
105
Return New ComplexIdentifierSyntax(Kind, newErrors,
GetAnnotations
, Text, GetLeadingTrivia, GetTrailingTrivia, PossibleKeywordKind, IsBracketed, IdentifierText, TypeCharacter)
Syntax\InternalSyntax\SimpleIdentifierSyntax.vb (3)
70
Return New SimpleIdentifierSyntax(Kind, GetDiagnostics,
GetAnnotations
, Text, trivia, GetTrailingTrivia)
74
Return New SimpleIdentifierSyntax(Kind, GetDiagnostics,
GetAnnotations
, Text, GetLeadingTrivia, trivia)
78
Return New SimpleIdentifierSyntax(Kind, newErrors,
GetAnnotations
, Text, GetLeadingTrivia, GetTrailingTrivia)
Syntax\InternalSyntax\SyntaxLiterals.vb (6)
98
Return New IntegerLiteralTokenSyntax(Of T)(Kind, GetDiagnostics,
GetAnnotations
, Text, trivia, GetTrailingTrivia, _base, _typeSuffix, _value)
102
Return New IntegerLiteralTokenSyntax(Of T)(Kind, GetDiagnostics,
GetAnnotations
, Text, GetLeadingTrivia, trivia, _base, _typeSuffix, _value)
106
Return New IntegerLiteralTokenSyntax(Of T)(Kind, newErrors,
GetAnnotations
, Text, GetLeadingTrivia, GetTrailingTrivia, _base, _typeSuffix, _value)
222
Return New FloatingLiteralTokenSyntax(Of T)(Kind, GetDiagnostics,
GetAnnotations
, Text, trivia, GetTrailingTrivia, _typeSuffix, _value)
226
Return New FloatingLiteralTokenSyntax(Of T)(Kind, GetDiagnostics,
GetAnnotations
, Text, GetLeadingTrivia, trivia, _typeSuffix, _value)
230
Return New FloatingLiteralTokenSyntax(Of T)(Kind, newErrors,
GetAnnotations
, Text, GetLeadingTrivia, GetTrailingTrivia, _typeSuffix, _value)
Syntax\InternalSyntax\SyntaxNodeExtensions.vb (2)
28
Return CType(node.SetAnnotations(node.
GetAnnotations
().Concat(annotations).ToArray()), TNode)
34
Dim annotations = node.
GetAnnotations
()