2 types derived from SourceAttributeData
Microsoft.CodeAnalysis.VisualBasic (2)
Symbols\Attributes\RetargetingAttributeData.vb (1)
17Inherits SourceAttributeData
Symbols\SynthesizedSymbols\SynthesizedAttributeData.vb (1)
17Inherits SourceAttributeData
5 instantiations of SourceAttributeData
Microsoft.CodeAnalysis.VisualBasic (5)
Binding\Binder_Attributes.vb (1)
83Return New SourceAttributeData(node.GetReference(), DirectCast(boundAttribute.Type, NamedTypeSymbol), boundAttribute.Constructor, args, namedArgs, isConditionallyOmitted, hasErrors:=visitor.HasErrors)
Symbols\Attributes\RetargetingAttributeData.vb (1)
25MyBase.New(applicationNode, attributeClass, attributeConstructor, constructorArguments, namedArguments, isConditionallyOmitted, hasErrors)
Symbols\Attributes\SourceAttributeData.vb (1)
89Return New SourceAttributeData(Me.ApplicationSyntaxReference,
Symbols\Source\SourceParameterSymbol.vb (1)
285Yield New SourceAttributeData(attribute.ApplicationSyntaxReference, attribute.AttributeClass, attribute.AttributeConstructor, newArgs, attribute.CommonNamedArguments, attribute.IsConditionallyOmitted, attribute.HasErrors)
Symbols\SynthesizedSymbols\SynthesizedAttributeData.vb (1)
23MyBase.New(Nothing,
5 references to SourceAttributeData
Microsoft.CodeAnalysis.VisualBasic (5)
Binding\Binder_Attributes.vb (1)
75Friend Function GetAttribute(node As AttributeSyntax, boundAttributeType As NamedTypeSymbol, diagnostics As BindingDiagnosticBag) As SourceAttributeData
Binding\EarlyWellKnownAttributeBinder.vb (1)
53Friend Shadows Function GetAttribute(node As AttributeSyntax, boundAttributeType As NamedTypeSymbol, <Out> ByRef generatedDiagnostics As Boolean) As SourceAttributeData
Symbols\Attributes\SourceAttributeData.vb (1)
84Friend Function WithOmittedCondition(isConditionallyOmitted As Boolean) As SourceAttributeData
Symbols\Retargeting\RetargetingSymbolTranslator.vb (1)
665Dim y As SourceAttributeData = x ' Code below relies on the fact that SynthesizedAttributeData derives from SourceAttributeData.
Symbols\Source\SourceParameterSymbol.vb (1)
273If callerArgumentExpressionParameterIndex <> -1 AndAlso TypeOf attribute Is SourceAttributeData Then