mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 22:01:36 -08:00
Added slot GENERIC-FUNCTION-DECLARATIONS
This commit is contained in:
parent
a2460f3a4b
commit
4c5e23fcaf
2 changed files with 7 additions and 0 deletions
|
|
@ -48,6 +48,9 @@ ECL 12.2.2:
|
|||
|
||||
- EXTRACT-LAMBDA-LIST and EXTRACT-SPECIALIZER-NAMES implemented.
|
||||
|
||||
- CLOS:GENERIC-FUNCTION-DECLARATIONS and slot CLOS:DECLARATIONS are now
|
||||
implemented (even if not used by ECL itself).
|
||||
|
||||
;;; Local Variables: ***
|
||||
;;; mode:text ***
|
||||
;;; fill-column:79 ***
|
||||
|
|
|
|||
|
|
@ -122,6 +122,10 @@
|
|||
(documentation :initarg :documentation :initform nil)
|
||||
(methods :initform nil :accessor generic-function-methods)
|
||||
(a-p-o-function :initform nil :accessor generic-function-a-p-o-function)
|
||||
(declarations
|
||||
:initarg :declarations
|
||||
:initform nil
|
||||
:accessor generic-function-declarations)
|
||||
(dependents :initform nil :accessor generic-function-dependents))))
|
||||
|
||||
#.(create-accessors +standard-generic-function-slots+
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue