impc:aot:do-or-emit   macro


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/llvmti.xtm

Implementation

(define-macro (impc:aot:do-or-emit . forms)
  (if (not (output-port? *impc:aot:current-output-port*))
      `(begin ,@forms)
      `(impc:aot:insert-forms ,@forms)))


Back to Index