Changeset 13592
- Timestamp:
- 09/11/11 19:24:13 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/test/lisp/abcl/mop-tests.lisp
r13591 r13592 309 309 (deftest dmc-return.1 310 310 (define-method-combination dmc-test-return-foo) 311 'dmc-test-return-foo)311 dmc-test-return-foo) 312 312 313 313 (deftest dmc-return.2 314 314 (define-method-combination dmc-test-return-bar :operator and) 315 'dmc-test-return-bar)315 dmc-test-return-bar) 316 316 317 317 (deftest dmc-return.3 … … 330 330 (make-method ,form))) 331 331 form))) 332 'dmc-test-return)332 dmc-test-return) 333 333 334 334 ;; A method combination which originally failed; … … 490 490 491 491 (define-method-combination dmc-test-mc.4 () 492 ((methods ()))492 ((methods *)) 493 493 (:arguments object) 494 494 `(unwind-protect … … 527 527 ((method-list *)) 528 528 (:arguments arg1 arg2 &aux (extra :extra)) 529 (print (type-of method-list))530 (print method-list)531 529 `(progn ,@(mapcar (lambda (method) `(call-method ,method)) method-list))) 532 530 … … 585 583 (deftest dmc-test-mc.7a 586 584 (equal (apply #'dmc-test-mc.7 :foo (list 1 2 3 4 5 6 7 8)) 587 '(:foo 8))) 585 '(:foo 8)) 586 T) 588 587 589 588
Note: See TracChangeset
for help on using the changeset viewer.