Boo.Lang.Compiler.Steps.EmitAssembly.IsCheckedIntegerOperand C# (CSharp) Method

IsCheckedIntegerOperand() private method

private IsCheckedIntegerOperand ( IType operandType ) : bool
operandType IType
return bool
        private bool IsCheckedIntegerOperand(IType operandType)
        {
            return _checked && IsInteger(operandType);
        }
EmitAssembly