Boo.Lang.Compiler.Steps.ProcessMethodBodies.ResultingTypeForComplexSlicing C# (CSharp) Method

ResultingTypeForComplexSlicing() private method

private ResultingTypeForComplexSlicing ( SlicingExpression node ) : IType
node SlicingExpression
return IType
        private IType ResultingTypeForComplexSlicing(SlicingExpression node)
        {
            var targetType = GetExpressionType(node.Target);
            return targetType.IsArray ? ResultingTypeForArraySlicing(node) : targetType;
        }
ProcessMethodBodies