impc:compiler:print-needs-zone-delay-error   scheme


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

Implementation

(define impc:compiler:print-needs-zone-delay-error
  (lambda (expr-name)
    (print-with-colors *impc:compiler:pretty-print-error-color*
                       'default #t (print "Syntax Error"))
    (print " ")
    (print-with-colors *impc:compiler:pretty-print-name-color* 'default #t (print expr-name))
    (print " requires an ")
    (print-with-colors *impc:compiler:pretty-print-type-color* 'default #f (print "i64"))
    (print " delay as its second argument\n")
    (if (impc:aot:currently-compiling?)
        (quit 2)
        (throw ""))))


Back to Index