Add additional require for identifiers in the residual program.
This commit is contained in:
parent
00a8a85f9d
commit
c15871a028
|
@ -1,6 +1,9 @@
|
|||
#lang racket/base
|
||||
|
||||
(require (for-syntax racket/base "typecheck/renamer.rkt")
|
||||
(require (for-syntax racket/base
|
||||
;; these requires are needed since their code
|
||||
;; appears in the residual program
|
||||
"typecheck/renamer.rkt" "types/type-table.rkt")
|
||||
"private/base-special-env.rkt")
|
||||
|
||||
(begin-for-syntax )
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
#lang racket/base
|
||||
|
||||
(require unstable/debug racket/contract "../utils/utils.rkt" syntax/id-table racket/dict racket/match
|
||||
(rep type-rep object-rep) (only-in (types abbrev utils) tc-results?) (utils tc-utils)
|
||||
(env init-envs) mzlib/pconvert)
|
||||
(require racket/contract syntax/id-table racket/dict racket/match mzlib/pconvert
|
||||
"../utils/utils.rkt"
|
||||
(rep type-rep object-rep)
|
||||
(only-in (types utils) tc-results?)
|
||||
(utils tc-utils)
|
||||
(env init-envs))
|
||||
|
||||
(define table (make-hasheq))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user