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

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

public static MissingConstructor ( Exception error, Node node, Type type, object parameters ) : CompilerError
error Exception
node Node
type Type
parameters object
Результат CompilerError
        public static CompilerError MissingConstructor(Exception error, Node node, Type type, object[] parameters)
        {
            return Instantiate("BCE0008", node, error, type, GetSignature(parameters));
        }
CompilerErrorFactory