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