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