1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-30 06:50:31 +02:00

add xref stub for interpreted procedures

* module/system/xref.scm (hacky-procedure-callees): Add a
  procedure-callees implementation for procedures with source, that
  currently does nothing. Not sure what to do, going into the future.
This commit is contained in:
Andy Wingo 2009-03-17 23:16:35 +01:00
parent e04894e1ac
commit 4f96d42b2d

View file

@ -66,6 +66,10 @@
(else (lp (1+ i) out)))))))
(else '())))
(define (hacky-procedure-callees proc)
;; we could analyze the memoized source or something
'())
(define (procedure-callees proc)
(cond
((program? proc) (program-callees proc))