summaryrefslogtreecommitdiff
path: root/tests/mop-14.impure-cload.lisp
blob: e82accd0d3f27b876abdab70e3adde19a70b0be6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
;;;; miscellaneous side-effectful tests of the MOP

;;;; This software is part of the SBCL system. See the README file for
;;;; more information.
;;;;
;;;; While most of SBCL is derived from the CMU CL system, the test
;;;; files (like this one) were written from scratch after the fork
;;;; from CMU CL.
;;;;
;;;; This software is in the public domain and is provided with
;;;; absolutely no warranty. See the COPYING and CREDITS files for
;;;; more information.

;;; this file attempts to test the computation of final discriminating
;;; functions for slot-valuish generic functions in the presence of
;;; large hierarchies of slot definitions with a forward-referenced
;;; superclass.  (This used to fail in cache-filling code: see reports
;;; from Levente Mészáros sbcl-devel 2006-04-19)

(defclass dwim-slot-definition
  (sb-mop:standard-slot-definition)
  ())

(defclass dwim-direct-slot-definition
  (sb-mop:standard-direct-slot-definition dwim-slot-definition)
  ())

(defclass dwim-effective-slot-definition
  (extra-effective-slot-definition
   sb-mop:standard-effective-slot-definition dwim-slot-definition)
  ())
(defclass dwim-attribute-slot-definition
  (dwim-slot-definition)
  ())

(defclass dwim-attribute-effective-slot-definition
  (dwim-effective-slot-definition dwim-attribute-slot-definition)
  ())

(defclass dwim-attribute-direct-slot-definition
  (dwim-direct-slot-definition dwim-attribute-slot-definition)
  ())

(defclass extra-effective-slot-definition ()
  ())