29 references to AttributeLists
Microsoft.CodeAnalysis.VisualBasic (14)
Declarations\DeclarationTreeBuilder.vb (2)
742
Dim declFlags As SingleTypeDeclaration.TypeDeclarationFlags = If(node.
AttributeLists
.Any(),
747
Dim quickAttributes = GetQuickAttributes(node.
AttributeLists
)
Declarations\MergedTypeDeclaration.vb (1)
95
attributeSyntaxList = DirectCast(node, DelegateStatementSyntax).
AttributeLists
Generated\Syntax.xml.Main.Generated.vb (1)
2202
Dim newAttributeLists = VisitList(node.
AttributeLists
)
Generated\Syntax.xml.Syntax.Generated.vb (10)
7686
Return Me.
AttributeLists
7703
Return Me.WithAttributeLists(Me.
AttributeLists
.AddRange(items))
7743
return Update(Me.Kind, Me.
AttributeLists
, modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause)
7769
return Update(Me.Kind, Me.
AttributeLists
, Me.Modifiers, delegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause)
7787
return Update(Me.Kind, Me.
AttributeLists
, Me.Modifiers, Me.DelegateKeyword, subOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause)
7805
return Update(Me.Kind, Me.
AttributeLists
, Me.Modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause)
7827
return Update(Me.Kind, Me.
AttributeLists
, Me.Modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, typeParameterList, Me.ParameterList, Me.AsClause)
7862
return Update(Me.Kind, Me.
AttributeLists
, Me.Modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, parameterList, Me.AsClause)
7893
return Update(Me.Kind, Me.
AttributeLists
, Me.Modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, asClause)
7967
If kind <> Me.Kind OrElse attributeLists <> Me.
AttributeLists
OrElse modifiers <> Me.Modifiers OrElse delegateKeyword <> Me.DelegateKeyword OrElse subOrFunctionKeyword <> Me.SubOrFunctionKeyword OrElse identifier <> Me.Identifier OrElse typeParameterList IsNot Me.TypeParameterList OrElse parameterList IsNot Me.ParameterList OrElse asClause IsNot Me.AsClause Then
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
SyntaxNodeExtensions.vb (1)
1201
Return DirectCast(node, DelegateStatementSyntax).
AttributeLists
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
19097
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.
AttributeLists
).WithModifiers(objectUnderTest.Modifiers).WithDelegateKeyword(objectUnderTest.DelegateKeyword).WithSubOrFunctionKeyword(objectUnderTest.SubOrFunctionKeyword).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause)
19107
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.
AttributeLists
).WithModifiers(objectUnderTest.Modifiers).WithDelegateKeyword(objectUnderTest.DelegateKeyword).WithSubOrFunctionKeyword(objectUnderTest.SubOrFunctionKeyword).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (4)
CodeGeneration\VisualBasicSyntaxGenerator.vb (2)
2400
ds.
AttributeLists
,
2485
ds.
AttributeLists
,
FindSymbols\VisualBasicDeclaredSymbolInfoFactoryService.vb (1)
246
delegateDecl.
AttributeLists
.Any(),
SyntaxNodeExtensions.vb (1)
1201
Return DirectCast(node, DelegateStatementSyntax).
AttributeLists
Microsoft.VisualStudio.LanguageServices.VisualBasic (8)
CodeModel\VisualBasicCodeModelService.NodeLocator.vb (4)
917
Return GetAttributesStartPoint(text, delegateStatement.
AttributeLists
, part)
925
If delegateStatement.
AttributeLists
.Count > 0 Then
926
startPosition = delegateStatement.
AttributeLists
.Last().GetLastToken().GetNextToken().SpanStart
953
Return GetAttributesEndPoint(text, delegateStatement.
AttributeLists
, part)
CodeModel\VisualBasicCodeModelService.vb (4)
380
Return GetAttributeNodes(DirectCast(node, DelegateStatementSyntax).
AttributeLists
)
2986
attributeLists:=delegateStatement.
AttributeLists
,
3000
attributeLists:=delegateStatement.
AttributeLists
,
3865
Dim attributeLists = delegateStatement.
AttributeLists
.Insert(index, attributeList)