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

LabelAlreadyDefined() public static method

public static LabelAlreadyDefined ( Node node, IMethod method, string label ) : CompilerError
node Node
method IMethod
label string
return CompilerError
        public static CompilerError LabelAlreadyDefined(Node node, IMethod method, string label)
        {
            return Instantiate("BCE0096", node, method, label);
        }
CompilerErrorFactory