made sources transparent so I can do equality check on them.
This commit is contained in:
parent
3ae35df309
commit
6ad95cf504
|
@ -22,10 +22,14 @@
|
||||||
ModuleSource
|
ModuleSource
|
||||||
SexpSource))
|
SexpSource))
|
||||||
|
|
||||||
(define-struct: StatementsSource ([stmts : (Listof Statement)]))
|
(define-struct: StatementsSource ([stmts : (Listof Statement)])
|
||||||
(define-struct: MainModuleSource ([source : Source]))
|
#:transparent)
|
||||||
(define-struct: ModuleSource ([path : Path]))
|
(define-struct: MainModuleSource ([source : Source])
|
||||||
(define-struct: SexpSource ([sexp : Any]))
|
#:transparent)
|
||||||
|
(define-struct: ModuleSource ([path : Path])
|
||||||
|
#:transparent)
|
||||||
|
(define-struct: SexpSource ([sexp : Any])
|
||||||
|
#:transparent)
|
||||||
|
|
||||||
|
|
||||||
(define-struct: Configuration
|
(define-struct: Configuration
|
||||||
|
|
|
@ -4,6 +4,5 @@
|
||||||
|
|
||||||
|
|
||||||
;; For some reason, this is breaking. Why?
|
;; For some reason, this is breaking. Why?
|
||||||
(make/dependencies
|
(make (list (make-ModuleSource (build-path "make.rkt")))
|
||||||
(list (build-path "make.rkt"))
|
debug-configuration)
|
||||||
debug-configuration)
|
|
Loading…
Reference in New Issue
Block a user