8 references to HasAnyErrors
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder.ValueChecks.cs (1)
623
hasResolutionErrors = resolution.
HasAnyErrors
;
Binder\Binder_Conversions.cs (1)
1378
else if (resolution.
HasAnyErrors
)
Binder\Binder_Expressions.cs (2)
7969
if (resolution.MethodGroup != null && !resolution.
HasAnyErrors
)
10656
if (methodResolution.IsEmpty && !methodResolution.
HasAnyErrors
)
Binder\Binder_Invocation.cs (1)
740
if (resolution.
HasAnyErrors
)
Binder\Semantics\Conversions\Conversions.cs (3)
107
var conversion = (resolution.IsEmpty || resolution.
HasAnyErrors
) ?
124
var conversion = (resolution.IsEmpty || resolution.
HasAnyErrors
) ?
307
bool hasErrors = resolution.
HasAnyErrors
;