Welcome! Please see the About page for a little more info on how this works.

0 votes
in Syntax and reader by

Reader conditionals let the reader emit code conditionally based upon a set of platform features.

This is a closed set - however, currently it is baked in as an implementation detail of the reader. Runtime code cannot access the current platform feature set.

This is problematic when writing a macro that needs to emit code conditionally based upon the platform of the code being compiled. Reader conditionals themselves won't work since macros are always themselves read in Clojure.

We should enable some mechanism for retrieving the current platform at runtime, or at least at macro expansion time.

For example, this is the kind of thing it should be possible to do:

`
(defmacro mymacro []

(if (*platforms* :clj)
  `(some-clojure-thing)
  `(some-cljs-thing)))

`

2 Answers

0 votes
by

Comment made by: slagyr

+1 - Would very much like to see this in 1.7. Currently I have to use an ugly hack.

(def ^:private ^:no-doc cljs? (boolean (find-ns 'cljs.analyzer)))

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-1750 (reported by lvanderhart)
...