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