3 references to LazyInfo
Microsoft.CodeAnalysis.CSharp (3)
Binder\Binder_Invocation.cs (1)
1903var code = d is DiagnosticWithInfo { HasLazyInfo: true, LazyInfo.Code: var lazyCode } ? lazyCode : d.Code;
Binder\Binder_Operators.cs (1)
1061var code = diagnostic is DiagnosticWithInfo { HasLazyInfo: true, LazyInfo.Code: var lazyCode } ? lazyCode : diagnostic.Code;
Symbols\Symbol_Attributes.cs (1)
533return d.HasLazyInfo ? d.LazyInfo is LazyObsoleteDiagnosticInfo : d.Info.IsObsoleteDiagnostic();