patch for issue 10: use make-gui-namespace instead of make-base-namespace
This commit is contained in:
parent
1d63af5daf
commit
6f9cf51e60
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user