From: Chris Hanson Date: Fri, 7 Jun 2019 05:25:29 +0000 (-0700) Subject: Modify CREF to show references to inherited bindings. X-Git-Tag: mit-scheme-pucked-10.1.11~6^2~6 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=af74ab812b5280fdd0aa5a13537c7168bdfeb051;p=mit-scheme.git Modify CREF to show references to inherited bindings. This will help track down which parts of the string abstraction need to be replaced. --- diff --git a/src/cref/forpkg.scm b/src/cref/forpkg.scm index 7f1b6c19c..865ff5228 100644 --- a/src/cref/forpkg.scm +++ b/src/cref/forpkg.scm @@ -106,6 +106,7 @@ USA. (let ((class (assq package classes))) (if class (format-package/bindings port indentation width package (cdr class))) + (format-package/inherited port indentation width package) (for-each (lambda (class) (if (not (eq? package (car class))) (format-package/imports port indentation width package @@ -197,6 +198,20 @@ USA. ")") name))))) +(define (format-package/inherited port indentation width package) + (let ((inherited + (filter (lambda (reference) + (let ((binding (reference/binding reference))) + (and binding + (ancestor-package? (binding/package binding) + package)))) + (package/references package)))) + (if (pair? inherited) + (begin + (newline port) + (format-references port indentation width "Inherited" package + (sort inherited reference