adjust xmethod macro to yield a more helpful error message

original commit: 282cdcbb5b2513abde2df242611e0ea2157e9a77
This commit is contained in:
Robby Findler 2013-03-10 17:33:08 -05:00
parent 4cbccb1c85
commit 7c59dcd240

View File

@ -17,8 +17,8 @@
(define-syntax-rule (method class/interface method-name)
(*method 'method-name (quote-syntax class/interface)))
(define-syntax-rule (xmethod a b)
(elem (method a b) " in " (racket a)))
(define-syntax-rule (xmethod class/intf-id method-id)
(elem (method class/intf-id method-id) " in " (racket class/intf-id)))
(define (*method sym id)
(**method sym id))