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

NoSuchLabel() public static method

public static NoSuchLabel ( Node node, string label ) : CompilerError
node Node
label string
return CompilerError
        public static CompilerError NoSuchLabel(Node node, string label)
        {
            return Instantiate("BCE0095", node, label);
        }
CompilerErrorFactory