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

CantRedefinePrimitive() public static method

public static CantRedefinePrimitive ( Node node, string name ) : CompilerError
node Node
name string
return CompilerError
        public static CompilerError CantRedefinePrimitive(Node node, string name)
        {
            return Instantiate("BCE0057", node, name);
        }
CompilerErrorFactory