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