[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Stepping through methods



>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