コード例 #1
0
 private bool ShouldEmitNullChecksForMethod() =>
 CompilerServicesSupport.HasNullChecksSupportEnabled(this._methodDefinition, this._nullChecksGloballyEnabled);
コード例 #2
0
 private bool ShouldEmitDivideByZeroChecksForMethod() =>
 CompilerServicesSupport.HasDivideByZeroChecksSupportEnabled(this._methodDefinition, this._divideByZeroChecksGloballyEnabled);
コード例 #3
0
 public bool ShouldEmitBoundsChecksForMethod() =>
 CompilerServicesSupport.HasArrayBoundsChecksSupportEnabled(this._methodDefinition, this._arrayBoundsChecksGloballyEnabled);