patch for issue 10: use make-gui-namespace instead of make-base-namespace

This commit is contained in:
Danny Yoo 2011-09-11 15:03:56 -04:00
parent 1d63af5daf
commit 6f9cf51e60
2 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,7 @@
(require racket/contract
racket/runtime-path
racket/gui/base
syntax/modresolve)
@ -15,7 +16,7 @@
[lookup-module-requires (path? . -> . (listof path?))])
(define-runtime-path record.rkt "record.rkt")
(define ns (make-base-empty-namespace))
(define ns (make-gui-namespace))
;; query: module-path -> string?
;; Given a module, see if it's implemented via Javascript.

View File

@ -4,13 +4,14 @@
racket/runtime-path
syntax/modresolve
racket/path
"structs.rkt")
"structs.rkt"
racket/gui/base)
(provide/contract [query (module-path? . -> . (listof resource?))])
(define-runtime-path record.rkt "record.rkt")
(define ns (make-base-namespace))
(define ns (make-gui-namespace))
;; query: module-path -> (listof record)
;; Given a module, collect all of its resource records