Forgot to give map its list argument.

svn: r337
This commit is contained in:
Stevie Strickland 2005-07-04 22:40:31 +00:00
parent 03aba477f7
commit d3654cfdec

View File

@ -105,7 +105,7 @@
(at stx `(define ,(translate-class-name name)
(class* ,(translate-class-name base) ,(map translate-iface-name impls)
(honu:type ,(translate-type-for-syntax selftype))
(honu:type ,@(map (lambda (w) (translate-type-for-syntax (honu:formal-type w)))))
(honu:type ,@(map (lambda (w) (translate-type-for-syntax (honu:formal-type w))) withs))
(inspect #f)
,(translate-inits inits)
,@(map translate-member members-before)
@ -171,4 +171,4 @@
;; as before, the 3 is for " = "
(renderer ,(translate-static-field-getter name)
(+ indent ,(+ indent-delta (string-length (symbol->string (syntax-e name))) 3)))))
)
)