示例#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);