2 overrides of ApplicationSyntaxReference
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Attributes\PEAttributeData.cs (1)
51public override SyntaxReference? ApplicationSyntaxReference
Symbols\Attributes\SourceAttributeData.cs (1)
85public override SyntaxReference? ApplicationSyntaxReference
6 references to ApplicationSyntaxReference
Microsoft.CodeAnalysis.CSharp (2)
Compiler\ClsComplianceChecker.cs (1)
650SyntaxReference syntaxRef = attribute.ApplicationSyntaxReference;
Symbols\Attributes\AttributeData.cs (1)
229get { return this.ApplicationSyntaxReference; }
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (4)
Attributes\AttributeTests.cs (4)
3085Assert.Equal(SyntaxKind.Attribute, attrs[0].ApplicationSyntaxReference.GetSyntax().Kind()); 3086var syntax = (AttributeSyntax)attrs[0].ApplicationSyntaxReference.GetSyntax(); 3088syntax = (AttributeSyntax)attrs[1].ApplicationSyntaxReference.GetSyntax(); 3381var syntax = attrs.Single().ApplicationSyntaxReference.GetSyntax();