Boo.Lang.Compiler.CompilerErrorFactory.ClassAlreadyHasBaseType C# (CSharp) Метод

ClassAlreadyHasBaseType() публичный статический Метод

public static ClassAlreadyHasBaseType ( Node node, string className, IType baseType ) : CompilerError
node Node
className string
baseType IType
Результат CompilerError
        public static CompilerError ClassAlreadyHasBaseType(Node node, string className, IType baseType)
        {
            return Instantiate("BCE0001", node, className, baseType);
        }
CompilerErrorFactory