giving up with being able to define resources in expression position, and going back to define-resource
This commit is contained in:
parent
bc8369b25c
commit
3190ee2f60
|
@ -1,4 +1,10 @@
|
|||
#lang planet dyoo/whalesong
|
||||
|
||||
(require (planet dyoo/whalesong/resource))
|
||||
(file-resource "images/humpback.jpg")
|
||||
(define-resource whale-resource "images/humpback.jpg")
|
||||
|
||||
#;(define whale-image
|
||||
(image-url
|
||||
(resource->url whale-resource)))
|
||||
|
||||
#;whale-image
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
e
|
||||
null
|
||||
#%plain-module-begin
|
||||
(rename-out [my-module-begin #%module-begin])
|
||||
#%module-begin
|
||||
#%datum
|
||||
#%app
|
||||
#%top-interaction
|
||||
|
@ -98,6 +98,7 @@
|
|||
unless
|
||||
require
|
||||
for-syntax
|
||||
for-template
|
||||
define-for-syntax
|
||||
begin-for-syntax
|
||||
prefix-in
|
||||
|
@ -438,17 +439,4 @@ symbol->string
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
|
||||
(define-syntax (my-module-begin stx)
|
||||
(syntax-case stx ()
|
||||
[(_ body ...)
|
||||
(with-syntax ([(expanded-body ...)
|
||||
(local-expand #'(body ...)
|
||||
'module-begin
|
||||
#f)])
|
||||
(syntax/loc stx
|
||||
(#%module-begin expanded-body ...)))]))
|
|
@ -1,29 +1,26 @@
|
|||
#lang s-exp "../lang/kernel.rkt"
|
||||
|
||||
(provide file-resource)
|
||||
|
||||
;; Macros for recording the definition of resources in a program.
|
||||
(require (for-syntax racket/base
|
||||
racket/path
|
||||
syntax/parse))
|
||||
|
||||
(provide define-resource)
|
||||
|
||||
(require "structs.rkt")
|
||||
|
||||
;; Macros for recording the definition of resources in a program.
|
||||
(require (for-syntax racket/base))
|
||||
|
||||
|
||||
;; file-resource:
|
||||
;;
|
||||
(define-syntax (file-resource stx)
|
||||
(syntax-case stx ()
|
||||
[(_ path)
|
||||
(let ([dontcare
|
||||
(syntax-local-lift-expression #'(begin
|
||||
(begin-for-syntax
|
||||
(printf "Compile time code executing"))
|
||||
(void)))])
|
||||
(define-syntax (define-resource stx)
|
||||
(syntax-parse stx
|
||||
[(_ name:id path:str)
|
||||
(with-syntax ([normal-path
|
||||
(normalize-path (build-path
|
||||
(or (current-load-relative-directory)
|
||||
(current-directory))
|
||||
(syntax-e #'path)))])
|
||||
(syntax/loc stx
|
||||
(let-syntax ([compile-time-code
|
||||
(lambda (stx)
|
||||
(printf "compile time code executing\n")
|
||||
#'(void))])
|
||||
(begin
|
||||
;;dontcare
|
||||
(resource path)))))]))
|
||||
(begin (begin-for-syntax
|
||||
(printf "compile time code executing; we need to save ~s\n"
|
||||
normal-path))
|
||||
(define name (resource path)))))]))
|
||||
|
|
Loading…
Reference in New Issue
Block a user