You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pollen/main-imports.rkt

18 lines
578 B
Racket

#lang racket
;; These are separated from main.rkt as a performance improvement:
;; so they can be imported into the render.rkt namespace
;; and cached for the benefit of the render eval function.
(require racket/list
pollen/tools
pollen/main-helper
(only-in pollen/ptree ptree-source-decode path->ptree-name)
(only-in pollen/predicates ptree?))
(provide (all-from-out racket/list
pollen/tools
pollen/main-helper
pollen/ptree
pollen/predicates))