Fork me on GitHub
#cljs-dev
<
2017-01-16
>
dnolen15:01:30

@jiyinyiyong that looks really interesting, cool to see more options in this space, re: weex

ambrosebs15:01:02

@dnolen the conversion of cljs to the tools.analyzer AST is going well. There are lots of changes, but a particularly invasive change is the way :const works. ClojureScript current analyzes quoted constants all the way down, but tools.analyzer puts quoted values directly in a :const node with no children. Can I implement that functionality?

ambrosebs15:01:36

It's mainly invasive for cljs.compiler

ambrosebs15:01:14

You'd need to add a bunch of cases to analyze-const, which I would factor out from existing analysis functions.

dnolen18:01:16

@ambrosebs sounds OK to me, I’m not aware of anything major that relies on the AST rep