Hi,

Am 08.01.2009 um 19:38 schrieb Greg Harman:

It looks like "(quote foo)" is being taken as the literal string name,
rather than evaluating to "foo". And it happens that the hex ascii in
the generated method name translates to: [](quote foo).
Seems suspiciously like a macro-time vs fn-time thing... I will submit
an issue on this & see if I can work out a patch.

(ns mypkg.compiletest)
(gen-interface :name mypkg.ICompileTest
               :methods [['foo [] []]])


I think the quote is superfluous here. Try:

(gen-interface
  :name mypkg.ICompileTest
  :methods [[foo [] []]])

Sincerely
Meikel

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to