unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Alan Mackenzie <acm@muc.de>
Cc: emacs-devel@gnu.org
Subject: Re: Poor quality error messages
Date: Wed, 05 Jan 2022 14:01:10 -0500	[thread overview]
Message-ID: <jwvczl6qapk.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <YdXlXk3Ocz4oDwKC@ACM> (Alan Mackenzie's message of "Wed, 5 Jan 2022 18:37:18 +0000")

Alan Mackenzie [2022-01-05 18:37:18] wrote:
> During a bootstrap (not of the standard code), the make failed,
> presenting me with the following half error message:
>
>   In toplevel form:
>   cedet/ede.el: Error: No applicable method: initialize-instance, nil, nil
>   make[2]: *** [Makefile:308: cedet/ede.elc] Error 1
>   make[2]: *** Waiting for unfinished jobs....
>
> ..  Is this really the best we can do?
>
> The following faults with this half message are readily apparent:
>
> (ii) There is no preposition or verb indicating the relationship between
>   the missing method (whatever that is) and initialize-instance.

`initialize-instance` is a "generic function" (i.e. a function defined
via `cl-defgeneric` and which can have different implementations for
different argument types, each implementation being called a "method")
and the error says that this function was called with a set of arguments
for which there is no matching method.

[ Side note: this nomenclature comes from CLOS and is a bit different
  from that used in mainstream class-based OO where what CLOS calls
  a "generic function" is often called a "method" and what CLOS calls
  a "method" is just a specific implementation of
  a method/generic-function in a particular class.  ]

> (iii) Is initialize-instance the method that is missing?

According to the error message, `initialize-instance` was called with
arguments nil and nil.  The first argument should be an object whose
slots needs to be initialized, so it shouldn't be nil, and indeed none
of the methods are applicable for the case where the first arg is nil.

> (iv) To what is the method (whatever that is) meant to be applicable?  To
>   initialise-instance, perhaps?  Or to "nil, nil"?  Or to something else?

The generic function by defaults comes with basically only one method
which handles the case where the first arg is an EIEIO object.

> (v) It is not clear what the "nil, nil" at the end of the half message is
>   meant to mean.

I think it's the list of arguments passed to `initialise-instance`.

> Just for info, grep finds no matches for "initialize-instance" in ede.el.

`initialize-instance` is used internally by `make-instance` (and
`make-instance` is used internally by the constructor defined by
`defclass`).

I.e. when the code defines a class with (defclass FOO ...) it defines
a constructor called FOO which calls `make-instance` which in turn calls
`initialize-instance` (as well as `shared-initialize`, IIRC).


        Stefan




      reply	other threads:[~2022-01-05 19:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-05 18:37 Poor quality error messages Alan Mackenzie
2022-01-05 19:01 ` Stefan Monnier [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=jwvczl6qapk.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=acm@muc.de \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).