5 references to AttributeTypeOnly
Microsoft.CodeAnalysis.CSharp (4)
Binder\Binder_Symbols.cs (1)
1084return isVerbatimIdentifier ? LookupOptions.VerbatimNameAttributeTypeOnly : LookupOptions.AttributeTypeOnly;
Binder\LookupOptions.cs (3)
92VerbatimNameAttributeTypeOnly = (1 << 12) | AttributeTypeOnly, 205return (options & LookupOptions.AttributeTypeOnly) == LookupOptions.AttributeTypeOnly;
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Compilation\SemanticModelGetDeclaredSymbolAPITests.cs (1)
2169var options = isVerbatim ? LookupOptions.VerbatimNameAttributeTypeOnly : LookupOptions.AttributeTypeOnly;