Fork me on GitHub
#clojure-dev
<
2017-01-17
>
bronsa14:01:43

@alexmiller any interest in a patch to add argvec type hinting to deftype/reify to make that consistent with defn type hinting? IE making (reify Foo (bar ^foo [this])) equivalent to (reify Foo (^foo bar [this]))

Alex Miller (Clojure team)14:01:40

I think it's intentionally different

Alex Miller (Clojure team)14:01:16

With reify trying to echo Java placement more

bronsa14:01:31

it probably is to mimic java, and I don't mind it too much TBH, just asking because it came up yesterday

bronsa14:01:08

I'll leave it be then