id	summary	reporter	owner	description	type	status	priority	milestone	component	resolution	keywords	cc	planetversion	pltversion
170	->BlockStatement called incorrect in #%try	jay	dherman	"#%try is buggy: it doesn't provide env to ->BS

(define #%try
  (transformer 'try statement #:keywords (finally) (stx env)
    [(try body catches ... (finally clause))
     (make-TryStatement stx
                        (->BlockStatement #'body) ; here
                        (->CatchClauses #'(catches ...) env)
                        (->BlockStatement #'clause env))]
    [(try body catches ...)
     (make-TryStatement stx
                        (->BlockStatement #'body) ; here
                        (->CatchClauses #'(catches ...) env)
                        #f)]))"	defect	closed	major		dherman/javascript.plt				(9 1)	4.1.4.3
