impc:ir:convert-from-pretty-types   scheme


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

Implementation

(define impc:ir:convert-from-pretty-types
  (lambda (t)
    ;;(print 't: t)
    (if (null? t) '()
        (if (atom? t)
            (impc:ir:get-type-from-pretty-str (sexpr->string t))
            (map (lambda (t)
                   (impc:ir:convert-from-pretty-types t))
                 t)))))


Back to Index