#lang typed/racket/base (require "compiler/expression-structs.rkt" "compiler/lexical-structs.rkt" "sets.rkt" racket/path) (require/typed "logger.rkt" [log-warning (String -> Void)]) (provide current-defined-name current-module-path current-root-path current-warn-unimplemented-kernel-primitive current-seen-unimplemented-kernel-primitives current-kernel-module-locator? current-compress-javascript?) (: current-module-path (Parameterof (U False Path))) (define current-module-path (make-parameter (build-path (current-directory) "anonymous-module.rkt"))) (: current-root-path (Parameterof Path)) (define current-root-path (make-parameter (normalize-path (current-directory)))) (: current-warn-unimplemented-kernel-primitive (Parameterof (Symbol -> Void))) (define current-warn-unimplemented-kernel-primitive (make-parameter (lambda: ([id : Symbol]) (log-warning (format "WARNING: Primitive Kernel Value ~s has not been implemented\n" id))))) (: current-kernel-module-locator? (Parameterof (ModuleLocator -> Boolean))) ;; Produces true if the given module locator should be treated as a root one. (define current-kernel-module-locator? (make-parameter (lambda: ([locator : ModuleLocator]) (or (and (eq? (ModuleLocator-name locator) '#%kernel) (eq? (ModuleLocator-real-path locator) '#%kernel)) (eq? (ModuleLocator-name locator) 'whalesong/lang/kernel.rkt))))) (: current-compress-javascript? (Parameterof Boolean)) (define current-compress-javascript? (make-parameter #f)) ;;; Do not touch the following parameters: they're used internally by package ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (: current-seen-unimplemented-kernel-primitives (Parameterof (Setof Symbol))) (define current-seen-unimplemented-kernel-primitives (make-parameter ((inst new-seteq Symbol)))) ;;; These parameters below will probably go away soon. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (: current-defined-name (Parameterof (U Symbol LamPositionalName))) (define current-defined-name (make-parameter 'unknown))