Boo.Lang.Compiler.Steps.ProcessMethodBodies.GetMostGenericType C# (CSharp) Метод

GetMostGenericType() приватный Метод

private GetMostGenericType ( Boo.Lang.Compiler.Ast.BinaryExpression node ) : IType
node Boo.Lang.Compiler.Ast.BinaryExpression
Результат IType
        IType GetMostGenericType(BinaryExpression node)
        {
            return GetMostGenericType(GetExpressionType(node.Left), GetExpressionType(node.Right));
        }

Same methods

ProcessMethodBodies::GetMostGenericType ( Boo.Lang.Compiler.Ast.ExpressionCollection args ) : IType
ProcessMethodBodies::GetMostGenericType ( IType lhs, IType rhs ) : IType
ProcessMethodBodies