1 write to _directCall
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\GenericLookupResult.cs (1)
1062_directCall = directCall;
8 references to _directCall
ILCompiler.Compiler (8)
Compiler\DependencyAnalysis\GenericLookupResult.cs (8)
1065Debug.Assert(!_constrainedMethod.HasInstantiation || !_directCall, "Direct call to constrained generic method isn't supported"); 1150if (_directCall) 1154public override string ToString() => $"ConstrainedMethodUseLookupResult: {_constraintType} {_constrainedMethod} {_directCall}"; 1158return factory.NativeLayout.ConstrainedMethodUse(_constrainedMethod, _constraintType, _directCall); 1164int result = (_directCall ? 1 : 0) - (otherResult._directCall ? 1 : 0); 1185_directCall == other._directCall;