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
|
||||
SexpSource))
|
||||
|
||||
(define-struct: StatementsSource ([stmts : (Listof Statement)]))
|
||||
(define-struct: MainModuleSource ([source : Source]))
|
||||
(define-struct: ModuleSource ([path : Path]))
|
||||
(define-struct: SexpSource ([sexp : Any]))
|
||||
(define-struct: StatementsSource ([stmts : (Listof Statement)])
|
||||
#:transparent)
|
||||
(define-struct: MainModuleSource ([source : Source])
|
||||
#:transparent)
|
||||
(define-struct: ModuleSource ([path : Path])
|
||||
#:transparent)
|
||||
(define-struct: SexpSource ([sexp : Any])
|
||||
#:transparent)
|
||||
|
||||
|
||||
(define-struct: Configuration
|
||||
|
|
|
@ -4,6 +4,5 @@
|
|||
|
||||
|
||||
;; For some reason, this is breaking. Why?
|
||||
(make/dependencies
|
||||
(list (build-path "make.rkt"))
|
||||
debug-configuration)
|
||||
(make (list (make-ModuleSource (build-path "make.rkt")))
|
||||
debug-configuration)
|
Loading…
Reference in New Issue
Block a user