Boo.Lang.Compiler.Steps.EmitAssembly.IsBoolOrInt C# (CSharp) 메소드

IsBoolOrInt() 개인적인 메소드

private IsBoolOrInt ( IType type ) : bool
type IType
리턴 bool
        bool IsBoolOrInt(IType type)
        {
            return TypeSystemServices.BoolType == type ||
                TypeSystemServices.IntType == type;
        }
EmitAssembly