clojurescript

souenzzo 2025-02-25T17:36:06.919459Z

what does it mean when you tag a var as clj in cljs? [(defn input-unmount https://github.com/reagent-project/reagent/blob/master/src/reagent/impl/input.cljs#L134

thheller 2025-02-25T17:36:52.258689Z

inverse of externs inference. tells the compiler to not generate externs, allowing this to be renamed

thheller 2025-02-25T17:37:10.272519Z

probably there to make extern inference warnings shut up 😛

souenzzo 2025-02-25T17:37:54.485319Z

it means that cljsInputLive will be renamed to something else during compilation?

thheller 2025-02-25T17:38:21.424459Z

can be renamed yes, doesn't mean that it will, but probably yes

👍 1