35 references to AttributeLists
Microsoft.CodeAnalysis.VisualBasic (15)
Declarations\DeclarationTreeBuilder.vb (1)
647
If propertyDecl.PropertyStatement.
AttributeLists
.Any Then
Generated\Syntax.xml.Main.Generated.vb (1)
2279
Dim newAttributeLists = VisitList(node.
AttributeLists
)
Generated\Syntax.xml.Syntax.Generated.vb (10)
8642
Return Me.
AttributeLists
8659
Return Me.WithAttributeLists(Me.
AttributeLists
.AddRange(items))
8699
return Update(Me.
AttributeLists
, modifiers, Me.PropertyKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.Initializer, Me.ImplementsClause)
8725
return Update(Me.
AttributeLists
, Me.Modifiers, propertyKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.Initializer, Me.ImplementsClause)
8743
return Update(Me.
AttributeLists
, Me.Modifiers, Me.PropertyKeyword, identifier, Me.ParameterList, Me.AsClause, Me.Initializer, Me.ImplementsClause)
8773
return Update(Me.
AttributeLists
, Me.Modifiers, Me.PropertyKeyword, Me.Identifier, parameterList, Me.AsClause, Me.Initializer, Me.ImplementsClause)
8804
return Update(Me.
AttributeLists
, Me.Modifiers, Me.PropertyKeyword, Me.Identifier, Me.ParameterList, asClause, Me.Initializer, Me.ImplementsClause)
8826
return Update(Me.
AttributeLists
, Me.Modifiers, Me.PropertyKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, initializer, Me.ImplementsClause)
8848
return Update(Me.
AttributeLists
, Me.Modifiers, Me.PropertyKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.Initializer, implementsClause)
8928
If attributeLists <> Me.
AttributeLists
OrElse modifiers <> Me.Modifiers OrElse propertyKeyword <> Me.PropertyKeyword OrElse identifier <> Me.Identifier OrElse parameterList IsNot Me.ParameterList OrElse asClause IsNot Me.AsClause OrElse initializer IsNot Me.Initializer OrElse implementsClause IsNot Me.ImplementsClause Then
Lowering\Instrumentation\CodeCoverageInstrumenter.vb (1)
528
Return SkipAttributes(syntax, propertySyntax.
AttributeLists
, propertySyntax.Modifiers, propertySyntax.PropertyKeyword)
Symbols\Source\SourcePropertySymbol.vb (2)
103
If syntax.
AttributeLists
.Count = 0 Then
476
Return OneOrMany.Create(DirectCast(_syntaxRef.GetSyntax, PropertyStatementSyntax).
AttributeLists
)
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (4)
StatementSyntaxExtensions.vb (2)
40
Return DirectCast(member, PropertyBlockSyntax).PropertyStatement.
AttributeLists
42
Return DirectCast(member, PropertyStatementSyntax).
AttributeLists
SyntaxNodeExtensions.vb (2)
1216
Return DirectCast(node, PropertyBlockSyntax).PropertyStatement.
AttributeLists
1218
Return DirectCast(node, PropertyStatementSyntax).
AttributeLists
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
19134
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.
AttributeLists
).WithModifiers(objectUnderTest.Modifiers).WithPropertyKeyword(objectUnderTest.PropertyKeyword).WithIdentifier(objectUnderTest.Identifier).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause).WithInitializer(objectUnderTest.Initializer).WithImplementsClause(objectUnderTest.ImplementsClause)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (5)
FindSymbols\VisualBasicDeclaredSymbolInfoFactoryService.vb (1)
308
propertyDecl.
AttributeLists
.Any(),
StatementSyntaxExtensions.vb (2)
40
Return DirectCast(member, PropertyBlockSyntax).PropertyStatement.
AttributeLists
42
Return DirectCast(member, PropertyStatementSyntax).
AttributeLists
SyntaxNodeExtensions.vb (2)
1216
Return DirectCast(node, PropertyBlockSyntax).PropertyStatement.
AttributeLists
1218
Return DirectCast(node, PropertyStatementSyntax).
AttributeLists
Microsoft.VisualStudio.LanguageServices.VisualBasic (10)
CodeModel\VisualBasicCodeModelService.CodeModelEventCollector.vb (2)
693
GetAttributes(oldProperty.
AttributeLists
),
694
GetAttributes(newProperty.
AttributeLists
),
CodeModel\VisualBasicCodeModelService.NodeLocator.vb (4)
713
Return GetAttributesStartPoint(text, propertyStatement.
AttributeLists
, part)
716
If propertyStatement.
AttributeLists
.Count > 0 Then
717
startPosition = propertyStatement.
AttributeLists
.Last().GetLastToken().GetNextToken().SpanStart
755
Return GetAttributesEndPoint(text, propertyStatement.
AttributeLists
, part)
CodeModel\VisualBasicCodeModelService.vb (4)
388
Return GetAttributeNodes(DirectCast(node, PropertyBlockSyntax).PropertyStatement.
AttributeLists
)
390
Return GetAttributeNodes(DirectCast(node, PropertyStatementSyntax).
AttributeLists
)
3892
Dim attributeLists = propertyStatement.
AttributeLists
.Insert(index, attributeList)
3896
Dim attributeLists = propertyBlock.PropertyStatement.
AttributeLists
.Insert(index, attributeList)