going to institute a simple cache

This commit is contained in:
Danny Yoo 2011-09-03 21:40:50 -04:00
parent 8a7661df5c
commit 77fc448ed9
2 changed files with 14 additions and 0 deletions

7
js-assembler/cache.rkt Normal file
View File

@ -0,0 +1,7 @@
#lang racket/base
(define-struct cached-entry (real-path ;; path to a module.
whalesong-version ;; string
md5 ;; md5 of the original source in real-path
bytes)
#:transparent) ;; bytes

View File

@ -52,6 +52,13 @@
(void)))) (void))))
(define-struct cached-entry (real-path ;; path to a module.
whalesong-version ;; string
md5 ;; md5 of the original source in real-path
bytes)
#:transparent) ;; bytes
(define-struct js-impl (name ;; symbol (define-struct js-impl (name ;; symbol