Fork me on GitHub
#cljs-dev
<
2016-02-13
>
anmonteiro22:02:52

is there a particular reason why cljs.core/LazyTransformer doesn't implement IMeta?

anmonteiro22:02:01

cljs.user=> (def x (with-meta (sequence (map inc) [1 2 3]) {:a 1}))
#'cljs.user/x
cljs.user=> x
(2 3 4)
cljs.user=> (meta x)
nil

anmonteiro22:02:45

since it implements IWithMeta, shouldn't it also implement IMeta?

dnolen23:02:18

@anmonteiro: probably just an oversight, ticket + patch welcome