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

InheritanceCycle() public static method

public static InheritanceCycle ( Node node, IType type ) : CompilerError
node Node
type IType
return CompilerError
        public static CompilerError InheritanceCycle(Node node, IType type)
        {
            return Instantiate("BCE0071", node, type);
        }
CompilerErrorFactory