39 references to AttributeLists
Microsoft.CodeAnalysis.VisualBasic (16)
Declarations\DeclarationTreeBuilder.vb (4)
673
If eventDecl.EventStatement.
AttributeLists
.Any Then
688
If eventDecl.
AttributeLists
.Any Then
768
Dim declFlags As SingleTypeDeclaration.TypeDeclarationFlags = If(node.
AttributeLists
.Any(),
773
Dim quickAttributes = GetQuickAttributes(node.
AttributeLists
)
Generated\Syntax.xml.Main.Generated.vb (1)
2229
Dim newAttributeLists = VisitList(node.
AttributeLists
)
Generated\Syntax.xml.Syntax.Generated.vb (10)
8022
Return Me.
AttributeLists
8039
Return Me.WithAttributeLists(Me.
AttributeLists
.AddRange(items))
8079
return Update(Me.
AttributeLists
, modifiers, Me.CustomKeyword, Me.EventKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.ImplementsClause)
8112
return Update(Me.
AttributeLists
, Me.Modifiers, customKeyword, Me.EventKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.ImplementsClause)
8130
return Update(Me.
AttributeLists
, Me.Modifiers, Me.CustomKeyword, eventKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.ImplementsClause)
8148
return Update(Me.
AttributeLists
, Me.Modifiers, Me.CustomKeyword, Me.EventKeyword, identifier, Me.ParameterList, Me.AsClause, Me.ImplementsClause)
8178
return Update(Me.
AttributeLists
, Me.Modifiers, Me.CustomKeyword, Me.EventKeyword, Me.Identifier, parameterList, Me.AsClause, Me.ImplementsClause)
8209
return Update(Me.
AttributeLists
, Me.Modifiers, Me.CustomKeyword, Me.EventKeyword, Me.Identifier, Me.ParameterList, asClause, Me.ImplementsClause)
8231
return Update(Me.
AttributeLists
, Me.Modifiers, Me.CustomKeyword, Me.EventKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, implementsClause)
8307
If attributeLists <> Me.
AttributeLists
OrElse modifiers <> Me.Modifiers OrElse customKeyword <> Me.CustomKeyword OrElse eventKeyword <> Me.EventKeyword OrElse identifier <> Me.Identifier OrElse parameterList IsNot Me.ParameterList OrElse asClause IsNot Me.AsClause OrElse implementsClause IsNot Me.ImplementsClause Then
Symbols\Source\SourceEventSymbol.vb (1)
578
Return DirectCast(_syntaxRef.GetSyntax, EventStatementSyntax).
AttributeLists
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (4)
StatementSyntaxExtensions.vb (2)
36
Return DirectCast(member, EventBlockSyntax).EventStatement.
AttributeLists
38
Return DirectCast(member, EventStatementSyntax).
AttributeLists
SyntaxNodeExtensions.vb (2)
1224
Return DirectCast(node, EventBlockSyntax).EventStatement.
AttributeLists
1226
Return DirectCast(node, EventStatementSyntax).
AttributeLists
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (2)
Utilities\NavigationPointHelpers.vb (2)
35
If eventBlock.EventStatement.
AttributeLists
.Count > 0 Then
36
Return eventBlock.EventStatement.
AttributeLists
.Last().GetLastToken().GetNextToken().SpanStart
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
19116
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.
AttributeLists
).WithModifiers(objectUnderTest.Modifiers).WithCustomKeyword(objectUnderTest.CustomKeyword).WithEventKeyword(objectUnderTest.EventKeyword).WithIdentifier(objectUnderTest.Identifier).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause).WithImplementsClause(objectUnderTest.ImplementsClause)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (5)
FindSymbols\VisualBasicDeclaredSymbolInfoFactoryService.vb (1)
274
eventDecl.
AttributeLists
.Any(),
StatementSyntaxExtensions.vb (2)
36
Return DirectCast(member, EventBlockSyntax).EventStatement.
AttributeLists
38
Return DirectCast(member, EventStatementSyntax).
AttributeLists
SyntaxNodeExtensions.vb (2)
1224
Return DirectCast(node, EventBlockSyntax).EventStatement.
AttributeLists
1226
Return DirectCast(node, EventStatementSyntax).
AttributeLists
Microsoft.VisualStudio.LanguageServices.VisualBasic (11)
CodeModel\VisualBasicCodeModelService.CodeModelEventCollector.vb (2)
754
GetAttributes(oldEvent.
AttributeLists
),
755
GetAttributes(newEvent.
AttributeLists
),
CodeModel\VisualBasicCodeModelService.NodeLocator.vb (5)
796
Return GetAttributesStartPoint(text, eventBlock.EventStatement.
AttributeLists
, part)
836
Return GetAttributesStartPoint(text, eventStatement.
AttributeLists
, part)
844
If eventStatement.
AttributeLists
.Count > 0 Then
845
startPosition = eventStatement.
AttributeLists
.Last().GetLastToken().GetNextToken().SpanStart
878
Return GetAttributesEndPoint(text, eventStatement.
AttributeLists
, part)
CodeModel\VisualBasicCodeModelService.vb (4)
392
Return GetAttributeNodes(DirectCast(node, EventBlockSyntax).EventStatement.
AttributeLists
)
394
Return GetAttributeNodes(DirectCast(node, EventStatementSyntax).
AttributeLists
)
3900
Dim attributeLists = eventStatement.
AttributeLists
.Insert(index, attributeList)
3904
Dim attributeLists = eventBlock.EventStatement.
AttributeLists
.Insert(index, attributeList)