[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Stepping through methods
- To: jbk@world.std.com (Jeffrey B Kane)
- Subject: Re: Stepping through methods
- From: poeck@informatik.uni-wuerzburg.de (Karsten Poeck)
- Date: Sat, 3 Dec 1994 17:46:50 +0100
- Cc: info-mcl@digitool.com
- Sender: owner-info-mcl@digitool.com
>One problem that I have had for quite some time, is the inability
>to step through methods using the step function. I can step
Perhaps:
(setq *save-definitions* t)
(defmethod karl ((ich string))
(+ 3 4 (* (length ich))))
(defmethod karl ((ich number))
(* ich 2))
(defun test-step (n)
(karl n))
#|
(trace ((:method karl (string)) :step t))
;setq manual p 362
(test-step 4)
(test-step "asdkaklsdasd")
|#
Karsten