Boo.Lang.Compiler.Steps.ProcessMethodBodies.GetInferredType C# (CSharp) 메소드

GetInferredType() 개인적인 메소드

private GetInferredType ( IMember entity ) : IType
entity IMember
리턴 IType
        private IType GetInferredType(IMember entity)
        {
            Debug.Assert(EntityType.Method != entity.EntityType);
            return IsDuckTyped(entity)
                ? this.TypeSystemServices.DuckType
                : entity.Type;
        }

Same methods

ProcessMethodBodies::GetInferredType ( IMethod entity ) : IType
ProcessMethodBodies