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

LocalAlreadyExists() public static method

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