#| -*-Scheme-*-
-$Id: edwin.pkg,v 1.276 2001/12/18 21:35:04 cph Exp $
+$Id: edwin.pkg,v 1.277 2001/12/18 22:23:26 cph Exp $
Copyright (c) 1989-2001 Massachusetts Institute of Technology
(files "xform")
(parent (edwin class-macros))
(export (edwin class-macros)
- transform-instance-variables))
+ transform-instance-variables)
+ (import ()
+ (make-scode-variable make-variable)
+ (scode-variable-name variable-name)))
(define-package (edwin class-constructor)
(files "clscon")
;;; -*-Scheme-*-
;;;
-;;;$Id: xform.scm,v 1.9 1999/01/02 06:11:34 cph Exp $
+;;;$Id: xform.scm,v 1.10 2001/12/18 22:23:21 cph Exp $
;;;
;;; Copyright (c) 1985, 1989, 1990, 1999 Massachusetts Institute of Technology
;;;
constant)
(define (transform-variable transforms variable)
- (let ((entry (assq (variable-name variable) transforms)))
+ (let ((entry (assq (scode-variable-name variable) transforms)))
(if (not entry)
variable
(make-combination vector-ref
- (list (make-variable name-of-self)
+ (list (make-scode-variable name-of-self)
(cdr entry))))))
(define (transform-assignment transforms assignment)