Boo.Lang.Compiler.CompilerErrorFactory.TypeDoesNotSupportSlicing C# (CSharp) Method

TypeDoesNotSupportSlicing() public static method

public static TypeDoesNotSupportSlicing ( Node node, IType fullName ) : CompilerError
node Node
fullName IType
return CompilerError
        public static CompilerError TypeDoesNotSupportSlicing(Node node, IType fullName)
        {
            return Instantiate("BCE0048", node, fullName);
        }
CompilerErrorFactory