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