I have a misbehaving piece of code; when I name a record MethodInfo, it no longer overrides the .toString method correctly.

(defrecord MethodInfo [^clojure.lang.ISeq x ^clojure.lang.ISeq y]
  java.lang.Object
    (toString [x]
      (str (:x x))))

Running a simple test shows how this fails,

=> (.toString (new MethodInfo [1 2] [3]))
"sketch.compiler.main.sklojure1.MethodInfo@10e0d118"

whereas renaming the record to A shows the code behaving correctly,

=> (.toString (new A [1 2] [3]))
"[1 2]"

what am I doing wrong??

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Your record works fine for me. I would recommend restarting the REPL as there might be some old code hanging around. Note also that you have direct access to fields in the record, so you can write

(defrecord MethodInfo [x y]
  Object
  (toString [_] (str x)))

instead of

(defrecord MethodInfo [x y]
  Object
  (toString [this] (str (:x this))))
link|improve this answer
yeah, must have been a cache problem, thanks! – gatoatigrado Jul 18 '11 at 19:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.